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
CREATE TABLE public.table1 (
"UpperI" integer NOT NULL,
c character(1),
PRIMARY KEY((UpperI) HASH)
);
table fails to create - any copy command then spews a load of errors ( if nulls then \N is sighted as the problem ) but this is due to table create failure.
The text was updated successfully, but these errors were encountered:
CREATE TABLE table1 ( "UpperI" int, c char, PRIMARY KEY ("UpperI"));
table def in ysql_dump output:
--
-- Name: table1; Type: TABLE; Schema: public; Owner: yugabyte
CREATE TABLE public.table1 (
"UpperI" integer NOT NULL,
c character(1),
PRIMARY KEY((UpperI) HASH)
);
table fails to create - any copy command then spews a load of errors ( if nulls then \N is sighted as the problem ) but this is due to table create failure.
The text was updated successfully, but these errors were encountered: