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
We currently do not support schema'd type names with typmods, e.g. public.geometry(linestring, 4326) in CREATE TABLE t(g public.geometry(linestring, 4326)). Users seeing this in v20.2 from IMPORT PGDUMP must remove the public. to get this to work (i.e. use geometry(linestring,4326) instead). Note public.geometry works today.
This is because complex_type_name does not take any optional attrs.
We should document the above limitation, and the workaround mentioned.
Not clear whether this only affects users of spatial features, or is just more likely to affect them due to the output of various spatial file tools (?). TBD.
The text was updated successfully, but these errors were encountered:
As noted by @otan in cockroachdb/cockroach#56492:
We should document the above limitation, and the workaround mentioned.
Not clear whether this only affects users of spatial features, or is just more likely to affect them due to the output of various spatial file tools (?). TBD.
The text was updated successfully, but these errors were encountered: