Skip to content

Commit

Permalink
Fix #4. Start the extension iff the GUC variable is not false
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kovmir committed Jan 26, 2023
1 parent 7d50d63 commit 9efaf38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pg_show_plans.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ pgsp_shmem_startup(void)
SpinLockInit(&pgsp->elock);

/* Set the initial value for is_enable. */
pgsp->is_enable = true;
pgsp->is_enable = pgsp_enable;
pgsp->plan_format = plan_format;
}

Expand Down

0 comments on commit 9efaf38

Please sign in to comment.