failed to add some of Jan's files :(

This commit is contained in:
Marc G. Fournier 1998-10-01 03:38:45 +00:00
parent d33bbb5b1f
commit 2074b5f1ad
6 changed files with 2805 additions and 0 deletions

23
src/pl/Makefile Normal file
View 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
View 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 $@

File diff suppressed because it is too large Load Diff

View 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';

View 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';

File diff suppressed because it is too large Load Diff