/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/pl/tcl/pltcl--1.0.sql
12 строк
374 B
Tom Lane
Invent "trusted" extensions, and remove the pg_pltemplate catalog.
30 янв 2020, 02:42
30 янв 2020, 02:42
50fc694
Код
Авторство
О чём код?
/* src/pl/tcl/pltcl--1.0.sql */ CREATE FUNCTION pltcl_call_handler() RETURNS language_handler LANGUAGE c AS 'MODULE_PATHNAME'; CREATE TRUSTED LANGUAGE pltcl HANDLER pltcl_call_handler; -- The language object, but not the functions, can be owned by a non-superuser. ALTER LANGUAGE pltcl OWNER TO @extowner@; COMMENT ON LANGUAGE pltcl IS 'PL/Tcl procedural language';