Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3a4eb commit be213bcCopy full SHA for be213bc
1 file changed
plugins/generic/search.py
@@ -261,7 +261,7 @@ def searchTable(self):
261
if tblConsider == "2":
262
continue
263
else:
264
- for db in conf.db.split(","):
+ for db in conf.db.split(",") if conf.db else (self.getCurrentDb(),):
265
db = safeSQLIdentificatorNaming(db)
266
if db not in foundTbls:
267
foundTbls[db] = []
@@ -501,7 +501,7 @@ def searchColumn(self):
501
if db not in foundCols[column]:
502
foundCols[column][db] = []
503
504
505
506
507
0 commit comments