]> granicus.if.org Git - postgresql/commitdiff
One small typo in preprocessor.
authorMichael Meskes <meskes@postgresql.org>
Fri, 19 Sep 2003 14:13:16 +0000 (14:13 +0000)
committerMichael Meskes <meskes@postgresql.org>
Fri, 19 Sep 2003 14:13:16 +0000 (14:13 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/preproc.y

index 66aab16799368ab9ed8c30f64ac269e28f75e0b0..a8724fbd7ce082d4dae30ee0d7a53185af11d4a6 100644 (file)
@@ -1635,6 +1635,10 @@ Tue Sep 16 07:56:14 CEST 2003
 Thu Sep 18 14:54:47 CEST 2003
 
        - Added Informix handling of datatype converion errors.
+       
+Fri Sep 19 08:33:39 CEST 2003
+
+       - Some code cleanup
        - Set ecpg version to 3.0.0
        - Set ecpg library to 4.0.0
        - Set pgtypes library to 1.0.0
index ef5d6edc4cf74db69a26dbb12d4e3b55f13764d5..e74bfa231f2125ee71c1a5e688137b4eb35efe9a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.256 2003/09/19 14:06:21 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.257 2003/09/19 14:13:16 meskes Exp $ */
 
 /* Copyright comment */
 %{
@@ -4522,7 +4522,7 @@ single_vt_type: common_type
                        else if (strcmp($1, "numeric") == 0)
                        {
                                $$.type_enum = ECPGt_numeric;
-                               $$.type_str = make_str("Numeric");
+                               $$.type_str = make_str("numeric");
                                $$.type_dimension = make_str("-1");
                                $$.type_index = make_str("-1");
                                $$.type_sizeof = NULL;