Create schema fails on client
I am getting an unclear error when creating a remote schema...
from a client:
install quack from core_nightly;
load quack;
attach 'quack:localhost' as remote (token 'asdf');
create schema if not exists remote.transform;
Returns: Catalog "remote" does not exist!. I think this should either explicitly fail or create the schema.
Drop schema fails on client
- From an already running server... Running
create schema drop_me; successfully creates a schema. 👍
- Running
show schemas on a new client shows remote | drop_me as a valid schema. 👍
- From the client, running
drop schema remote.drop_me fails with:
Not implemented Error:
DropSchema not implemented yet
It would be nice to have this implemented
Show schemas has old information
Back to the server from above... I can run drop schema drop_me from the server and it successfully deletes the schema. 👍
But running show schemas; on the same client still shows that as a valid catalog schema. 👎
Incidentally, the same happens with tables. I would expect the client to have a regular remote catalog refresh.
Create schema fails on client
I am getting an unclear error when creating a remote schema...
from a client:
Returns:
Catalog "remote" does not exist!. I think this should either explicitly fail or create the schema.Drop schema fails on client
create schema drop_me;successfully creates a schema. 👍show schemason a new client showsremote | drop_meas a valid schema. 👍drop schema remote.drop_mefails with:It would be nice to have this implemented
Show schemas has old information
Back to the server from above... I can run
drop schema drop_mefrom the server and it successfully deletes the schema. 👍But running
show schemas;on the same client still shows that as a valid catalog schema. 👎Incidentally, the same happens with tables. I would expect the client to have a regular remote catalog refresh.