8000 Fixes related to new changes in PostgreSQL 18: August 1, 2024 - September 1, 2024 by MarinaPolyakova · Pull Request #31 · postgrespro/vops · GitHub
[go: up one dir, main page]

Skip to content

Fixes related to new changes in PostgreSQL 18: August 1, 2024 - September 1, 2024 #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
PGPRO-10866: Update create_foreignscan_path() calls.
  Caused by:
  - e22253467942fdb100087787c3e1e3a8620c54b2 (PostgreSQL)
    Treat number of disabled nodes in a path as a separate cost metric.
  - a9375a9e79f8115dc3b2ee9045fb656ebe271b6c (Postgres Pro Enterprise)
    [PGPRO-5825]: Port contrib/in_memory to EE15

Tags: vops
  • Loading branch information
antamel committed Oct 3, 2024
commit bc43f499b4c1fc4f93f53300ee44cdc6e67ebeb3
2 changes: 2 additions & 0 deletions vops_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ postgresGetForeignPaths(PlannerInfo *root,
baserel,
NULL, /* default pathtarget */
fpinfo->rows,
0,
fpinfo->startup_cost,
fpinfo->total_cost,
NIL, /* no pathkeys */
Expand Down Expand Up @@ -1408,6 +1409,7 @@ add_foreign_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel,
grouped_rel,
grouped_rel->reltarget,
rows,
0,
startup_cost,
total_cost,
NIL, /* no pathkeys */
Expand Down
0