]> granicus.if.org Git - postgresql/commitdiff
Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>
authorMichael Meskes <meskes@postgresql.org>
Thu, 29 Mar 2001 09:59:00 +0000 (09:59 +0000)
committerMichael Meskes <meskes@postgresql.org>
Thu, 29 Mar 2001 09:59:00 +0000 (09:59 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/include/ecpgtype.h

index 1ae8f7a9d4455505645a690989e807ae90396d39..4d8f038ce26af298d4b10d66b6bb1eca97715a3b 100644 (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.
index e097debeed618646de3a80db9c8549fe2ca66530..b061d7d6c20bbfe6dee4fe6f2cb081c7d82b963d 100644 (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
 }