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
b8cbb8c7
Commit
b8cbb8c7
authored
Feb 09, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove no-longer-needed mklang script; now superseded by createlang.
parent
8a2cdd77
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
28 deletions
+4
-28
src/pl/plpgsql/src/INSTALL
src/pl/plpgsql/src/INSTALL
+2
-9
src/pl/plpgsql/src/Makefile
src/pl/plpgsql/src/Makefile
+2
-6
src/pl/plpgsql/src/mklang.sql.in
src/pl/plpgsql/src/mklang.sql.in
+0
-13
No files found.
src/pl/plpgsql/src/INSTALL
View file @
b8cbb8c7
Installation of PL/pgSQL
Installation of PL/pgSQL
1) Type 'make' to build the shared plpgsql object.
1) Type 'make' to build the shared plpgsql object.
2) Type 'make install' to install the shared object in
2) Type 'make install' to install the shared object in
the PostgreSQL library directory.
the PostgreSQL library directory.
3) Declare the PL/pgSQL procedural language in your
3) Declare the PL/pgSQL procedural language in your
database by
database by running the createlang script:
psql dbname <mklang.sql
If the PostgreSQL library directory is different from
createlang plpgsql DBNAME
/usr/local/pgsql/lib you must edit mklang.sql prior.
If you declare the language in the template1 database,
If you declare the language in the template1 database,
any subsequently created database will have PL/pgSQL
any subsequently created database will have PL/pgSQL
support installed automatically.
support installed automatically.
src/pl/plpgsql/src/Makefile
View file @
b8cbb8c7
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# Makefile for the plpgsql shared object
# Makefile for the plpgsql shared object
#
#
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.
9 2000/10/23 21:44:03 petere
Exp $
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.
10 2001/02/09 01:05:42 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -71,12 +71,8 @@ endif
...
@@ -71,12 +71,8 @@ endif
distprep
:
$(srcdir)/pl_scan.c $(srcdir)/pl.tab.h $(srcdir)/pl_gram.c
distprep
:
$(srcdir)/pl_scan.c $(srcdir)/pl.tab.h $(srcdir)/pl_gram.c
mklang.sql
:
mklang.sql.in
sed
-e
's%__libdir__%
$(libdir)
%g'
-e
's%__DLSUFFIX__%
$(DLSUFFIX)
%g'
<
$<
>
$@
clean distclean
:
clean-lib
clean distclean
:
clean-lib
rm
-f
$(OBJS)
mklang.sql
rm
-f
$(OBJS)
@
rm
-f
y.tab.c y.tab.h lex.yy.c
@
rm
-f
y.tab.c y.tab.h lex.yy.c
maintainer-clean
:
clean
maintainer-clean
:
clean
...
...
src/pl/plpgsql/src/mklang.sql.in
deleted
100644 → 0
View file @
8a2cdd77
--
-- PL/pgSQL language declaration
--
-- $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/mklang.sql.in,v 1.5 2000/06/20 16:40:10 petere Exp $
--
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';
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