Skip to content
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

[CockroachDB] Fixing how it handle fields DEFAULT values and column types #143

Merged
merged 3 commits into from Jan 1, 2023

Commits on Dec 27, 2022

  1. CockroachDB default types

    In cockroachdb, the default values returns something like `field:::TIMESTAMPZ`, and the validation here is only by the default value, without its type, this regex is required.
    rwrz committed Dec 27, 2022
    Copy the full SHA
    df62f7c View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    6e0fcdf View commit details
    Browse the repository at this point in the history
  3. Merging cockroachdb + postgreSQL regex together. It work in all these…

    … cases:
    
    `'field'::character varying`
    `'field':::character varying`
    `field::character varying`
    `field:::character varying`
    rwrz committed Dec 27, 2022
    Copy the full SHA
    68156b5 View commit details
    Browse the repository at this point in the history