Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cache lookup failed with plpgsql_check #129

Merged
merged 4 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

strategy:
matrix:
pg-version: ['15']
pg-version: ['17']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -95,4 +95,4 @@ jobs:
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
files: ./coverage.info
files: ./build-${{ matrix.pg-version }}/coverage.info
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ test/expected/event_triggers.out
*.gcda
coverage.info
coverage_html
test/init.conf
25 changes: 23 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
OS = $(shell uname -s)

ifeq ($(OS), Linux)
DL_SUFFIX=so
else
DL_SUFFIX=dylib
endif

GREP ?= grep
PG_CONFIG = pg_config

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

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

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

build: $(BUILD_DIR)/$(EXTENSION).so
build: $(BUILD_DIR)/$(EXTENSION).$(DL_SUFFIX) test/init.conf

.PHONY: test/init.conf
test/init.conf: test/init.conf.in
ifeq ($(PG_EQ15), 0)
sed \
-e '/<\/\?PG_EQ_15>/d' \
$? > $@
else
sed \
-e '/<PG_EQ_15>/,/<\/PG_EQ_15>/d' \
$? > $@
endif

PG_CPPFLAGS := $(CPPFLAGS) -DTEST=1

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

$(BUILD_DIR)/$(EXTENSION).so: $(EXTENSION).so
$(BUILD_DIR)/$(EXTENSION).$(DL_SUFFIX): $(EXTENSION).$(DL_SUFFIX)
mv $? $@

include $(PGXS)
Expand Down
30 changes: 30 additions & 0 deletions nix/plpgsql-check.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ lib, stdenv, fetchFromGitHub, postgresql }:

stdenv.mkDerivation rec {
pname = "plpgsql-check";
version = "2.7.11";

src = fetchFromGitHub {
owner = "okbob";
repo = "plpgsql_check";
rev = "v${version}";
hash = "sha256-vR3MvfmUP2QEAtXFpq0NCCKck3wZPD+H3QleHtyVQJs=";
};

buildInputs = [ postgresql ];

installPhase = ''
install -D -t $out *${postgresql.dlSuffix}
install -D -t $out *.sql
install -D -t $out *.control
'';

meta = with lib; {
description = "Linter tool for language PL/pgSQL";
homepage = "https://github.com/okbob/plpgsql_check";
changelog = "https://github.com/okbob/plpgsql_check/releases/tag/v${version}";
platforms = postgresql.meta.platforms;
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}
6 changes: 3 additions & 3 deletions nix/xpg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ let
dep = fetchFromGitHub {
owner = "steve-chavez";
repo = "xpg";
rev = "v1.2";
sha256 = "sha256-7sP+exW5CSh8c9NW4f8yr4bLcN5hJDxU5eWa8PjoNZA=";
rev = "v1.3.0";
sha256 = "sha256-jDELiBbnCpRXIpod7msnhMfGcrW0pR3snDQ5T81nO0I=";
};
xpg = (import dep).xpg;
xpg = import dep;
in
xpg
13 changes: 10 additions & 3 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ with import (builtins.fetchTarball {
sha256 = "sha256:1lr1h35prqkd1mkmzriwlpvxcb34kmhc9dnr48gkm8hh089hifmx";
}) {};
mkShell {
buildInputs = [
(callPackage ./nix/xpg.nix {inherit fetchFromGitHub;})
];
buildInputs =
let
xpg = callPackage ./nix/xpg.nix {};
pgsqlcheck15 = callPackage ./nix/plpgsql-check.nix {
postgresql = xpg.postgresql_15;
};
in
[
(xpg.xpgWithExtensions { exts15 = [ pgsqlcheck15 ]; })
];
}
2 changes: 1 addition & 1 deletion src/event_triggers.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void
force_noop(FmgrInfo *finfo)
{
finfo->fn_addr = (PGFunction) noop;
finfo->fn_oid = InvalidOid; /* not a known function OID anymore */
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*/
finfo->fn_nargs = 0; /* no arguments for noop */
finfo->fn_strict = false;
finfo->fn_retset = false;
Expand Down
5 changes: 4 additions & 1 deletion test/init.conf → test/init.conf.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
shared_preload_libraries='supautils'
<PG_EQ_15>
shared_preload_libraries='plpgsql_check'
</PG_EQ_15>
session_preload_libraries = 'supautils'
wal_level=logical

supautils.reserved_roles='supabase_storage_admin, anon, reserved_but_not_yet_created, authenticator*'
Expand Down
Loading