You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CockroachDB] Fixing how it handle fields DEFAULT values and column types (#143)
* 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.
* - considering column aliases for type checking in AlterColumn method
* Merging cockroachdb + postgreSQL regex together. It work in all these cases:
`'field'::character varying`
`'field':::character varying`
`field::character varying`
`field:::character varying`
0 commit comments