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
Hi.
I found a bug when tables with the same name exist in different schemas.
Reproduction Example:
CREATE DATABASE db1;
CREATE DATABASE db2;
CREATE TABLE db1.users (
id int,
name varchar(255)
);
CREATE TABLE db2.users (
id int,
name varchar(255)
);
INSERT INTO db1.users VALUES (1, "db1user");
INSERT INTO db2.users VALUES (1, "db2user");
ALTER TABLE db1.users ADD INDEX idx_name_db1 (name);
ALTER TABLE db2.users ADD INDEX idx_name_db2 (name);
When connected to db1, selecting 'List', 'Columns', or 'Indexes' for db2.users shows the result for db1.users instead.
The text was updated successfully, but these errors were encountered:
Hi.
I found a bug when tables with the same name exist in different schemas.
Reproduction Example:
When connected to
db1
, selecting 'List', 'Columns', or 'Indexes' fordb2.users
shows the result for db1.users instead.The text was updated successfully, but these errors were encountered: