Skip to content

Commit 1aa7e48

Browse files
committed
pathman: exclude debug variables
1 parent e55bb3d commit 1aa7e48

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

contrib/pg_pathman/pg_pathman.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,10 @@ handle_binary_opexpr(const PartRelationInfo *prel, WrapperNode *result,
646646
RangeEntry *re;
647647
bool found = false,
648648
lossy = false;
649-
int counter = 0,
650-
startidx = 0,
649+
#ifdef USE_ASSERT_CHECKING
650+
int counter = 0;
651+
#endif
652+
int startidx = 0,
651653
cmp_min,
652654
cmp_max,
653655
endidx = rangerel->ranges.length - 1;

0 commit comments

Comments
 (0)