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

Postgres support (schemas) #65

Open
16 of 26 tasks
Tracked by #40
nene opened this issue Jan 29, 2024 · 0 comments
Open
16 of 26 tasks
Tracked by #40

Postgres support (schemas) #65

nene opened this issue Jan 29, 2024 · 0 comments

Comments

@nene
Copy link
Owner

nene commented Jan 29, 2024

  • CREATE SCHEMA
    • IF NOT EXISTS
    • optional schema_name
    • AUTHORIZATION role_specification:
      • user_name
      • CURRENT_ROLE | CURRENT_USER | SESSION_USER
    • schema elements:
      • CREATE TABLE
      • CREATE VIEW
      • CREATE INDEX
      • CREATE SEQUENCE
      • CREATE TRIGGER
      • GRANT
  • DROP SCHEMA
    • IF EXISTS
    • multiple names
    • CASCADE | RESTRICT
  • ALTER SCHEMA
    • RENAME TO new_name
    • OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
  • IMPORT FOREIGN SCHEMA
    • remote_schema
    • { LIMIT TO | EXCEPT } ( table_name [, ...] )
    • FROM SERVER server_name
    • INTO local_schema
    • OPTIONS ( option 'value' [, ... ] )
@nene nene mentioned this issue Jan 29, 2024
16 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant