From d21182ce2c7d9d6cebf37ce225f5650b177370cc Mon Sep 17 00:00:00 2001 From: Paul Cioanca Date: Tue, 17 Dec 2024 14:57:50 +0200 Subject: [PATCH] [WIP] fix: add helloworld fdw back again (#1382) * fix: add helloworld fdw back again * chore: update extension interface output --- nix/ext/wrappers/default.nix | 1 + nix/tests/expected/extensions_sql_interface.out | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/ext/wrappers/default.nix b/nix/ext/wrappers/default.nix index 772df813d..025b0b3b0 100644 --- a/nix/ext/wrappers/default.nix +++ b/nix/ext/wrappers/default.nix @@ -96,6 +96,7 @@ buildPgrxExtension_0_12_6 rec { buildAndTestSubdir = "wrappers"; buildFeatures = [ + "helloworld_fdw" "all_fdws" ]; doCheck = false; diff --git a/nix/tests/expected/extensions_sql_interface.out b/nix/tests/expected/extensions_sql_interface.out index ca3a70135..9097efd94 100644 --- a/nix/tests/expected/extensions_sql_interface.out +++ b/nix/tests/expected/extensions_sql_interface.out @@ -5164,6 +5164,9 @@ order by wrappers | public | firebase_fdw_handler | | fdw_handler wrappers | public | firebase_fdw_meta | | TABLE(name text, version text, author text, website text) wrappers | public | firebase_fdw_validator | options text[], catalog oid | void + wrappers | public | hello_world_fdw_handler | | fdw_handler + wrappers | public | hello_world_fdw_meta | | TABLE(name text, version text, author text, website text) + wrappers | public | hello_world_fdw_validator | options text[], catalog oid | void wrappers | public | logflare_fdw_handler | | fdw_handler wrappers | public | logflare_fdw_meta | | TABLE(name text, version text, author text, website text) wrappers | public | logflare_fdw_validator | options text[], catalog oid | void @@ -5195,7 +5198,7 @@ order by xml2 | public | xpath_table | text, text, text, text, text | SETOF record xml2 | public | xslt_process | text, text | text xml2 | public | xslt_process | text, text, text | text -(5031 rows) +(5034 rows) /*