sql: add a helper parser function for sequence options stored in a descriptor #83208
Labels
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
T-sql-foundations
SQL Foundations Team (formerly SQL Schema + SQL Sessions)
Currently, the sequence options passed to a
GENERATED AS IDENTITY
are saved as a string in the descriptor, which makes it hard to extract the specific sequence info such asSTART
,INCREMENT
of this identity column, and hard to solve issues such as #82064. It shouldbe saved as a dedicated type such ashave an easy-to-use function for parsing these options.TableDescriptor_SequenceOpts
but forColumnDescriptor
Jira issue: CRDB-16921
The text was updated successfully, but these errors were encountered: