mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 09:03:23 -04:00
147c248254
This moves the code around from one huge file into hopefully logical and more manageable modules. For the most part, the code itself was not touched, except: PLy_function_handler and PLy_trigger_handler were renamed to PLy_exec_function and PLy_exec_trigger, because they were not actually handlers in the PL handler sense, and it makes the naming more similar to the way PL/pgSQL is organized. The initialization of the procedure caches was separated into a new function init_procedure_caches to keep the hash tables private to plpy_procedures.c. Jan Urbański and Peter Eisentraut
12 lines
648 B
Makefile
12 lines
648 B
Makefile
# src/pl/plpython/nls.mk
|
|
CATALOG_NAME = plpython
|
|
AVAIL_LANGUAGES = de es fr it ja pt_BR ro tr zh_CN zh_TW
|
|
GETTEXT_FILES = plpy_cursorobject.c plpy_elog.c plpy_exec.c plpy_main.c plpy_planobject.c plpy_plpymodule.c \
|
|
plpy_procedure.c plpy_resultobject.c plpy_spi.c plpy_subxactobject.c plpy_typeio.c plpy_util.c
|
|
GETTEXT_TRIGGERS = $(BACKEND_COMMON_GETTEXT_TRIGGERS) PLy_elog:2 PLy_exception_set:2 PLy_exception_set_plural:2,3
|
|
GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS) \
|
|
PLy_elog:2:c-format \
|
|
PLy_exception_set:2:c-format \
|
|
PLy_exception_set_plural:2:c-format \
|
|
PLy_exception_set_plural:3:c-format
|