nix: add postgrest-with-oriole-18

This commit is contained in:
Wolfgang Walther
2026-08-02 14:51:50 +00:00
parent 549ab36c30
commit f84c44dafa
12 changed files with 46 additions and 22 deletions
+6
View File
@@ -0,0 +1,6 @@
SELECT EXISTS (SELECT * FROM pg_available_extensions WHERE name = 'orioledb') AS is_orioledb_available \gset
\if :is_orioledb_available
CREATE SCHEMA orioledb;
CREATE EXTENSION orioledb WITH SCHEMA orioledb;
\endif