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 45177cf commit b54ae10Copy full SHA for b54ae10
1 file changed
plugins/generic/search.py
@@ -326,13 +326,17 @@ def searchColumn(self):
326
infoMsgTbl = ""
327
infoMsgDb = ""
328
colList = conf.col.split(",")
329
+ origTbl = conf.tbl
330
+ origDb = conf.db
331
colCond = rootQuery.inband.condition
332
dbCond = rootQuery.inband.condition2
333
tblCond = rootQuery.inband.condition3
334
colConsider, colCondParam = self.likeOrExact("column")
335
336
for column in colList:
337
column = safeSQLIdentificatorNaming(column)
338
+ conf.db = origDb
339
+ conf.tbl = origTbl
340
341
if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.DB2):
342
column = column.upper()
0 commit comments