You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a user named abc who has all accessess to 2 databases ab_c and ab_d.
ab_c has a table named one.
trying to create a table with same name one in ab_d.
Problem
I am unable to create a table named one in the db ab_d.
Possible Issue
Debugging through the codebase it seems like _allTableNames list attribute (set for the first time using allTableNames()) in VendorDialect is set to all the names in the storage and not limited to all the tables in the connected database, leading to the aforementioned problem.
The text was updated successfully, but these errors were encountered:
Setup
abc
who has all accessess to 2 databasesab_c
andab_d
.ab_c
has a table namedone
.one
inab_d
.Problem
I am unable to create a table named
one
in the dbab_d
.Possible Issue
Debugging through the codebase it seems like
_allTableNames
list attribute (set for the first time usingallTableNames()
) in VendorDialect is set to all the names in the storage and not limited to all the tables in the connected database, leading to the aforementioned problem.The text was updated successfully, but these errors were encountered: