update pgtypes.h.

Signed-off-by: Lain <linkc@vastdata.com.cn>
This commit is contained in:
Lain
2023-02-02 10:19:34 +00:00
committed by Gitee
parent 365b228da3
commit 595ad54a23

View File

@ -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))