Skip to content

Commit ad3a0c8

Browse files
Merge pull request #31 from postgrespro/PGPRO-10866
Fixes related to new changes in PostgreSQL 18: August 1, 2024 - September 1, 2024
2 parents dc1952c + bc43f49 commit ad3a0c8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

vops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2772,7 +2772,7 @@ vops_last_combine(PG_FUNCTION_ARGS)
27722772
}
27732773

27742774

2775-
const size_t vops_sizeof[] =
2775+
static const size_t vops_sizeof[] =
27762776
{
27772777
sizeof(vops_bool),
27782778
sizeof(vops_char),

vops_fdw.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ postgresGetForeignPaths(PlannerInfo *root,
438438
baserel,
439439
NULL, /* default pathtarget */
440440
fpinfo->rows,
441+
0,
441442
fpinfo->startup_cost,
442443
fpinfo->total_cost,
443444
NIL, /* no pathkeys */
@@ -1408,6 +1409,7 @@ add_foreign_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel,
14081409
grouped_rel,
14091410
grouped_rel->reltarget,
14101411
rows,
1412+
0,
14111413
startup_cost,
14121414
total_cost,
14131415
NIL, /* no pathkeys */

0 commit comments

Comments
 (0)