What will be equivalent of following query in EDB Postgres / Open source Postgres?
ALTER SESSION SET CONSTRAINTS = DEFERRED
What will be equivalent of following query in EDB Postgres / Open source Postgres?
ALTER SESSION SET CONSTRAINTS = DEFERRED
I think you need:
set constraints all deferred;
Source: https://www.postgresql.org/docs/current/sql-set-constraints.html