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
We should prevent creating a view and table of the same name like MySQL:
MySQL > create table t (i int);
Query OK, 0 rows affected (0.0283 sec)
MySQL > create view t as (select * from t);
ERROR: 1050: Table 't' already exists
The text was updated successfully, but these errors were encountered:
We should prevent creating a view and table of the same name like MySQL:
The text was updated successfully, but these errors were encountered: