One small typo in preprocessor.
This commit is contained in:
parent
df974272ec
commit
580e08a98b
@ -1635,6 +1635,10 @@ Tue Sep 16 07:56:14 CEST 2003
|
|||||||
Thu Sep 18 14:54:47 CEST 2003
|
Thu Sep 18 14:54:47 CEST 2003
|
||||||
|
|
||||||
- Added Informix handling of datatype converion errors.
|
- 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 version to 3.0.0
|
||||||
- Set ecpg library to 4.0.0
|
- Set ecpg library to 4.0.0
|
||||||
- Set pgtypes library to 1.0.0
|
- Set pgtypes library to 1.0.0
|
||||||
|
@ -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 */
|
/* Copyright comment */
|
||||||
%{
|
%{
|
||||||
@ -4522,7 +4522,7 @@ single_vt_type: common_type
|
|||||||
else if (strcmp($1, "numeric") == 0)
|
else if (strcmp($1, "numeric") == 0)
|
||||||
{
|
{
|
||||||
$$.type_enum = ECPGt_numeric;
|
$$.type_enum = ECPGt_numeric;
|
||||||
$$.type_str = make_str("Numeric");
|
$$.type_str = make_str("numeric");
|
||||||
$$.type_dimension = make_str("-1");
|
$$.type_dimension = make_str("-1");
|
||||||
$$.type_index = make_str("-1");
|
$$.type_index = make_str("-1");
|
||||||
$$.type_sizeof = NULL;
|
$$.type_sizeof = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user