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

Commit 827edf2

Browse files
author
Michael Meskes
committed
Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>
1 parent a27860c commit 827edf2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/interfaces/ecpg/ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1059,5 +1059,9 @@ Mon Feb 19 08:25:14 CET 2001
10591059
Mon Feb 26 15:22:04 CET 2001
10601060

10611061
- Fixed misplaced variables FoundInto and QueryIsRule.
1062+
1063+
Don Mar 29 10:23:05 CEST 2001
1064+
1065+
- Applied bug fix in ecpgtype.h by Adriaan Joubert.
10621066
- Set ecpg version to 2.8.0.
10631067
- Set library version to 3.2.0.

src/interfaces/ecpg/include/ecpgtype.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ extern "C"
7070
ECPGd_EODT /* End of descriptor types. */
7171
};
7272

73-
#define IS_SIMPLE_TYPE(type) ((type) >= ECPGt_char && (type) <= ECPGt_varchar2)
73+
#define IS_SIMPLE_TYPE(type) (((type) >= ECPGt_char && (type) <= ECPGt_varchar2) || (type)>=ECPGt_long_long)
7474

7575
#ifdef __cplusplus
7676
}

0 commit comments

Comments
 (0)