Commit 827edf20 authored by Michael Meskes's avatar Michael Meskes

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

parent a27860cf
......@@ -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.
......@@ -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
}
......
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