feat(arrays): native primitive + enum array columns via prop.ARRAY_OF - #90
Merged
Merged
Conversation
teach sql-schema-generator to accept prop.ARRAY_OF(<primitive>) and prop.ARRAY_OF(prop.ENUM([...])) and emit a native postgres array column (varchar[]/numeric[]/boolean[]/timestamptz[]/<enum>[]) on the base and version tables, instead of throwing. reference and uuid arrays keep their join-table behavior unchanged (element-level FK integrity), so the change is additive. - ARRAY_OF accepts primitive + enum element props (was: REFERENCES/UUID only) - primitive/enum arrays -> native array column on base/version table - enum arrays -> varchar[] + element-membership CHECK (col <@ ARRAY[...]) - upsert writes the array in one native arg; view selects it straight through - change-detection compares by value (IS NOT DISTINCT FROM), null-safe, so an unchanged array does not spuriously bump the version - fail-fast at declare time for nested arrays, serial elements, and scalar/custom checks on array columns verification adds a full acceptance round-trip: the CLI generate output is applied to a real postgres and round-tripped through the generated upsert + hydrated view, plus a repo brief that requires acceptance tests to fully round-trip (produce -> apply -> exercise -> read-back -> assert+snapshot). Co-authored-by: ulad kasach <uladkasach@gmail.com>
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(arrays): native primitive + enum array columns via prop.ARRAY_OF
teach sql-schema-generator to accept prop.ARRAY_OF() and
prop.ARRAY_OF(prop.ENUM([...])) and emit a native postgres array column
(varchar[]/numeric[]/boolean[]/timestamptz[]/[]) on the base and version
tables, instead of throwing. reference and uuid arrays keep their join-table
behavior unchanged (element-level FK integrity), so the change is additive.
unchanged array does not spuriously bump the version
scalar/custom checks on array columns
verification adds a full acceptance round-trip: the CLI generate output is
applied to a real postgres and round-tripped through the generated upsert +
hydrated view, plus a repo brief that requires acceptance tests to fully
round-trip (produce -> apply -> exercise -> read-back -> assert+snapshot).
🐢🌊 surfed in by seaturtle[bot]