-
Notifications
You must be signed in to change notification settings - Fork 5
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
sequence
info is missing in schema returned from get_schema
#122
Comments
DifferentialOrange
added a commit
that referenced
this issue
Mar 20, 2024
DifferentialOrange
added a commit
that referenced
this issue
Mar 21, 2024
This patch adds the support of sequences through new schema section, as well as proper support of sequence option for indexes. Before this patch, ddl had half-baked support of sequences: one could provide `sequence` as sequence name in indexes and it would be created. This approach was broken in basic `set_schema(get_schema)` scenario since there wasn't any sequences support in get. Current design is inspired by existing "not implemented yet" tests and documentation examples. Closes #122
Merged
DifferentialOrange
added a commit
that referenced
this issue
Mar 21, 2024
This patch adds the support of sequences through new schema section, as well as proper support of sequence option for indexes. Before this patch, ddl had half-baked support of sequences: one could provide `sequence` as sequence name in indexes and it would be created. This approach was broken in basic `set_schema(get_schema)` scenario since there wasn't any sequences support in get. Current design is inspired by existing "not implemented yet" tests and documentation examples. Closes #122
DifferentialOrange
added a commit
that referenced
this issue
Mar 28, 2024
This patch adds the support of sequences through new schema section, as well as proper support of sequence option for indexes. Before this patch, ddl had half-baked support of sequences: one could provide `sequence` as sequence name in indexes and it would be created. This approach was broken in basic `set_schema(get_schema)` scenario since there wasn't any sequences support in get. Current design is inspired by existing "not implemented yet" tests and documentation examples. Closes #122
DifferentialOrange
added a commit
that referenced
this issue
Mar 28, 2024
This patch adds the support of sequences through new schema section, as well as proper support of sequence option for indexes. Before this patch, ddl had half-baked support of sequences: one could provide `sequence` as sequence name in indexes and it would be created. This approach was broken in basic `set_schema(get_schema)` scenario since there wasn't any sequences support in get. Current design is inspired by existing "not implemented yet" tests and documentation examples. Closes #122
DifferentialOrange
added a commit
that referenced
this issue
Apr 10, 2024
This patch adds the support of sequences through new schema section, as well as proper support of sequence option for indexes. Before this patch, ddl had half-baked support of sequences: one could provide `sequence` as sequence name in indexes and it would be created. This approach was broken in basic `set_schema(get_schema)` scenario since there wasn't any sequences support in get. Current design is inspired by existing "not implemented yet" tests and documentation examples. Closes #122
DifferentialOrange
added a commit
that referenced
this issue
Apr 10, 2024
Overview This release introduces sequences support in schema and space indexes. New features - Added support of sequences in schema and space indexes (#122).
Merged
DifferentialOrange
added a commit
that referenced
this issue
Apr 10, 2024
Overview This release introduces sequences support in schema and space indexes. New features - Added support of sequences in schema and space indexes (#122).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to reproduce:
Actual index info:
DDL schema:
Sequence is missing. So, after applying cluster-wide schema from
ddl.get-schema
index sequence configuration is lost.The text was updated successfully, but these errors were encountered: