Skip to content

Commit 4e9676c

Browse files
committed
Fix size in makeConst calls
1 parent 64ce596 commit 4e9676c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ pathKeys(MulticornPlanState * state)
15901590
}
15911591
item = lappend(item, attnums);
15921592
item = lappend(item, makeConst(INT4OID,
1593-
-1, InvalidOid, -1, rows, false, true));
1593+
-1, InvalidOid, 4, rows, false, true));
15941594
result = lappend(result, item);
15951595
Py_DECREF(p_keys);
15961596
Py_DECREF(p_cost);

0 commit comments

Comments
 (0)