Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4f9d74f9
Commit
4f9d74f9
authored
Jan 09, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
install_plpgsql is no longer a regress test (it's done via createlang);
remove the no-longer-used files.
parent
aa48a22a
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
34 deletions
+12
-34
src/test/regress/expected/Makefile
src/test/regress/expected/Makefile
+3
-3
src/test/regress/input/Makefile
src/test/regress/input/Makefile
+3
-4
src/test/regress/input/install_plpgsql.source
src/test/regress/input/install_plpgsql.source
+0
-13
src/test/regress/output/Makefile
src/test/regress/output/Makefile
+3
-4
src/test/regress/output/install_plpgsql.source
src/test/regress/output/install_plpgsql.source
+0
-7
src/test/regress/sql/Makefile
src/test/regress/sql/Makefile
+3
-3
No files found.
src/test/regress/expected/Makefile
View file @
4f9d74f9
#-------------------------------------------------------------------------
#
# 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)
src/test/regress/input/Makefile
View file @
4f9d74f9
#-------------------------------------------------------------------------
#
# 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)
...
...
src/test/regress/input/install_plpgsql.source
deleted
100644 → 0
View file @
aa48a22a
--
-- 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';
src/test/regress/output/Makefile
View file @
4f9d74f9
#-------------------------------------------------------------------------
#
# 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)
...
...
src/test/regress/output/install_plpgsql.source
deleted
100644 → 0
View file @
aa48a22a
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';
src/test/regress/sql/Makefile
View file @
4f9d74f9
#-------------------------------------------------------------------------
#
# 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)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment