From 5f1592b973383db1aa07add55b6a23356f1555c7 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Sun, 9 Jul 2023 17:36:41 -0500 Subject: [PATCH] bug fix --- transport/sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/sql.py b/transport/sql.py index b387bcf..bf34c76 100644 --- a/transport/sql.py +++ b/transport/sql.py @@ -306,7 +306,7 @@ class SQLWriter(SQLRW,Writer): if type(_args['schema']) == str : self.schema = _args['schema'] if 'schema' in _args else self.schema elif type(_args['schema']) == list: - self.make(schema=_args['schema']) + self.make(table=table,schema=_args['schema']) pass # self.schema = _args['schema'] if 'schema' in _args else self.schema table = self._tablename(table)