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 4473efe commit b9f8176Copy full SHA for b9f8176
python/plugins/db_manager/db_plugins/spatialite/connector.py
@@ -181,7 +181,7 @@ def getTables(self, schema=None):
181
self._execute(c, sql)
182
183
for tbl in c.fetchall():
184
- if tablenames.count( tbl[0] ) <= 0:
+ if tablenames.count( tbl[0] ) <= 0 and not (tbl[0].startswith('idx_') and tbl[0] in sys_tables):
185
item = list(tbl)
186
item.insert(0, Table.TableType)
187
items.append( item )
0 commit comments