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 6eb2396 commit e76dfbfCopy full SHA for e76dfbf
jsonb_gin_ops.c
@@ -173,7 +173,6 @@ get_bloom_value(uint32 hash)
173
static uint32
174
get_path_bloom(PathHashStack *stack)
175
{
176
- int i = 0;
177
uint32 res = 0, val;
178
179
while (stack)
@@ -183,7 +182,6 @@ get_path_bloom(PathHashStack *stack)
183
182
val = get_bloom_value(hash);
184
185
res |= val;
186
- i++;
187
stack = stack->parent;
188
}
189
return res;
jsquery_gram.y
@@ -254,7 +254,10 @@ makeItemList(List *list) {
254
%%
255
256
result:
257
- expr { *result = $1; }
+ expr {
258
+ *result = $1;
259
+ (void) yynerrs; /* suppress compiler warning */
260
+ }
261
| /* EMPTY */ { *result = NULL; }
262
;
263
0 commit comments