From 65033edd831e028e56eb0e5402871c259b997d4e Mon Sep 17 00:00:00 2001 From: Alexander Kuzmenkov Date: Tue, 4 Sep 2018 17:01:02 +0300 Subject: [PATCH] Support create_append_path in PGPROEE11 --- src/include/compat/pg_compat.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/compat/pg_compat.h b/src/include/compat/pg_compat.h index f2d5ba63..f33d41cc 100644 --- a/src/include/compat/pg_compat.h +++ b/src/include/compat/pg_compat.h @@ -239,7 +239,9 @@ create_append_path(NULL, (rel), (subpaths), NIL, (required_outer), \ (parallel_workers), false, NIL, -1) #else -/* TODO */ +#define create_append_path_compat(rel, subpaths, required_outer, parallel_workers) \ + create_append_path(NULL, (rel), (subpaths), NIL, (required_outer), \ + (parallel_workers), false, NIL, -1, false, NIL) #endif /* PGPRO_VERSION */ #elif PG_VERSION_NUM >= 100000