-
Notifications
You must be signed in to change notification settings - Fork 669
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
DDL Support #4812
Labels
Comments
65 tasks
1 task
There also appears to be an issue with table ownership on distributed tables. (readonly and readwrite already exist)
Then when logging in as user a and executing:
I am able to successfully
as user a but when i attempt to login with user b I get the following error on the coordinator:
and on the worker i see
This only happens for distributed tables. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following DDL/utility commands are currently not propagated to worker nodes by Citus:
Database-level statements:
GRANT/REVOKE ... (COLUMN) ON TABLE TO ROLE
#7287Schema-level statements:
ALTER SCHEMA .. OWNER TO ..
Table-level statements:
Session-level statements:
System-level statements (may be outside of Citus scope):
Adds create / drop database propagation support #7240
Adds alter database set option #7181
Adds alter database propagation - with and refresh collation #7172
Adds additional alter database propagation support #7253
Statements that are typically only used by extensions (which are already propagated):
Statements work as intended, but could have a distributed implementation:
The text was updated successfully, but these errors were encountered: