1

As per official Postgres documents default value of constraint_exclusion is "partition". How can I ensure this? Is there any way to check current value from PgAdmin?

Yash Mochi
  • 769
  • 6
  • 15

1 Answers1

2

SHOW will display the current setting of run-time parameters.

Show constraint_exclusion;
Yash Mochi
  • 769
  • 6
  • 15