-
Notifications
You must be signed in to change notification settings - Fork 468
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
sql: add ALTER TABLE/INDEX .. UNSPLIT AT .. #4895
Comments
@nvanbenschoten or @ajwerner (you were both reviewers on cockroachdb/cockroach#37603, and I assume @jeffrey-xiao is back in school) Question: e.g. (Using the > SHOW RANGES FROM TABLE users;
Then I split the > ALTER TABLE users SPLIT AT VALUES ('chicago'), ('new york'), ('seattle');
> SHOW RANGES FROM TABLE users;
Now I unsplit the table: > ALTER TABLE users UNSPLIT AT VALUES ('chicago'), ('new york'), ('seattle');
> SHOW RANGES FROM TABLE users;
This output is identical to the output after the This is expected output:
I think I am missing something here... |
Instead of running |
After #2957 is completed, we can reference that doc from here. |
@nvanbenschoten Thanks! A couple more questions that you might have an opinion on, if not an explicit answer to:
|
It's also included in
Split enforcement sounds good to me.
I wouldn't. That sounds mostly like an implementation detail to me. Split enforcement should be enough terminology. |
Awesome. Thank you! |
PR: cockroachdb/cockroach#37603
From release notes:
The text was updated successfully, but these errors were encountered: