Skip to content

Commit 8c64bf8

Browse files
authored
fix: cache lookup failed with plpgsql_check (#129)
1 parent cdfad69 commit 8c64bf8

File tree

8 files changed

+74
-12
lines changed

8 files changed

+74
-12
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
strategy:
4444
matrix:
45-
pg-version: ['15']
45+
pg-version: ['17']
4646

4747
steps:
4848
- uses: actions/checkout@v4
@@ -95,4 +95,4 @@ jobs:
9595
uses: coverallsapp/[email protected]
9696
with:
9797
github-token: ${{ secrets.GITHUB_TOKEN }}
98-
files: ./coverage.info
98+
files: ./build-${{ matrix.pg-version }}/coverage.info

.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

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
OS = $(shell uname -s)
2+
3+
ifeq ($(OS), Linux)
4+
DL_SUFFIX=so
5+
else
6+
DL_SUFFIX=dylib
7+
endif
8+
19
GREP ?= grep
210
PG_CONFIG = pg_config
311

@@ -25,6 +33,7 @@ SRC = $(wildcard src/*.c)
2533
OBJS = $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o, $(SRC))
2634

2735
PG_VERSION = $(strip $(shell $(PG_CONFIG) --version | $(GREP) -oP '(?<=PostgreSQL )[0-9]+'))
36+
PG_EQ15 = $(shell test $(PG_VERSION) -eq 15; echo $$?)
2837
PG_GE16 = $(shell test $(PG_VERSION) -ge 16; echo $$?)
2938
PG_GE14 = $(shell test $(PG_VERSION) -ge 14; echo $$?)
3039
SYSTEM = $(shell uname -s)
@@ -47,7 +56,19 @@ EXTRA_CLEAN = $(GENERATED_OUT)
4756

4857
PGXS := $(shell $(PG_CONFIG) --pgxs)
4958

50-
build: $(BUILD_DIR)/$(EXTENSION).so
59+
build: $(BUILD_DIR)/$(EXTENSION).$(DL_SUFFIX) test/init.conf
60+
61+
.PHONY: test/init.conf
62+
test/init.conf: test/init.conf.in
63+
ifeq ($(PG_EQ15), 0)
64+
sed \
65+
-e '/<\/\?PG_EQ_15>/d' \
66+
$? > $@
67+
else
68+
sed \
69+
-e '/<PG_EQ_15>/,/<\/PG_EQ_15>/d' \
70+
$? > $@
71+
endif
5172

5273
PG_CPPFLAGS := $(CPPFLAGS) -DTEST=1
5374

@@ -58,7 +79,7 @@ $(BUILD_DIR)/.gitignore:
5879
$(BUILD_DIR)/%.o: $(SRC_DIR)/%.c $(BUILD_DIR)/.gitignore
5980
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
6081

61-
$(BUILD_DIR)/$(EXTENSION).so: $(EXTENSION).so
82+
$(BUILD_DIR)/$(EXTENSION).$(DL_SUFFIX): $(EXTENSION).$(DL_SUFFIX)
6283
mv $? $@
6384

6485
include $(PGXS)

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ let
33
dep = fetchFromGitHub {
44
owner = "steve-chavez";
55
repo = "xpg";
6-
rev = "v1.2";
7-
sha256 = "sha256-7sP+exW5CSh8c9NW4f8yr4bLcN5hJDxU5eWa8PjoNZA=";
6+
rev = "v1.3.0";
7+
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
}

src/event_triggers.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ void
88
force_noop(FmgrInfo *finfo)
99
{
1010
finfo->fn_addr = (PGFunction) noop;
11-
finfo->fn_oid = InvalidOid; /* not a known function OID anymore */
11+
finfo->fn_oid = 38; /* put the int2in oid which is sure to exist, this avoids cache lookup errors. See https://github.com/supabase/supautils/pull/129*/
1212
finfo->fn_nargs = 0; /* no arguments for noop */
1313
finfo->fn_strict = false;
1414
finfo->fn_retset = false;

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
shared_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)