We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a27860c commit 827edf2Copy full SHA for 827edf2
src/interfaces/ecpg/ChangeLog
@@ -1059,5 +1059,9 @@ Mon Feb 19 08:25:14 CET 2001
1059
Mon Feb 26 15:22:04 CET 2001
1060
1061
- 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.
1066
- Set ecpg version to 2.8.0.
1067
- Set library version to 3.2.0.
src/interfaces/ecpg/include/ecpgtype.h
@@ -70,7 +70,7 @@ extern "C"
70
ECPGd_EODT /* End of descriptor types. */
71
};
72
73
-#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)
74
75
#ifdef __cplusplus
76
}
0 commit comments