Skip to content

Commit 249a833

Browse files
committed
test: cache lookup failed with plpgsql_check
1 parent fc07cf4 commit 249a833

File tree

6 files changed

+60
-6
lines changed

6 files changed

+60
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ test/expected/event_triggers.out
1414
*.gcda
1515
coverage.info
1616
coverage_html
17+
test/init.conf

Makefile

+14-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ SRC = $(wildcard src/*.c)
2525
OBJS = $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o, $(SRC))
2626

2727
PG_VERSION = $(strip $(shell $(PG_CONFIG) --version | $(GREP) -oP '(?<=PostgreSQL )[0-9]+'))
28+
PG_EQ15 = $(shell test $(PG_VERSION) -eq 15; echo $$?)
2829
PG_GE16 = $(shell test $(PG_VERSION) -ge 16; echo $$?)
2930
PG_GE14 = $(shell test $(PG_VERSION) -ge 14; echo $$?)
3031
SYSTEM = $(shell uname -s)
@@ -47,7 +48,19 @@ EXTRA_CLEAN = $(GENERATED_OUT)
4748

4849
PGXS := $(shell $(PG_CONFIG) --pgxs)
4950

50-
build: $(BUILD_DIR)/$(EXTENSION).so
51+
build: $(BUILD_DIR)/$(EXTENSION).so test/init.conf
52+
53+
.PHONY: test/init.conf
54+
test/init.conf: test/init.conf.in
55+
ifeq ($(PG_EQ15), 0)
56+
sed \
57+
-e '/<\/\?PG_EQ_15>/d' \
58+
$? > $@
59+
else
60+
sed \
61+
-e '/<PG_EQ_15>/,/<\/PG_EQ_15>/d' \
62+
$? > $@
63+
endif
5164

5265
PG_CPPFLAGS := $(CPPFLAGS) -DTEST=1
5366

nix/plpgsql-check.nix

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{ lib, stdenv, fetchFromGitHub, postgresql }:
2+
3+
stdenv.mkDerivation rec {
4+
pname = "plpgsql-check";
5+
version = "2.7.11";
6+
7+
src = fetchFromGitHub {
8+
owner = "okbob";
9+
repo = "plpgsql_check";
10+
rev = "v${version}";
11+
hash = "sha256-vR3MvfmUP2QEAtXFpq0NCCKck3wZPD+H3QleHtyVQJs=";
12+
};
13+
14+
buildInputs = [ postgresql ];
15+
16+
installPhase = ''
17+
install -D -t $out *${postgresql.dlSuffix}
18+
install -D -t $out *.sql
19+
install -D -t $out *.control
20+
'';
21+
22+
meta = with lib; {
23+
description = "Linter tool for language PL/pgSQL";
24+
homepage = "https://github.com/okbob/plpgsql_check";
25+
changelog = "https://github.com/okbob/plpgsql_check/releases/tag/v${version}";
26+
platforms = postgresql.meta.platforms;
27+
license = licenses.mit;
28+
maintainers = [ maintainers.marsam ];
29+
};
30+
}

nix/xpg.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ let
66
rev = "v1.3.0";
77
sha256 = "sha256-jDELiBbnCpRXIpod7msnhMfGcrW0pR3snDQ5T81nO0I=";
88
};
9-
xpg = (import dep).xpg;
9+
xpg = import dep;
1010
in
1111
xpg

shell.nix

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ with import (builtins.fetchTarball {
44
sha256 = "sha256:1lr1h35prqkd1mkmzriwlpvxcb34kmhc9dnr48gkm8hh089hifmx";
55
}) {};
66
mkShell {
7-
buildInputs = [
8-
(callPackage ./nix/xpg.nix {inherit fetchFromGitHub;})
9-
];
7+
buildInputs =
8+
let
9+
xpg = callPackage ./nix/xpg.nix {};
10+
pgsqlcheck15 = callPackage ./nix/plpgsql-check.nix {
11+
postgresql = xpg.postgresql_15;
12+
};
13+
in
14+
[
15+
(xpg.xpgWithExtensions { exts15 = [ pgsqlcheck15 ]; })
16+
];
1017
}

test/init.conf test/init.conf.in

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
session_preload_libraries='supautils'
1+
<PG_EQ_15>
2+
shared_preload_libraries='plpgsql_check'
3+
</PG_EQ_15>
4+
session_preload_libraries = 'supautils'
25
wal_level=logical
36

47
supautils.reserved_roles='supabase_storage_admin, anon, reserved_but_not_yet_created, authenticator*'

0 commit comments

Comments
 (0)