Commit 580e08a9 authored by Michael Meskes's avatar Michael Meskes

One small typo in preprocessor.

parent df974272
......@@ -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
......
/* $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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment