Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27033f commit bd0ab28Copy full SHA for bd0ab28
src/backend/commands/policy.c
@@ -1081,7 +1081,7 @@ AlterPolicy(AlterPolicyStmt *stmt)
1081
if (!attr_isnull)
1082
{
1083
char *qual_value;
1084
- ParseState *qual_pstate = make_parsestate(NULL);
+ ParseState *qual_pstate;
1085
1086
/* parsestate is built just to build the range table */
1087
qual_pstate = make_parsestate(NULL);
@@ -1122,7 +1122,7 @@ AlterPolicy(AlterPolicyStmt *stmt)
1122
1123
1124
char *with_check_value;
1125
- ParseState *with_check_pstate = make_parsestate(NULL);
+ ParseState *with_check_pstate;
1126
1127
1128
with_check_pstate = make_parsestate(NULL);
0 commit comments