summaryrefslogtreecommitdiff
path: root/contrib/dblink/output
diff options
context:
space:
mode:
authorTom Lane2021-12-20 19:15:52 +0000
committerTom Lane2021-12-20 19:15:52 +0000
commitdc9c3b0ff21465fa89d71eecf5e6cc956d647eca (patch)
tree3c6f695eb5159d9673d3ce749d7a1499ca779c18 /contrib/dblink/output
parentd1029bb5a26cb84b116b0dee4dde312291359f2a (diff)
Remove dynamic translation of regression test scripts, step 2.
"git mv" all the input/*.source and output/*.source files into the corresponding sql/ and expected/ directories. Then remove the pg_regress and Makefile infrastructure associated with dynamic translation. Discussion: https://postgr.es/m/1655733.1639871614@sss.pgh.pa.us
Diffstat (limited to 'contrib/dblink/output')
-rw-r--r--contrib/dblink/output/paths.source18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/dblink/output/paths.source b/contrib/dblink/output/paths.source
deleted file mode 100644
index d09b169b19a..00000000000
--- a/contrib/dblink/output/paths.source
+++ /dev/null
@@ -1,18 +0,0 @@
--- Initialization that requires path substitution.
--- directory paths and dlsuffix are passed to us in environment variables
-\getenv abs_srcdir PG_ABS_SRCDIR
-\getenv libdir PG_LIBDIR
-\getenv dlsuffix PG_DLSUFFIX
-\set regresslib :libdir '/regress' :dlsuffix
-CREATE FUNCTION setenv(text, text)
- RETURNS void
- AS :'regresslib', 'regress_setenv'
- LANGUAGE C STRICT;
-CREATE FUNCTION wait_pid(int)
- RETURNS void
- AS :'regresslib'
- LANGUAGE C STRICT;
-\set path :abs_srcdir '/'
-\set fnbody 'SELECT setenv(''PGSERVICEFILE'', ' :'path' ' || $1)'
-CREATE FUNCTION set_pgservicefile(text) RETURNS void LANGUAGE SQL
- AS :'fnbody';