This commit is contained in:
Steve Nyemba 2023-07-09 17:36:41 -05:00
parent 1329ffae16
commit 5f1592b973
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ class SQLWriter(SQLRW,Writer):
if type(_args['schema']) == str : if type(_args['schema']) == str :
self.schema = _args['schema'] if 'schema' in _args else self.schema self.schema = _args['schema'] if 'schema' in _args else self.schema
elif type(_args['schema']) == list: elif type(_args['schema']) == list:
self.make(schema=_args['schema']) self.make(table=table,schema=_args['schema'])
pass pass
# self.schema = _args['schema'] if 'schema' in _args else self.schema # self.schema = _args['schema'] if 'schema' in _args else self.schema
table = self._tablename(table) table = self._tablename(table)