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
psqldef with flag --export raise error: found syntax error when parsing DDL "CREATE UNIQUE INDEX airline_confirmation_code_unique_idx ON public.airline_confirmation USING btree (airline_id, booking_id, lower((code)::text)) WHERE ((code IS NOT NULL) AND (airline_id IS NOT NULL))": syntax error at position 133
The text was updated successfully, but these errors were encountered:
When you report an issue, can you provide a working schema to reproduce it? Running the SQL fails on psql as well (ERROR: relation "public.airline_confirmation" does not exist).
CREATETABLEpublic.airline_confirmation (
airline_id bigint,
code character varying(512),
booking_id bigintNOT NULL
);
CREATEUNIQUE INDEXairline_confirmation_code_unique_idxONpublic.airline_confirmation
USING btree (airline_id, booking_id, lower((code)::text))
WHERE ((code IS NOT NULL) AND (airline_id IS NOT NULL));
psqldef
with flag--export
raise error:found syntax error when parsing DDL "CREATE UNIQUE INDEX airline_confirmation_code_unique_idx ON public.airline_confirmation USING btree (airline_id, booking_id, lower((code)::text)) WHERE ((code IS NOT NULL) AND (airline_id IS NOT NULL))": syntax error at position 133
The text was updated successfully, but these errors were encountered: