mirror of https://github.com/postgres/postgres
parent
d33bbb5b1f
commit
2074b5f1ad
@ -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 |
||||
|
||||
@ -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
@ -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'; |
||||
@ -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
Loading…
Reference in new issue