Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit91e7192

Browse files
committed
Convert the core lexer and parser into fully reentrant code, by making use
of features added to flex and bison since this code was originally written.This change doesn't in itself offer any new capability, but it's neededinfrastructure for planned improvements in plpgsql.Another feature now available in flex is the ability to make it use pallocinstead of malloc, so do that to avoid possible memory leaks. (We shouldat some point change the other lexers likewise, but this commit doesn'ttouch them.)
1 parentda4b900 commit91e7192

File tree

5 files changed

+503
-328
lines changed

5 files changed

+503
-328
lines changed

‎src/backend/nls.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# $PostgreSQL: pgsql/src/backend/nls.mk,v 1.27 2009/06/26 19:33:43 petere Exp $
1+
# $PostgreSQL: pgsql/src/backend/nls.mk,v 1.28 2009/07/13 02:02:19 tgl Exp $
22
CATALOG_NAME:= postgres
33
AVAIL_LANGUAGES:= de es fr ja pt_BR tr
44
GETTEXT_FILES:= + gettext-files
5-
GETTEXT_TRIGGERS:= _ errmsg errmsg_plural:1,2 errdetail errdetail_log errdetail_plural:1,2 errhint errcontext write_stderr yyerror
5+
GETTEXT_TRIGGERS:= _ errmsg errmsg_plural:1,2 errdetail errdetail_log errdetail_plural:1,2 errhint errcontext write_stderr yyerror parser_yyerror
66

77
gettext-files: distprep
88
find$(srcdir)/$(srcdir)/../port/ -name'*.c' -print>$@

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp