File: createlang_pgplsh.sql.in

package info (click to toggle)
postgresql-plsh 1.3-3.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,364 kB
  • ctags: 39
  • sloc: sh: 8,849; ansic: 420; makefile: 62; sql: 30
file content (11 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
CREATE FUNCTION pg_catalog.plsh_handler() RETURNS language_handler
    AS '%filename%'
    LANGUAGE C;

CREATE FUNCTION pg_catalog.plsh_validator(oid) RETURNS void
    AS '%filename%'
    LANGUAGE C;

CREATE LANGUAGE plsh
    HANDLER pg_catalog.plsh_handler
    VALIDATOR pg_catalog.plsh_validator;