-
Notifications
You must be signed in to change notification settings - Fork 76
Closed
Labels
enhancementNew feature or requestNew feature or requestgoPull requests that update Go codePull requests that update Go codespqr-console
Description
Problem: Non-obvious syntax and need to calculate boundaries manually.
-- Current (unclear that new_id is the NEW range):
SPLIT KEY RANGE key_range3 FROM key_range1 BY 1073741824;
-- Proposed — explicit parameter names:
SPLIT key_range1
INTO key_range1_left, key_range1_right
AT 1073741824;
-- Or with automatic midpoint calculation:
SPLIT key_range1 IN HALF;
SPLIT key_range1 INTO 4 PARTS;Related to: #1887
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgoPull requests that update Go codePull requests that update Go codespqr-console