Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 58cc017

Browse files
committed
Replace INT32_MAX with PG_INT32_MAX
1 parent 9e2652b commit 58cc017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_pathman/src/planner_tree_modification.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ static int32 planner_calls = 0;
665665
void
666666
incr_planner_calls_count(void)
667667
{
668-
Assert(planner_calls < INT32_MAX);
668+
Assert(planner_calls < PG_INT32_MAX);
669669

670670
planner_calls++;
671671
}

0 commit comments

Comments
 (0)