We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c36727d commit 4f4d63aCopy full SHA for 4f4d63a
python/plugins/db_manager/db_plugins/connector.py
@@ -211,7 +211,9 @@ def quoteString(self, txt):
211
def getSchemaTableName(self, table):
212
if not hasattr(table, '__iter__'):
213
return (None, table)
214
- elif len(table) < 2:
+ if isinstance(table, str):
215
+ table = table.split('.')
216
+ if len(table) < 2:
217
return (None, table[0])
218
else:
219
return (table[0], table[1])
0 commit comments