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 b54ae10 commit 7f10b01Copy full SHA for 7f10b01
1 file changed
plugins/generic/search.py
@@ -464,12 +464,17 @@ def searchColumn(self):
464
if db not in foundCols[column]:
465
foundCols[column][db] = []
466
467
+ origDb = conf.db
468
+ origTbl = conf.tbl
469
+
470
for column, dbData in foundCols.items():
471
colQuery = "%s%s" % (colCond, colCondParam)
472
colQuery = colQuery % column
473
474
for db in dbData:
475
db = safeSQLIdentificatorNaming(db)
476
+ conf.db = origDb
477
+ conf.tbl = origTbl
478
479
infoMsg = "fetching number of tables containing column"
480
if colConsider == "1":
0 commit comments