Commit 3a8b69b
committed
[yugabyte#24954] YSQL: Fix duplicate GUC flag mask values
Summary:
The recent pg15 merge into master introduced two new flags within guc.h:
`GUC_EXPLAIN 0x100000`
`GUC_RUNTIME_COMPUTED 0x200000`
Prior to this merge, to help facilitate stickiness for custom string variables in Connection Manager, we had introduced a new flag:
`GUC_YB_CUSTOM_STICKY 0x100000`
Some GUC variables marked as GUC_EXPLAIN would be mistaken as "sticky" GUC variables due to having the same flag mask, this patch changes the two masks to be unique again:
`GUC_YB_CUSTOM_STICKY 0x400000`
Jira: DB-14091
Test Plan: Jenkins: enable connection manager, all tests
Reviewers: skumar, stiwary, mkumar, devansh.saxena, vpatibandla
Reviewed By: devansh.saxena
Subscribers: yql
Differential Revision: https://phorge.dev.yugabyte.com/D400511 parent 47844a1 commit 3a8b69b
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
245 | 245 | | |
246 | 246 | | |
247 | 247 | | |
248 | | - | |
| 248 | + | |
249 | 249 | | |
250 | 250 | | |
251 | 251 | | |
| |||
0 commit comments