From: Michael Meskes Date: Fri, 5 Oct 2001 06:39:23 +0000 (+0000) Subject: Fixed typo in proproc.y X-Git-Tag: REL7_2_BETA1~170 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c83137a025450de30548f5f0ac96a85f61fe190d;p=thirdparty%2Fpostgresql.git Fixed typo in proproc.y --- diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog index 4ef1df0a423..c106ce89871 100644 --- a/src/interfaces/ecpg/ChangeLog +++ b/src/interfaces/ecpg/ChangeLog @@ -1112,5 +1112,9 @@ TUe Okt 2 16:09:26 CEST 2001 - Re-added Tom's patch fixing my setlocale patch. I accidently deleted it. + +Fri Okt 5 08:37:01 CEST 2001 + + - Fixed yet another typo in preproc.y. - Set ecpg version to 2.9.0. - Set library version to 3.3.0. diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 881f0c042e2..b00ad5f1782 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -2044,7 +2044,7 @@ opt_name: name { $$ = $1; } | /*EMPTY*/ { $$ = EMPTY; } ; -opt_column: COLUMN { $$ = make_str("colmunn"); } +opt_column: COLUMN { $$ = make_str("column"); } | /*EMPTY*/ { $$ = EMPTY; } ;