We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
To Reproduce
psql -h localhost -p 4566
mike=> create database test;
mike=> \c test test=>
test=> drop database test; DROP_DATABASE test=> drop database test; ERROR: Catalog error: database not found: test
test=> \c mike psql (14.2, server 0.0.0) You are now connected to database "mike" as user "mike". mike=> create table t ();
mike=>\c test psql (14.2, server 0.0.0) You are now connected to database "test" as user "mike". test=>
t
mike
test
test=> show tables; Name ------ t (1 row)
Expected behavior
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Is below code the reason of it? Because we all use mock connection now so the operations are all in the same database. https://github.com/singularity-data/risingwave/blob/fb519e5d47c4a6481cd91f49454dd403847104dd/src/utils/pgwire/src/pg_protocol.rs#L114-L126
Sorry, something went wrong.
Is below code the reason of it? Because we all use mock connection now so the operations are all in the same database.
https://github.com/singularity-data/risingwave/blob/fb519e5d47c4a6481cd91f49454dd403847104dd/src/utils/pgwire/src/pg_protocol.rs#L114-L126
oh, make sense. This explains everything :)
No branches or pull requests
Describe the bug
To Reproduce
t
is created in databasemike
, but it is visible in databasetest
)Expected behavior
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: