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 7fb9392 commit 8bbdff4Copy full SHA for 8bbdff4
python/plugins/db_manager/db_plugins/vlayers/connector.py
@@ -413,15 +413,14 @@ def getSqlDictionary(self):
413
from .sql_dictionary import getSqlDictionary
414
sql_dict = getSqlDictionary()
415
416
- if True:
417
- items = []
418
- for tbl in self.getTables():
419
- items.append(tbl[1]) # table name
+ items = []
+ for tbl in self.getTables():
+ items.append(tbl[1]) # table name
420
421
for fld in self.getTableFields((None, tbl[1])):
422
items.append(fld[1]) # field name
423
424
- sql_dict["identifier"] = items
+ sql_dict["identifier"] = items
425
return sql_dict
426
427
def getQueryBuilderDictionary(self):
0 commit comments