fix?(package): postgreact

This commit is contained in:
zerosummed
2025-04-17 05:20:41 +03:00
parent 8f5c89f6ce
commit 067082f24a
10 changed files with 76 additions and 47 deletions
+12
View File
@@ -0,0 +1,12 @@
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION postgreact" to load this file. \quit
-- Define the hello function that uses our C implementation
CREATE FUNCTION hello()
RETURNS
TEXT
STRICT VOLATILE
LANGUAGE C
AS
'MODULE_PATHNAME', 'hello'
;