Skip to content

Commit 64101cd

Browse files
author
Vladlen Popolitov
committed
Compiler warning fixed
1 parent d91436a commit 64101cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

anyarray_rum.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ rumanyarray_consistent(PG_FUNCTION_ARGS)
269269
case RUM_CONTAINED_STRATEGY:
270270
/* we will not need recheck, use addInfo to decide if tuple contains all elements from query */
271271
{
272-
*recheck = false;
273-
res = true;
274272
int32 intersection = 0,
275273
nentries = 0;
274+
*recheck = false;
275+
res = true;
276276

277277
for (i = 0; i < nkeys; i++)
278278
{

0 commit comments

Comments
 (0)