We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5acd35e + b9f8176 commit 46da379Copy full SHA for 46da379
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