From 595ad54a23a73ebde49165814c77bb73f3d8b675 Mon Sep 17 00:00:00 2001 From: Lain Date: Thu, 2 Feb 2023 10:19:34 +0000 Subject: [PATCH] update pgtypes.h. Signed-off-by: Lain --- pgtypes.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pgtypes.h b/pgtypes.h index 0df4aa3..8360014 100644 --- a/pgtypes.h +++ b/pgtypes.h @@ -66,6 +66,14 @@ #define PG_TYPE_NVARCHAR2 3969 #define PG_TYPE_INT1 5545 #define PG_TYPE_SMALLDATETIME 9003 + +/* binary same as bytea */ +#define PG_TYPE_RAW 86 +#define PG_TYPE_BLOB 88 +#define PG_TYPE_MYSQL_BINARY 9779 +/* oracle date */ +#define PG_TYPE_ORADATE 9040 + #define INTERNAL_ASIS_TYPE (-9999) #define TYPE_MAY_BE_ARRAY(type) ((type) == PG_TYPE_XMLARRAY || ((type) >= 1000 && (type) <= 1041))