8000 change INT32_MAX to PG_INT32_MAX for Windows · postgrespro/pg_pathman@f7fe78c · GitHub
[go: up one dir, main page]

Skip to content

Commit f7fe78c

Browse files
committed
change INT32_MAX to PG_INT32_MAX for Windows
1 parent b7f4ac6 commit f7fe78c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)
0