]> granicus.if.org Git - postgresql/commit
As proposed, here is the current version of PL/pgSQL. The
authorBruce Momjian <bruce@momjian.us>
Sat, 22 Aug 1998 12:38:39 +0000 (12:38 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 22 Aug 1998 12:38:39 +0000 (12:38 +0000)
commit863a62064cfc2b706dd6ab45487d15cc33cedb35
tree9622ff88645b770b32273ba9f02cb8c7df13c989
parent212f7bdfe3f5c5a7374a05590b32640e579c65dd
As  proposed,  here  is  the current version of PL/pgSQL. The
    test isn't that complete up to now,  but  I  think  it  shows
    enough of the capabilities of the module.

    The  Makefile  assumes  it  is  located  in a directory under
    pgsql/src/pl.   Since   it   includes   Makefile.global   and
    Makefile.port  and doesn't use any own compiler/linker calls,
    it should build on most of our supported  platforms  (I  only
    tested  under Linux up to now).  It requires flex and bison I
    think. Maybe we should ship prepared gram.c etc. like for the
    main parser too?

Jan
22 files changed:
contrib/README
contrib/plpgsql/doc/plpgsql.txt [new file with mode: 0644]
contrib/plpgsql/src/INSTALL [new file with mode: 0644]
contrib/plpgsql/src/gram.y [new file with mode: 0644]
contrib/plpgsql/src/mklang.sql [new file with mode: 0644]
contrib/plpgsql/src/pl_comp.c [new file with mode: 0644]
contrib/plpgsql/src/pl_exec.c [new file with mode: 0644]
contrib/plpgsql/src/pl_funcs.c [new file with mode: 0644]
contrib/plpgsql/src/pl_handler.c [new file with mode: 0644]
contrib/plpgsql/src/plpgsql.h [new file with mode: 0644]
contrib/plpgsql/src/scan.l [new file with mode: 0644]
contrib/plpgsql/test/README [new file with mode: 0644]
contrib/plpgsql/test/expected/tables.out [new file with mode: 0644]
contrib/plpgsql/test/expected/test.out [new file with mode: 0644]
contrib/plpgsql/test/expected/triggers.out [new file with mode: 0644]
contrib/plpgsql/test/expected/views.out [new file with mode: 0644]
contrib/plpgsql/test/mklang.sql [new file with mode: 0644]
contrib/plpgsql/test/runtest [new file with mode: 0755]
contrib/plpgsql/test/tables.sql [new file with mode: 0644]
contrib/plpgsql/test/test.sql [new file with mode: 0644]
contrib/plpgsql/test/triggers.sql [new file with mode: 0644]
contrib/plpgsql/test/views.sql [new file with mode: 0644]