mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
failed to add some of Jan's files :(
This commit is contained in:
parent
d33bbb5b1f
commit
2074b5f1ad
23
src/pl/Makefile
Normal file
23
src/pl/Makefile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Makefile
|
||||||
|
# Makefile for src/pl (procedural languages)
|
||||||
|
#
|
||||||
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# IDENTIFICATION
|
||||||
|
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.1 1998/10/01 03:38:30 scrappy Exp $
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SRCDIR= ..
|
||||||
|
include $(SRCDIR)/Makefile.global
|
||||||
|
|
||||||
|
|
||||||
|
.DEFAULT all install clean dep depend distclean:
|
||||||
|
$(MAKE) -C plpgsql $@
|
||||||
|
ifeq ($(USE_TCL), true)
|
||||||
|
$(MAKE) -C tcl $@
|
||||||
|
endif
|
||||||
|
|
20
src/pl/plpgsql/Makefile
Normal file
20
src/pl/plpgsql/Makefile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Makefile
|
||||||
|
# Makefile for src/pl/plpgsql (PostgreSQL's SQL procedural language)
|
||||||
|
#
|
||||||
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# IDENTIFICATION
|
||||||
|
# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.1 1998/10/01 03:38:33 scrappy Exp $
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SRCDIR= ../..
|
||||||
|
include $(SRCDIR)/Makefile.global
|
||||||
|
|
||||||
|
|
||||||
|
.DEFAULT all install clean dep depend distclean:
|
||||||
|
-$(MAKE) -C src $@
|
||||||
|
|
1336
src/test/regress/expected/plpgsql.out
Normal file
1336
src/test/regress/expected/plpgsql.out
Normal file
File diff suppressed because it is too large
Load Diff
13
src/test/regress/input/install_plpgsql.source
Normal file
13
src/test/regress/input/install_plpgsql.source
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
--
|
||||||
|
-- install_plpgsql.source
|
||||||
|
--
|
||||||
|
--
|
||||||
|
|
||||||
|
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';
|
7
src/test/regress/output/install_plpgsql.source
Normal file
7
src/test/regress/output/install_plpgsql.source
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
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';
|
1406
src/test/regress/sql/plpgsql.sql
Normal file
1406
src/test/regress/sql/plpgsql.sql
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user