Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>

This commit is contained in:
Michael Meskes 2001-03-29 09:59:00 +00:00
parent a27860cf59
commit 827edf2076
2 changed files with 5 additions and 1 deletions

View File

@ -1059,5 +1059,9 @@ Mon Feb 19 08:25:14 CET 2001
Mon Feb 26 15:22:04 CET 2001
- Fixed misplaced variables FoundInto and QueryIsRule.
Don Mar 29 10:23:05 CEST 2001
- Applied bug fix in ecpgtype.h by Adriaan Joubert.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.

View File

@ -70,7 +70,7 @@ extern "C"
ECPGd_EODT /* End of descriptor types. */
};
#define IS_SIMPLE_TYPE(type) ((type) >= ECPGt_char && (type) <= ECPGt_varchar2)
#define IS_SIMPLE_TYPE(type) (((type) >= ECPGt_char && (type) <= ECPGt_varchar2) || (type)>=ECPGt_long_long)
#ifdef __cplusplus
}