aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2001-10-08 08:08:42 +0000
committerMichael Meskes <meskes@postgresql.org>2001-10-08 08:08:42 +0000
commit6d5be886bc15257cc415729deb4edd1147bfa3eb (patch)
treeea321cc75d48b0086e7b29f89e8b7f385668b2e1
parentbbea129681a4537c7a4666482f0e58ce06b6a2c5 (diff)
downloadpostgresql-6d5be886bc15257cc415729deb4edd1147bfa3eb.tar.gz
postgresql-6d5be886bc15257cc415729deb4edd1147bfa3eb.zip
Fix include file so library is binary compatible again.
-rw-r--r--src/interfaces/ecpg/ChangeLog5
-rw-r--r--src/interfaces/ecpg/include/ecpgtype.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog
index 98619547d34..40794ca63d0 100644
--- a/src/interfaces/ecpg/ChangeLog
+++ b/src/interfaces/ecpg/ChangeLog
@@ -1120,5 +1120,10 @@ Fri Okt 5 08:37:01 CEST 2001
Fri Okt 5 19:33:46 CEST 2001
- Make sure every call to ECPGraise is logged.
+
+Mon Okt 8 10:10:23 CEST 2001
+
+ - Fix include file so library is binary compatible again.
+
- Set ecpg version to 2.9.0.
- Set library version to 3.3.0.
diff --git a/src/interfaces/ecpg/include/ecpgtype.h b/src/interfaces/ecpg/include/ecpgtype.h
index c8410352dd5..3e6875cf1d1 100644
--- a/src/interfaces/ecpg/include/ecpgtype.h
+++ b/src/interfaces/ecpg/include/ecpgtype.h
@@ -68,8 +68,8 @@ extern "C"
ECPGd_ret_octet,
ECPGd_scale,
ECPGd_type,
- ECPGd_cardinality,
- ECPGd_EODT /* End of descriptor types. */
+ ECPGd_EODT, /* End of descriptor types. */
+ ECPGd_cardinality
};
#define IS_SIMPLE_TYPE(type) (((type) >= ECPGt_char && (type) <= ECPGt_varchar2) || ((type)>=ECPGt_long_long && (type) <= ECPGt_unsigned_long_long))