bug fix: table creation with schema (if any is provided)

This commit is contained in:
Steve Nyemba 2023-07-09 21:22:31 -05:00
parent 8f94ea260b
commit 05d990d713
1 changed files with 4 additions and 1 deletions

View File

@ -307,7 +307,10 @@ class SQLWriter(SQLRW,Writer):
if 'schema' in _args :
if type(_args['schema']) == str :
self.schema = _args['schema'] if 'schema' in _args else self.schema
elif type(_args['schema']) == list and not self.has(table=table):
elif type(_args['schema']) == list and len(_args['schema']) > 0 and not self.has(table=table):
#
# There is a messed up case when an empty array is passed (no table should be created)
#
self.make(table=table,schema=_args['schema'])
pass
# self.schema = _args['schema'] if 'schema' in _args else self.schema