- Notifications
You must be signed in to change notification settings - Fork41
Fix build due to changes in PostgreSQL 16#64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
See the commit 3057465acfbea2f3dd7a914a1478064022c6eecd (Replace the sortedarray of GUC variables with a hash table.) in PostgreSQL 16.
See the commit 0fe954c28584169938e5c0738cfaa9930ce77577 (Add-Wshadow=compatible-local to the standard compilation flags) in PostgreSQL 16.pg_wait_sampling.c: In function ‘pg_wait_sampling_get_current’:pg_wait_sampling.c:454:42: warning: declaration of ‘params’ shadows a previouslocal [-Wshadow=compatible-local] 454 | WaitCurrentContext *params; | ^~~~~~pg_wait_sampling.c:446:34: note: shadowed declaration is here 446 | WaitCurrentContext *params; | ^~~~~~
AssertArg and AssertState were removed in PostgreSQL by commit #b1099eca8f.
rzharkov left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Everything looks well.
While I'm at it I have replace AssertState with Assert.
Please take a look on my commit.
MarinaPolyakova commentedNov 23, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
I checked that:
Thank you! |
See the commit 3057465acfbea2f3dd7a914a1478064022c6eecd (Replace the sorted
array of GUC variables with a hash table.) in PostgreSQL 16.
See the commit 0fe954c28584169938e5c0738cfaa9930ce77577 (Add
-Wshadow=compatible-local to the standard compilation flags) in PostgreSQL 16.