]> granicus.if.org Git - postgresql/commitdiff
Remove regression tests' CREATE FUNCTION commands for unused C functions.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Feb 2018 20:04:21 +0000 (15:04 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Feb 2018 20:04:21 +0000 (15:04 -0500)
I removed these functions altogether in HEAD, in commit db3af9feb, and
it emerges that that causes trouble for cross-branch upgrade testing.
We could put back stub functions but that seems pretty silly.  Instead,
back-patch a minimal subset of db3af9feb, namely just removing the
CREATE FUNCTION commands.

Discussion: https://postgr.es/m/11927.1519756619@sss.pgh.pa.us

src/test/regress/input/create_function_1.source
src/test/regress/input/create_function_2.source
src/test/regress/output/create_function_1.source
src/test/regress/output/create_function_2.source

index f89038eb5e91d4600845a9cabad47da1ab4b80be..3d19bd4e7dfd4786f6609cc21884556fffc3facc 100644 (file)
@@ -37,11 +37,6 @@ CREATE FUNCTION autoinc ()
        AS '@libdir@/autoinc@DLSUFFIX@'
        LANGUAGE C;
 
-CREATE FUNCTION funny_dup17 ()
-        RETURNS trigger
-        AS '@libdir@/regress@DLSUFFIX@'
-        LANGUAGE C;
-
 CREATE FUNCTION trigger_return_old ()
         RETURNS trigger
         AS '@libdir@/regress@DLSUFFIX@'
index b167c8ac6d80e0955e2b1cbe8b98d7df7d2aa598..9e6d2942ec7f151632d7f4e0cb9ae89f6bc0b013 100644 (file)
@@ -72,11 +72,6 @@ CREATE FUNCTION overpaid(emp)
    AS '@libdir@/regress@DLSUFFIX@'
    LANGUAGE C STRICT;
 
-CREATE FUNCTION boxarea(box)
-   RETURNS float8
-   AS '@libdir@/regress@DLSUFFIX@'
-   LANGUAGE C STRICT;
-
 CREATE FUNCTION interpt_pp(path, path)
    RETURNS point
    AS '@libdir@/regress@DLSUFFIX@'
index 557d629ad81d8afad65b7a6cb13f54c8e9805d25..d7798489774a11d3f5333eb380b7fe258d3c6319 100644 (file)
@@ -35,10 +35,6 @@ CREATE FUNCTION autoinc ()
        RETURNS trigger
        AS '@libdir@/autoinc@DLSUFFIX@'
        LANGUAGE C;
-CREATE FUNCTION funny_dup17 ()
-        RETURNS trigger
-        AS '@libdir@/regress@DLSUFFIX@'
-        LANGUAGE C;
 CREATE FUNCTION trigger_return_old ()
         RETURNS trigger
         AS '@libdir@/regress@DLSUFFIX@'
index 8f28bff298ab707ef6b45ea60d38ce6a1ef58d3a..ac9a7f5cf8d10231ea1018e7eda70f68734d3f5d 100644 (file)
@@ -55,10 +55,6 @@ CREATE FUNCTION overpaid(emp)
    RETURNS bool
    AS '@libdir@/regress@DLSUFFIX@'
    LANGUAGE C STRICT;
-CREATE FUNCTION boxarea(box)
-   RETURNS float8
-   AS '@libdir@/regress@DLSUFFIX@'
-   LANGUAGE C STRICT;
 CREATE FUNCTION interpt_pp(path, path)
    RETURNS point
    AS '@libdir@/regress@DLSUFFIX@'