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
{{ message }}
This repository was archived by the owner on Aug 14, 2023. It is now read-only.
CREATEFUNCTIONf() RETURNS event_trigger LANGUAGE plpgsql AS $$ BEGIN END; $$;
CREATE EVENT TRIGGER et ON DDL_COMMAND_END
WHEN TAG IN ('CREATE EXTENSION')
EXECUTE PROCEDURE f();
Run:
docker run --rm -it --network repro_default supabase/pgadmin-schema-diff 'postgresql://postgres:postgres@db1/postgres''postgresql://postgres:postgres@db2/postgres'
Bug report
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
reprodb1:db2Expected behavior
The SQL runs successfully.