Skip to content

Commit 296e5ea

Browse files
committed
remove differences across architectures
1 parent 1210e0b commit 296e5ea

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

nix/tests/postgresql.conf.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -----------------------------
22
# PostgreSQL configuration file
3+
34
# -----------------------------
45
#
56
# This file consists of lines of the form:

nix/tests/prime.sql

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,14 @@ create extension moddatetime;
2929
create extension old_snapshot;
3030
create extension pageinspect;
3131
create extension pg_buffercache;
32-
create extension pg_cron;
32+
33+
/*
34+
TODO: Does not enable locally mode
35+
requires a change to postgresql.conf to set
36+
cron.database_name = 'testing'
37+
*/
38+
-- create extension pg_cron;
39+
3340
create extension pg_net;
3441
create extension pg_graphql;
3542
create extension pg_freespacemap;
@@ -54,9 +61,16 @@ create extension pgsodium;
5461
create extension pgrowlocks;
5562
create extension pgstattuple;
5663
create extension plpgsql_check;
57-
create extension plv8;
58-
create extension plcoffee;
59-
create extension plls;
64+
65+
/*
66+
TODO: PLs can not be enabled on M1 Macs locally
67+
ERROR: could not load library "/nix/store/..../lib/plv8-3.1.5.so
68+
symbol not found in flat namespace
69+
*/
70+
-- create extension plv8;
71+
-- create extension plcoffee;
72+
-- create extension plls;
73+
6074
create extension postgis;
6175
create extension postgis_raster;
6276
create extension postgis_sfcgal;

0 commit comments

Comments
 (0)