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
(select count(*) from information_schema.key_column_usage where table_schema = kcu.table_schema and table_name = tc.table_name and constraint_name = tc.constraint_name) = 1
149
149
) as is_unique
150
150
from information_schema.columns as c
151
-
where table_name = ? and table_schema = ?;
151
+
where table_name = ? and table_schema = ? and c.extra not like '%VIRTUAL%';
0 commit comments