0

What will be equivalent of following query in EDB Postgres / Open source Postgres?

ALTER SESSION SET CONSTRAINTS = DEFERRED 
Adrian Mole
  • 49,934
  • 160
  • 51
  • 83
MD NASEEM
  • 1
  • 2

1 Answers1

0

I think you need:

set constraints all deferred;

Source: https://www.postgresql.org/docs/current/sql-set-constraints.html

user_0
  • 3,173
  • 20
  • 33