Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 580e08a

Browse files
author
Michael Meskes
committed
One small typo in preprocessor.
1 parent df97427 commit 580e08a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,6 +1635,10 @@ Tue Sep 16 07:56:14 CEST 2003
16351635
Thu Sep 18 14:54:47 CEST 2003
16361636

16371637
- Added Informix handling of datatype converion errors.
1638+
1639+
Fri Sep 19 08:33:39 CEST 2003
1640+
1641+
- Some code cleanup
16381642
- Set ecpg version to 3.0.0
16391643
- Set ecpg library to 4.0.0
16401644
- Set pgtypes library to 1.0.0

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.256 2003/09/19 14:06:21 meskes Exp $ */
1+
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.257 2003/09/19 14:13:16 meskes Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -4522,7 +4522,7 @@ single_vt_type: common_type
45224522
else if (strcmp($1, "numeric") == 0)
45234523
{
45244524
$$.type_enum = ECPGt_numeric;
4525-
$$.type_str = make_str("Numeric");
4525+
$$.type_str = make_str("numeric");
45264526
$$.type_dimension = make_str("-1");
45274527
$$.type_index = make_str("-1");
45284528
$$.type_sizeof = NULL;

0 commit comments

Comments
 (0)