aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-09 19:34:43 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-09 19:34:43 +0000
commit4f9d74f98bf3836cace32676a9c1e7f105d06d95 (patch)
tree311af9a2549733daf2fd332053ffbc8a27f4dc93 /src
parentaa48a22a82eb8175d0066d7647896cfc121accd3 (diff)
downloadpostgresql-4f9d74f98bf3836cace32676a9c1e7f105d06d95.tar.gz
postgresql-4f9d74f98bf3836cace32676a9c1e7f105d06d95.zip
install_plpgsql is no longer a regress test (it's done via createlang);
remove the no-longer-used files.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/Makefile6
-rw-r--r--src/test/regress/input/Makefile7
-rw-r--r--src/test/regress/input/install_plpgsql.source13
-rw-r--r--src/test/regress/output/Makefile7
-rw-r--r--src/test/regress/output/install_plpgsql.source7
-rw-r--r--src/test/regress/sql/Makefile6
6 files changed, 12 insertions, 34 deletions
diff --git a/src/test/regress/expected/Makefile b/src/test/regress/expected/Makefile
index c72b7f43186..285abb2c160 100644
--- a/src/test/regress/expected/Makefile
+++ b/src/test/regress/expected/Makefile
@@ -1,17 +1,17 @@
#-------------------------------------------------------------------------
#
# Makefile--
-# Makefile for regress (the regression test)
+# Makefile for regress/expected (the regression test)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/expected/Attic/Makefile,v 1.4 1998/09/29 12:40:52 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/expected/Attic/Makefile,v 1.5 2000/01/09 19:34:41 tgl Exp $
#
#-------------------------------------------------------------------------
-CLFILES= create_function_1.out create_function_2.out copy.out constraints.out misc.out install_plpgsql.out
+CLFILES= create_function_1.out create_function_2.out copy.out constraints.out misc.out
clean:
rm -f $(CLFILES)
diff --git a/src/test/regress/input/Makefile b/src/test/regress/input/Makefile
index 9a00fc5e4f8..d1602910235 100644
--- a/src/test/regress/input/Makefile
+++ b/src/test/regress/input/Makefile
@@ -1,13 +1,13 @@
#-------------------------------------------------------------------------
#
# Makefile--
-# Makefile for regress (the regression test)
+# Makefile for regress/input (the regression test)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/input/Attic/Makefile,v 1.7 1998/09/29 12:41:56 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/input/Attic/Makefile,v 1.8 2000/01/09 19:34:40 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -22,8 +22,7 @@ INFILES= copy.sql \
create_function_1.sql \
create_function_2.sql \
misc.sql \
- constraints.sql \
- install_plpgsql.sql
+ constraints.sql
all: $(INFILES)
diff --git a/src/test/regress/input/install_plpgsql.source b/src/test/regress/input/install_plpgsql.source
deleted file mode 100644
index d163d0f4947..00000000000
--- a/src/test/regress/input/install_plpgsql.source
+++ /dev/null
@@ -1,13 +0,0 @@
---
--- INSTALL_PLPGSQL
---
-
-CREATE FUNCTION plpgsql_call_handler()
- RETURNS opaque
- AS '_LIBDIR_/plpgsql_DLSUFFIX_'
- LANGUAGE 'c';
-
-CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
- HANDLER plpgsql_call_handler
- LANCOMPILER 'PL/pgSQL';
-
diff --git a/src/test/regress/output/Makefile b/src/test/regress/output/Makefile
index a31c6c4b6ab..2a4f1b91305 100644
--- a/src/test/regress/output/Makefile
+++ b/src/test/regress/output/Makefile
@@ -1,13 +1,13 @@
#-------------------------------------------------------------------------
#
# Makefile--
-# Makefile for regress (the regression test)
+# Makefile for regress/output (the regression test)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.9 1998/09/29 12:42:11 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/output/Attic/Makefile,v 1.10 2000/01/09 19:34:40 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -22,8 +22,7 @@ INFILES= copy.out \
create_function_1.out \
create_function_2.out \
misc.out \
- constraints.out \
- install_plpgsql.out
+ constraints.out
all: $(INFILES)
diff --git a/src/test/regress/output/install_plpgsql.source b/src/test/regress/output/install_plpgsql.source
deleted file mode 100644
index 78622e871b7..00000000000
--- a/src/test/regress/output/install_plpgsql.source
+++ /dev/null
@@ -1,7 +0,0 @@
-QUERY: CREATE FUNCTION plpgsql_call_handler()
- RETURNS opaque
- AS '_LIBDIR_/plpgsql_DLSUFFIX_'
- LANGUAGE 'c';
-QUERY: CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
- HANDLER plpgsql_call_handler
- LANCOMPILER 'PL/pgSQL';
diff --git a/src/test/regress/sql/Makefile b/src/test/regress/sql/Makefile
index d603f5cac11..19b4424af45 100644
--- a/src/test/regress/sql/Makefile
+++ b/src/test/regress/sql/Makefile
@@ -1,17 +1,17 @@
#-------------------------------------------------------------------------
#
# Makefile--
-# Makefile for regress (the regression test)
+# Makefile for regress/sql (the regression test)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/test/regress/sql/Attic/Makefile,v 1.4 1998/09/29 12:43:03 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/sql/Attic/Makefile,v 1.5 2000/01/09 19:34:43 tgl Exp $
#
#-------------------------------------------------------------------------
-CLFILES= create_function_1.sql create_function_2.sql copy.sql misc.sql constraints.sql install_plpgsql.sql
+CLFILES= create_function_1.sql create_function_2.sql copy.sql misc.sql constraints.sql
clean:
rm -f $(CLFILES)