fix: set db name in filter (#25732)
This commit is contained in:
parent
bb26d8f678
commit
a6732a0e12
1 changed files with 1 additions and 0 deletions
|
|
@ -358,6 +358,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database):
|
|||
.where(
|
||||
(information_schema.columns.table_name == table)
|
||||
& (information_schema.columns.column_name == column)
|
||||
& (information_schema.columns.table_schema == self.cur_db_name)
|
||||
)
|
||||
.run(pluck=True)[0]
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue