Skip to content
New issue

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

support database-level isolation #2742

Closed
fuyufjh opened this issue May 23, 2022 · 1 comment
Closed

support database-level isolation #2742

fuyufjh opened this issue May 23, 2022 · 1 comment
Assignees
Labels
help wanted Issues that need help from contributors type/enhancement Improvements to existing implementation.

Comments

@fuyufjh
Copy link
Member

fuyufjh commented May 23, 2022

Is your feature request related to a problem? Please describe.

Currently, tables in databases are not isolated.

$ psql -h localhost -p 4566 db1
psql (14.2, server 9.5.0)
Type "help" for help.

db1=> show tables;
   Name
----------
 region
 nation
 part
 orders
 lineitem
 customer
 supplier
 partsupp
(8 rows)


$ psql -h localhost -p 4566 db2
psql (14.2, server 9.5.0)
Type "help" for help.

db2=> show tables;
   Name
----------
 region
 nation
 part
 orders
 lineitem
 customer
 supplier
 partsupp
(8 rows)

Describe the solution you'd like

Every database should act like an isolated instance - objects like tables and indexes should be isolated between databases.

Also, please check Postgres for detailed behaviors.

Describe alternatives you've considered

Additional context

@fuyufjh fuyufjh added type/enhancement Improvements to existing implementation. help wanted Issues that need help from contributors labels May 23, 2022
@hzxa21
Copy link
Collaborator

hzxa21 commented May 23, 2022

Related issue #2529

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Issues that need help from contributors type/enhancement Improvements to existing implementation.
Projects
None yet
Development

No branches or pull requests

3 participants