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
the "sementics"
undrop the dropped table ... : -), e.g.
create database test;
create table test.tbl (a int);
drop database test;
select * from test.tbl; -- expects error 1003, `UnknownDatabase`
undrop database test;
select * from test.tbl; -- back to normal
Summary
As schema api already supports
undrop_database
operationhttps://github.com/datafuselabs/databend/blob/main/common/meta/api/src/schema_api_impl.rs#L268
undrop database
statement can be implemented now.UNDROP DATABASE <name>
undrop the dropped table ... : -), e.g.
reference:
show databases history
statementsqlparser-rs
) only is OKThe text was updated successfully, but these errors were encountered: