ob_obj_type.h 53.2 KB
Newer Older
O
oceanbase-admin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/**
 * Copyright (c) 2021 OceanBase
 * OceanBase CE is licensed under Mulan PubL v2.
 * You can use this software according to the terms and conditions of the Mulan PubL v2.
 * You may obtain a copy of Mulan PubL v2 at:
 *          http://license.coscl.org.cn/MulanPubL-2.0
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PubL v2 for more details.
 */

#ifndef OCEANBASE_COMMON_OB_OBJECT_TYPE_H_
#define OCEANBASE_COMMON_OB_OBJECT_TYPE_H_
#include "lib/utility/ob_print_utils.h"
#include "lib/charset/ob_charset.h"
N
nroskill 已提交
17

O
oceanbase-admin 已提交
18 19 20 21
namespace oceanbase {
namespace common {
class ObObjMeta;
class ObAccuracy;
N
nroskill 已提交
22 23
template <class T>
class ObIArray;
O
oceanbase-admin 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232

// we can append new type only, do NOT delete nor change order,
// modify ObObjTypeClass and ob_obj_type_class when append new object type.
enum ObObjType {
  ObNullType = 0,

  ObTinyIntType = 1,    // int8, aka mysql boolean type
  ObSmallIntType = 2,   // int16
  ObMediumIntType = 3,  // int24
  ObInt32Type = 4,      // int32
  ObIntType = 5,        // int64, aka bigint

  ObUTinyIntType = 6,    // uint8
  ObUSmallIntType = 7,   // uint16
  ObUMediumIntType = 8,  // uint24
  ObUInt32Type = 9,      // uint32
  ObUInt64Type = 10,     // uint64

  ObFloatType = 11,   // single-precision floating point
  ObDoubleType = 12,  // double-precision floating point

  ObUFloatType = 13,   // unsigned single-precision floating point
  ObUDoubleType = 14,  // unsigned double-precision floating point

  ObNumberType = 15,  // aka decimal/numeric
  ObUNumberType = 16,

  ObDateTimeType = 17,
  ObTimestampType = 18,
  ObDateType = 19,
  ObTimeType = 20,
  ObYearType = 21,

  ObVarcharType = 22,  // charset: utf8mb4 or binary
  ObCharType = 23,     // charset: utf8mb4 or binary

  ObHexStringType = 24,  // hexadecimal literal, e.g. X'42', 0x42, b'1001', 0b1001

  ObExtendType = 25,   // Min, Max, NOP etc.
  ObUnknownType = 26,  // For question mark(?) in prepared statement, no need to serialize
  // @note future new types to be defined here !!!
  ObTinyTextType = 27,
  ObTextType = 28,
  ObMediumTextType = 29,
  ObLongTextType = 30,

  ObBitType = 31,
  ObEnumType = 32,
  ObSetType = 33,
  ObEnumInnerType = 34,
  ObSetInnerType = 35,

  ObTimestampTZType = 36,    // timestamp with time zone for oracle
  ObTimestampLTZType = 37,   // timestamp with local time zone for oracle
  ObTimestampNanoType = 38,  // timestamp nanosecond for oracle
  ObRawType = 39,            // raw type for oracle
  ObIntervalYMType = 40,     // interval year to month
  ObIntervalDSType = 41,     // interval day to second
  ObNumberFloatType = 42,    // oracle float, subtype of NUMBER
  ObNVarchar2Type = 43,      // nvarchar2
  ObNCharType = 44,          // nchar
  ObURowIDType = 45,         // UROWID
  ObLobType = 46,            // Oracle Lob
  ObMaxType                  // invalid type, or count of obj type
};

// Oracle type
enum ObObjOType {
  ObONotSupport = 0,
  ObONullType = 1,
  ObOSmallIntType = 2,
  ObOIntType = 3,
  ObONumberFloatType = 4,  // float
  ObOBinFloatType = 5,     // binary float
  ObOBinDoubleType = 6,    // binary double
  ObONumberType = 7,
  ObOCharType = 8,
  ObOVarcharType = 9,
  ObODateType = 10,
  ObOTimestampTZType = 11,   // timestamp with time zone
  ObOTimestampLTZType = 12,  // timestamp with local time zone
  ObOTimestampType = 13,     // timestamp
  ObOIntervalYMType = 14,    // TODO
  ObOIntervalDSType = 15,    // TODO
  ObOLobType = 16,           // blob
  ObOExtendType = 17,        // not sure
  ObOUnknownType = 18,       // not sure
  ObORawType = 19,
  ObONVarchar2Type = 20,
  ObONCharType = 21,
  ObOURowIDType = 22,
  ObOLobLocatorType = 23,
  ObOMaxType  // invalid type, or count of ObObjOType
};

// for cast/cmp map
static ObObjOType OBJ_TYPE_TO_O_TYPE[ObMaxType + 1] = {
    ObONullType,
    ObOSmallIntType,  // int8, aka mysql boolean type
    ObOSmallIntType,  // int16
    ObONotSupport,    // int24
    ObOIntType,       // int32
    ObOIntType,       // int64, aka bigint
    ObONotSupport,    // uint8
    ObONotSupport,    // uint16
    ObONotSupport,    // uint24
    ObONotSupport,    // uint32
    ObONotSupport,    // uint64

    ObOBinFloatType,   // single-precision floating point
    ObOBinDoubleType,  // double-precision floating point

    ObONotSupport,  // unsigned single-precision floating point
    ObONotSupport,  // unsigned double-precision floating point

    ObONumberType,  // aka decimal/numeric
    ObONotSupport,  // ObUNumberType

    ObODateType,    // ObDateTimeType
    ObONotSupport,  // ObTimestampType
    ObODateType,    // ObDateType
    ObONotSupport,  // ObTimeType
    ObONotSupport,  // ObYearType, //TODO

    ObOVarcharType,  // ObVarcharType=22,
    ObOCharType,     // ObCharType=23,     // charset: utf8mb4 or binary

    ObONotSupport,  // ObHexStringType=24, //TODO // hexadecimal literal, e.g. X'42', 0x42, b'1001', 0b1001

    ObOExtendType,   // ObExtendType=25,  //?TODO               // Min, Max, NOP etc.
    ObOUnknownType,  // ObUnknownType=26,  //?TODO             // For question mark(?) in prepared statement, no need to
                     // serialize
    ObONotSupport,   // ObTinyTextType = 27,
    ObONotSupport,   // ObTextType = 28,
    ObONotSupport,   // ObMediumTextType = 29,
    ObOLobType,      // ObLongTextType = 30,
    ObONotSupport,   // ObBitType=31,
    ObONotSupport,   // ObEnumType=32,
    ObONotSupport,   // ObSetType=33,
    ObONotSupport,   // ObEnumInnerType=34,
    ObONotSupport,   // ObSetInnerType=35,
    ObOTimestampTZType,   // ObTimeStampTZType=36,
    ObOTimestampLTZType,  // ObTimeStampLTZType=37,
    ObOTimestampType,     // ObTimeStamp=38,
    ObORawType,           // ObRawType=39,
    ObOIntervalYMType,    // ObIntervalYMType=40,
    ObOIntervalDSType,    // ObIntervalDSType=41,
    ObONumberFloatType,   // ObNumberFloatType=42,
    ObONVarchar2Type,     // ObNVarchar2=43,
    ObONCharType,         // ObNChar=44,
    ObOURowIDType,        // ObURowID=45
    ObOLobLocatorType,    // ObLobType = 46,
    ObONotSupport         // ObMaxType,
};

enum ObObjTypeClass {
  ObNullTC = 0,      // null
  ObIntTC = 1,       // int8, int16, int24, int32, int64.
  ObUIntTC = 2,      // uint8, uint16, uint24, uint32, uint64.
  ObFloatTC = 3,     // float, ufloat.
  ObDoubleTC = 4,    // double, udouble.
  ObNumberTC = 5,    // number, unumber.
  ObDateTimeTC = 6,  // datetime, timestamp.
  ObDateTC = 7,      // date
  ObTimeTC = 8,      // time
  ObYearTC = 9,      // year
  ObStringTC = 10,   // varchar, char, varbinary, binary.
  ObExtendTC = 11,   // extend
  ObUnknownTC = 12,  // unknown
  ObTextTC = 13,     // TinyText,MediumText, Text ,LongText, TinyBLOB,MediumBLOB, BLOB ,LongBLOB
  ObBitTC = 14,      // bit
  ObEnumSetTC = 15,  // enum, set
  ObEnumSetInnerTC = 16,
  ObOTimestampTC = 17,  // timestamp with time zone
  ObRawTC = 18,         // raw
  ObIntervalTC = 19,    // oracle interval type class include interval year to month and interval day to second
  ObRowIDTC = 20,       // oracle rowid typeclass, includes urowid and rowid
  ObLobTC = 21,         // oracle lob typeclass
  ObMaxTC,
  // invalid type classes are below, only used as the result of XXXX_type_promotion()
  // to indicate that the two obj can't be promoted to the same type.
  ObIntUintTC,
  ObLeftTypeTC,
  ObRightTypeTC,
  ObActualMaxTC
};

// Define obj type to obj type class mapping pairs.
#define OBJ_TYPE_TC_PAIRS                                                                                             \
  (ObNullType, ObNullTC), (ObTinyIntType, ObIntTC), (ObSmallIntType, ObIntTC), (ObMediumIntType, ObIntTC),            \
      (ObInt32Type, ObIntTC), (ObIntType, ObIntTC), (ObUTinyIntType, ObUIntTC), (ObUSmallIntType, ObUIntTC),          \
      (ObUMediumIntType, ObUIntTC), (ObUInt32Type, ObUIntTC), (ObUInt64Type, ObUIntTC), (ObFloatType, ObFloatTC),     \
      (ObDoubleType, ObDoubleTC), (ObUFloatType, ObFloatTC), (ObUDoubleType, ObDoubleTC), (ObNumberType, ObNumberTC), \
      (ObUNumberType, ObNumberTC), (ObDateTimeType, ObDateTimeTC), (ObTimestampType, ObDateTimeTC),                   \
      (ObDateType, ObDateTC), (ObTimeType, ObTimeTC), (ObYearType, ObYearTC), (ObVarcharType, ObStringTC),            \
      (ObCharType, ObStringTC), (ObHexStringType, ObStringTC), (ObExtendType, ObExtendTC),                            \
      (ObUnknownType, ObUnknownTC), (ObTinyTextType, ObTextTC), (ObTextType, ObTextTC), (ObMediumTextType, ObTextTC), \
      (ObLongTextType, ObTextTC), (ObBitType, ObBitTC), (ObEnumType, ObEnumSetTC), (ObSetType, ObEnumSetTC),          \
      (ObEnumInnerType, ObEnumSetInnerTC), (ObSetInnerType, ObEnumSetInnerTC), (ObTimestampTZType, ObOTimestampTC),   \
      (ObTimestampLTZType, ObOTimestampTC), (ObTimestampNanoType, ObOTimestampTC), (ObRawType, ObRawTC),              \
      (ObIntervalYMType, ObIntervalTC), (ObIntervalDSType, ObIntervalTC), (ObNumberFloatType, ObNumberTC),            \
      (ObNVarchar2Type, ObStringTC), (ObNCharType, ObStringTC), (ObURowIDType, ObRowIDTC), (ObLobType, ObLobTC)

#define SELECT_SECOND(x, y) y
#define SELECT_TC(arg) SELECT_SECOND arg

const ObObjTypeClass OBJ_TYPE_TO_CLASS[ObMaxType] = {LST_DO(SELECT_TC, (, ), OBJ_TYPE_TC_PAIRS)};

#undef SELECT_TC
#undef SELECT_SECOND

const ObObjType OBJ_DEFAULT_TYPE[ObActualMaxTC] = {
    ObNullType,           // null
    ObIntType,            // int
    ObUInt64Type,         // uint
    ObFloatType,          // float
    ObDoubleType,         // double
    ObNumberType,         // number
    ObDateTimeType,       // datetime
    ObDateType,           // date
    ObTimeType,           // time
    ObYearType,           // year
    ObVarcharType,        // varchar
    ObExtendType,         // extend
    ObUnknownType,        // unknown
    ObLongTextType,       // text
    ObBitType,            // bit
    ObUInt64Type,         // enumset
    ObMaxType,            // enumsetInner
    ObTimestampNanoType,  // timestamp nano
    ObRawType,            // raw
    ObMaxType,            // no default type for interval type class
    ObMaxType,            // no default type for rowid type class
    ObLobType,            // lob
    ObMaxType,            // maxtype
    ObUInt64Type,         // int&uint
    ObMaxType,            // lefttype
    ObMaxType,            // righttype
};

// plz check if OB_OBJ_IMPLICIT_CAST_DIRECTION_FOR_ORACLE is also need to be modified after you modify this one
static ObObjTypeClass OBJ_O_TYPE_TO_CLASS[ObOMaxType + 1] = {ObMaxTC,  // ObONotSupport = 1
    ObNullTC,                                                          // ObONullType = 2,
    ObIntTC,                                                           // ObOSmallIntType=3,
    ObIntTC,                                                           // ObOIntType=4,
    ObNumberTC,                                                        // ObOBinFloatType=5,          //float
    ObFloatTC,                                                         // ObOBinFloatType=6,           //binary float
    ObDoubleTC,                                                        // ObOBinDoubleType=7,          //binary double
    ObNumberTC,                                                        // ObONumbertype=8,
    ObStringTC,                                                        // ObOCharType=9,
    ObStringTC,                                                        // ObOVarcharType=10,
    ObDateTimeTC,                                                      // ObODateType11,
    ObOTimestampTC,                                                    // ObOTimestampTZType=12,
    ObOTimestampTC,                                                    // ObOTimestampLTZType=13,
    ObOTimestampTC,                                                    // ObOTimestampType=14,
    ObIntervalTC,                                                      // ObOIntervalYMType=15,
    ObIntervalTC,                                                      // ObOIntervalDSType=16,
    ObTextTC,                                                          // ObOTextType=17,
    ObExtendTC,                                                        // ObOExtendType=18,       //not sure
    ObUnknownTC,                                                       // ObOUnknownType=19,      //not sure
    ObRawTC,                                                           // ObORawType
    ObStringTC,                                                        // ObONVarchar2
    ObStringTC,                                                        // ObONChar
    ObRowIDTC,                                                         // ObOURowID
    ObLobTC,                                                           // ObOLobLocator
    ObMaxTC};

enum ImplicitCastDirection {
  IC_NOT_SUPPORT = -1,
  IC_NO_CAST = 0,
  IC_A_TO_B = 1,
  IC_B_TO_A = 2,
  IC_TO_MIDDLE_TYPE = 3,
  IC_A_TO_C = 4,
  IC_B_TO_C = 5,
};

/*
 * Datetime > double > float > number > int/smallint > char/varchar > others
 */
static ImplicitCastDirection
    OB_OBJ_IMPLICIT_CAST_DIRECTION_FOR_ORACLE[ObObjOType::ObOMaxType + 1][ObObjOType::ObOMaxType + 1] = {
        /*A->B*/
        {
            /*ObONotSupport->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NOT_SUPPORT, /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_NOT_SUPPORT, /*Char*/
            IC_NOT_SUPPORT, /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*Null->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NO_CAST,     /*SmallInt*/
            IC_NO_CAST,     /*Int*/
            IC_NO_CAST,     /*Float*/
            IC_NO_CAST,     /*BinaryFloat*/
            IC_NO_CAST,     /*BinaryDouble*/
            IC_NO_CAST,     /*Number*/
            IC_NO_CAST,     /*Char*/
            IC_NO_CAST,     /*Varchar*/
            IC_NO_CAST,     /*Date*/
            IC_NO_CAST,     /*TimestampTZ*/
            IC_NO_CAST,     /*TimestampLTZ*/
            IC_NO_CAST,     /*Timestamp*/
            IC_NO_CAST,     /*IntervalYM*/
            IC_NO_CAST,     /*IntervalDS*/
            IC_NO_CAST,     /*Lob*/
            IC_NO_CAST,     /*Extend*/
            IC_NO_CAST,     /*Unknown*/
            IC_NO_CAST,     /*Raw*/
            IC_NO_CAST,     /*NVarchar2*/
            IC_NO_CAST,     /*NChar*/
            IC_NO_CAST,     /*URowID*/
            IC_NO_CAST,     /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*SmallInt->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_NO_CAST,        /*SmallInt*/
            IC_NO_CAST,        /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_NO_CAST,        // IC_A_TO_B,  /*Number*/
            IC_TO_MIDDLE_TYPE, /*Char*/
            IC_TO_MIDDLE_TYPE, /*Varchar*/
            IC_NOT_SUPPORT,    /*Date*/
            IC_NOT_SUPPORT,    /*TimestampTZ*/
            IC_NOT_SUPPORT,    /*TimestampLTZ*/
            IC_NOT_SUPPORT,    /*Timestamp*/
            IC_NOT_SUPPORT,    /*IntervalYM*/
            IC_NOT_SUPPORT,    /*IntervalDS*/
            IC_TO_MIDDLE_TYPE, /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_NOT_SUPPORT,    /*Raw*/
            IC_NOT_SUPPORT,    /*NVarchar2*/
            IC_NOT_SUPPORT,    /*NChar*/
            IC_NOT_SUPPORT,    /*URowID*/
            IC_TO_MIDDLE_TYPE, /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*Int->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_NO_CAST,        /*SmallInt*/
            IC_NO_CAST,        /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_NO_CAST,        // IC_A_TO_B,  /*Number*/
            IC_TO_MIDDLE_TYPE, /*Char*/
            IC_TO_MIDDLE_TYPE, /*Varchar*/
            IC_NOT_SUPPORT,    /*Date*/
            IC_NOT_SUPPORT,    /*TimestampTZ*/
            IC_NOT_SUPPORT,    /*TimestampLTZ*/
            IC_NOT_SUPPORT,    /*Timestamp*/
            IC_NOT_SUPPORT,    /*IntervalYM*/
            IC_NOT_SUPPORT,    /*IntervalDS*/
            IC_TO_MIDDLE_TYPE, /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_NOT_SUPPORT,    /*Raw*/
            IC_NOT_SUPPORT,    /*NVarchar2*/
            IC_NOT_SUPPORT,    /*NChar*/
            IC_NOT_SUPPORT,    /*URowID*/
            IC_TO_MIDDLE_TYPE, /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*Float->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_NO_CAST,        /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_TO_MIDDLE_TYPE, /*Char*/
            IC_TO_MIDDLE_TYPE, /*Varchar*/
            IC_NOT_SUPPORT,    /*Date*/
            IC_NOT_SUPPORT,    /*TimestampTZ*/
            IC_NOT_SUPPORT,    /*TimestampLTZ*/
            IC_NOT_SUPPORT,    /*Timestamp*/
            IC_NOT_SUPPORT,    /*IntervalYM*/
            IC_NOT_SUPPORT,    /*IntervalDS*/
            IC_TO_MIDDLE_TYPE, /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_NOT_SUPPORT,    /*Raw*/
            IC_TO_MIDDLE_TYPE, /*NVarchar2*/
            IC_TO_MIDDLE_TYPE, /*NChar*/
            IC_NOT_SUPPORT,    /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*BinaryFloat->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_B_TO_A,      /*SmallInt*/
            IC_B_TO_A,      /*Int*/
            IC_B_TO_A,      /*Float*/
            IC_NO_CAST,     /*BinaryFloat*/
            IC_A_TO_B,      /*BinaryDouble*/
            IC_B_TO_A,      /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*BinaryDouble->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_B_TO_A,      /*SmallInt*/
            IC_B_TO_A,      /*Int*/
            IC_B_TO_A,      /*Float*/
            IC_B_TO_A,      /*BinaryFloat*/
            IC_NO_CAST,     /*BinaryDouble*/
            IC_B_TO_A,      /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*Number->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NO_CAST,     // IC_B_TO_A,  /*SmallInt*/
            IC_NO_CAST,     // IC_B_TO_A,  /*Int*/
            IC_B_TO_A,      /*Float*/
            IC_A_TO_B,      /*BinaryFloat*/
            IC_A_TO_B,      /*BinaryDouble*/
            IC_NO_CAST,     /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*Char->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_NO_CAST,        /*Char*/
            IC_NO_CAST,        /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_B_TO_A,         /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_B_TO_A,         /*Raw*/
            IC_A_TO_B,         /*NVarchar2*/
            IC_A_TO_B,         /*NChar*/
            IC_A_TO_B,         /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*Varchar->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_NO_CAST,        /*Char*/
            IC_NO_CAST,        /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_B_TO_A,         /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_B_TO_A,         /*Raw*/
            IC_A_TO_B,         /*NVarchar2*/
            IC_A_TO_C,         /*NChar*/
            IC_A_TO_B,         /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*Date->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NO_CAST,     /*Date*/
            IC_A_TO_B,      /*TimestampTZ*/
            IC_A_TO_B,      /*TimestampLTZ*/
            IC_A_TO_B,      /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*TimestampTZ->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_B_TO_A,      /*Date*/
            IC_NO_CAST,     /*TimestampTZ*/
            IC_B_TO_A,
            /*TimestampLTZ*/  // oracle called internal_function(TimestampLTZ) when cmp with TimestampTZ
            IC_B_TO_A,        /*Timestamp*/
            IC_NOT_SUPPORT,   /*IntervalYM*/
            IC_NOT_SUPPORT,   /*IntervalDS*/
            IC_B_TO_A,        /*Lob*/
            IC_NOT_SUPPORT,   /*Extend*/
            IC_NOT_SUPPORT,   /*Unknown*/
            IC_NOT_SUPPORT,   /*Raw*/
            IC_B_TO_A,        /*NVarchar2*/
            IC_B_TO_A,        /*NChar*/
            IC_NOT_SUPPORT,   /*URowID*/
            IC_B_TO_A,        /*LobLocator*/
            IC_NOT_SUPPORT,   /*ObOMaxType*/
        },
        {
            /*TimestampLTZ->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_B_TO_A,      /*Date*/
            IC_A_TO_B,
            /*TimestampTZ*/  // oracle called internal_function(TimestampLTZ) when cmp with TimestampTZ
            IC_NO_CAST,      /*TimestampLTZ*/
            IC_B_TO_A,       /*Timestamp*/
            IC_NOT_SUPPORT,  /*IntervalYM*/
            IC_NOT_SUPPORT,  /*IntervalDS*/
            IC_B_TO_A,       /*Lob*/
            IC_NOT_SUPPORT,  /*Extend*/
            IC_NOT_SUPPORT,  /*Unknown*/
            IC_NOT_SUPPORT,  /*Raw*/
            IC_B_TO_A,       /*NVarchar2*/
            IC_B_TO_A,       /*NChar*/
            IC_NOT_SUPPORT,  /*URowID*/
            IC_B_TO_A,       /*LobLocator*/
            IC_NOT_SUPPORT,  /*ObOMaxType*/
        },
        {
            /*Timestamp->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_B_TO_A,      /*Date*/
            IC_A_TO_B,      /*TimestampTZ*/
            IC_A_TO_B,      /*TimestampLTZ*/
            IC_NO_CAST,     /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*ObRowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*IntervalYM->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NO_CAST,     /*Date*/
            IC_NO_CAST,     /*TimestampTZ*/
            IC_NO_CAST,     /*TimestampLTZ*/
            IC_NO_CAST,     /*Timestamp*/
            IC_NO_CAST,     /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*ObRowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*IntervalDS->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NO_CAST,     /*Date*/
            IC_NO_CAST,     /*TimestampTZ*/
            IC_NO_CAST,     /*TimestampLTZ*/
            IC_NO_CAST,     /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NO_CAST,     /*IntervalDS*/
            IC_B_TO_A,      /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NOT_SUPPORT, /*ObRowID*/
            IC_B_TO_A,      /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*Lob->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_A_TO_B,         /*Char*/
            IC_A_TO_B,         /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_NO_CAST,        /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_NOT_SUPPORT,    /*Raw*/
            IC_B_TO_A,         /*NVarchar2*/
            IC_B_TO_A,         /*NChar*/
            IC_NOT_SUPPORT,    /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*Extend->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_NOT_SUPPORT, /*Char*/
            IC_NOT_SUPPORT, /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NO_CAST,     /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_NOT_SUPPORT, /*NVarchar2*/
            IC_NOT_SUPPORT, /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*UnKnown->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_NOT_SUPPORT, /*Char*/
            IC_NOT_SUPPORT, /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NO_CAST,     /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_NOT_SUPPORT, /*NVarchar2*/
            IC_NOT_SUPPORT, /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*Raw->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NO_CAST,     /*SmallInt*/
            IC_NO_CAST,     /*Int*/
            IC_NO_CAST,     /*Float*/
            IC_NO_CAST,     /*BinaryFloat*/
            IC_NO_CAST,     /*BinaryDouble*/
            IC_NO_CAST,     /*Number*/
            IC_A_TO_B,      /*Char*/
            IC_A_TO_B,      /*Varchar*/
            IC_NO_CAST,     /*Date*/
            IC_NO_CAST,     /*TimestampTZ*/
            IC_NO_CAST,     /*TimestampLTZ*/
            IC_NO_CAST,     /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYear*/
            IC_NOT_SUPPORT, /*IntervalDay*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NO_CAST,     /*Extend*/
            IC_NO_CAST,     /*Unknown*/
            IC_NO_CAST,     /*Raw*/
            IC_A_TO_B,      /*NVarchar2*/
            IC_A_TO_B,      /*NChar*/
            IC_NOT_SUPPORT, /*URowID*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*NVarchar->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_B_TO_A,         /*Char*/
            IC_B_TO_A,         /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_B_TO_A,         /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_B_TO_A,         /*Raw*/
            IC_NO_CAST,        /*NVarchar2*/
            IC_NO_CAST,        /*NChar*/
            IC_A_TO_B,         /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*NChar->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_TO_MIDDLE_TYPE, /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_B_TO_A,         /*Char*/
            IC_B_TO_C,         /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_B_TO_A,         /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_B_TO_A,         /*Raw*/
            IC_NO_CAST,        /*NVarchar2*/
            IC_NO_CAST,        /*NChar*/
            IC_A_TO_B,         /*URowID*/
            IC_B_TO_A,         /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*URowID->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NO_CAST,     /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_B_TO_A,      /*Char*/
            IC_B_TO_A,      /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_B_TO_A,      /*NVarchar2*/
            IC_B_TO_A,      /*NChar*/
            IC_NO_CAST,     /*URowID*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
        {
            /*LobLocator->XXX*/
            IC_NOT_SUPPORT,    /*ObONotSupport*/
            IC_NO_CAST,        /*Null*/
            IC_TO_MIDDLE_TYPE, /*SmallInt*/
            IC_TO_MIDDLE_TYPE, /*Int*/
            IC_A_TO_B,         /*Float*/
            IC_A_TO_B,         /*BinaryFloat*/
            IC_A_TO_B,         /*BinaryDouble*/
            IC_A_TO_B,         /*Number*/
            IC_A_TO_B,         /*Char*/
            IC_A_TO_B,         /*Varchar*/
            IC_A_TO_B,         /*Date*/
            IC_A_TO_B,         /*TimestampTZ*/
            IC_A_TO_B,         /*TimestampLTZ*/
            IC_A_TO_B,         /*Timestamp*/
            IC_A_TO_B,         /*IntervalYM*/
            IC_A_TO_B,         /*IntervalDS*/
            IC_A_TO_B,         /*Lob*/
            IC_NOT_SUPPORT,    /*Extend*/
            IC_NOT_SUPPORT,    /*Unknown*/
            IC_NOT_SUPPORT,    /*Raw*/
            IC_A_TO_B,         /*NVarchar2*/
            IC_A_TO_B,         /*NChar*/
            IC_NOT_SUPPORT,    /*URowID*/
            IC_NO_CAST,        /*LobLocator*/
            IC_NOT_SUPPORT,    /*ObOMaxType*/
        },
        {
            /*ObOMaxType->XXX*/
            IC_NOT_SUPPORT, /*ObONotSupport*/
            IC_NOT_SUPPORT, /*Null*/
            IC_NOT_SUPPORT, /*SmallInt*/
            IC_NOT_SUPPORT, /*Int*/
            IC_NOT_SUPPORT, /*Float*/
            IC_NOT_SUPPORT, /*BinaryFloat*/
            IC_NOT_SUPPORT, /*BinaryDouble*/
            IC_NOT_SUPPORT, /*Number*/
            IC_NOT_SUPPORT, /*Char*/
            IC_NOT_SUPPORT, /*Varchar*/
            IC_NOT_SUPPORT, /*Date*/
            IC_NOT_SUPPORT, /*TimestampTZ*/
            IC_NOT_SUPPORT, /*TimestampLTZ*/
            IC_NOT_SUPPORT, /*Timestamp*/
            IC_NOT_SUPPORT, /*IntervalYM*/
            IC_NOT_SUPPORT, /*IntervalDS*/
            IC_NOT_SUPPORT, /*Lob*/
            IC_NOT_SUPPORT, /*Extend*/
            IC_NOT_SUPPORT, /*Unknown*/
            IC_NOT_SUPPORT, /*Raw*/
            IC_NOT_SUPPORT, /*LobLocator*/
            IC_NOT_SUPPORT, /*ObOMaxType*/
        },
};

OB_INLINE bool is_valid_obj_type(const ObObjType type)
{
  return ObNullType <= type && type < ObMaxType;
}

OB_INLINE bool is_valid_oracle_type(const ObObjOType otype)
{
  // not include ObONotSupport
  return ObONotSupport < otype && otype < ObOMaxType;
}

OB_INLINE ObObjOType ob_obj_type_to_oracle_type(const ObObjType type)
{
  return type < ObMaxType ? OBJ_TYPE_TO_O_TYPE[type] : ObOMaxType;
}

OB_INLINE ObObjTypeClass ob_oracle_type_class(const ObObjType type)
{
  return type < ObMaxType ? OBJ_O_TYPE_TO_CLASS[OBJ_TYPE_TO_O_TYPE[type]] : ObMaxTC;
}

OB_INLINE ObObjTypeClass ob_oracle_type_class(const ObObjOType oType)
{
  return oType < ObOMaxType ? OBJ_O_TYPE_TO_CLASS[oType] : ObMaxTC;
}

OB_INLINE ImplicitCastDirection ob_oracle_implict_cast_direction(const ObObjOType aType, const ObObjOType bType)
{
  if (aType < ObOMaxType && bType < ObOMaxType) {
    return OB_OBJ_IMPLICIT_CAST_DIRECTION_FOR_ORACLE[aType][bType];
  } else {
    return ImplicitCastDirection::IC_NOT_SUPPORT;
  }
}

OB_INLINE ObObjTypeClass ob_obj_type_class(const ObObjType type)
{
  return OB_LIKELY(type < ObMaxType) ? OBJ_TYPE_TO_CLASS[type] : ObMaxTC;
}

OB_INLINE ObObjType ob_obj_default_type(const ObObjTypeClass tc)
{
  return OB_LIKELY(tc < ObActualMaxTC) ? OBJ_DEFAULT_TYPE[tc] : ObMaxType;
}

extern const int64_t INT_MIN_VAL[ObMaxType];
extern const int64_t INT_MAX_VAL[ObMaxType];
extern const uint64_t UINT_MAX_VAL[ObMaxType];
extern const double REAL_MIN_VAL[ObMaxType];
extern const double REAL_MAX_VAL[ObMaxType];

OB_INLINE bool ob_is_castable_type_class(ObObjTypeClass tc)
{
  return (ObIntTC <= tc && tc <= ObStringTC) || ObLeftTypeTC == tc || ObRightTypeTC == tc || ObBitTC == tc ||
         ObEnumSetTC == tc || ObEnumSetInnerTC == tc || ObTextTC == tc || ObOTimestampTC == tc || ObRawTC == tc ||
         ObIntervalTC == tc || ObRowIDTC == tc || ObLobTC == tc;
}

// used for arithmetic
OB_INLINE bool ob_is_int_uint(ObObjTypeClass left_tc, ObObjTypeClass right_tc)
{
  return (ObIntTC == left_tc && ObUIntTC == right_tc) || (ObIntTC == right_tc && ObUIntTC == left_tc);
}

// print obj type string
const char* ob_obj_type_str(ObObjType type);
const char* ob_sql_type_str(ObObjType type);

// such as "double(10,7)". with accuracy
int ob_sql_type_str(char* buff, int64_t buff_length, int64_t& pos, ObObjType type, int64_t length, int64_t precision,
    int64_t scale, ObCollationType coll_type);
int ob_sql_type_str(const common::ObObjMeta& obj_meta, const common::ObAccuracy& accuracy,
    const common::ObIArray<ObString>& type_info, const int16_t default_length_semantics, char* buff,
    int64_t buff_length, int64_t& pos);

// such as "double". without any accuracy.
int ob_sql_type_str(char* buff, int64_t buff_length, ObObjType type, ObCollationType coll_type);

// print obj type class string
const char* ob_obj_tc_str(ObObjTypeClass tc);
const char* ob_sql_tc_str(ObObjTypeClass tc);

// get obj type size for fixed length type
int32_t ob_obj_type_size(ObObjType type);

inline bool ob_is_valid_obj_type(ObObjType type)
{
  return ObNullType <= type && type < ObMaxType;
}
inline bool ob_is_invalid_obj_type(ObObjType type)
{
  return !ob_is_valid_obj_type(type);
}
inline bool ob_is_valid_obj_tc(ObObjTypeClass tc)
{
  return ObNullTC <= tc && tc < ObMaxTC;
}
inline bool ob_is_invalid_obj_tc(ObObjTypeClass tc)
{
  return !ob_is_valid_obj_tc(tc);
}

inline bool ob_is_valid_obj_o_type(ObObjType type)
{
  return ObNullType <= type && type < ObMaxType ? (OBJ_TYPE_TO_O_TYPE[type] != ObONotSupport) : false;
}
inline bool ob_is_invalid_obj_o_type(ObObjType type)
{
  return !ob_is_valid_obj_o_type(type);
}
inline bool ob_is_valid_obj_o_tc(ObObjTypeClass tc)
{
  return ObNullTC <= tc && tc < ObMaxTC;
}
inline bool ob_is_invalid_obj_o_tc(ObObjTypeClass tc)
{
  return !ob_is_valid_obj_tc(tc);
}
inline bool ob_is_numeric_tc(ObObjTypeClass tc)
{
  return (tc >= ObIntTC && tc <= ObNumberTC) || tc == ObBitTC;
}

inline bool ob_is_int_tc(ObObjType type)
{
  return ObIntTC == ob_obj_type_class(type);
}
inline bool ob_is_uint_tc(ObObjType type)
{
  return ObUIntTC == ob_obj_type_class(type);
}
inline bool ob_is_float_tc(ObObjType type)
{
  return ObFloatTC == ob_obj_type_class(type);
}
inline bool ob_is_double_tc(ObObjType type)
{
  return ObDoubleTC == ob_obj_type_class(type);
}
inline bool ob_is_number_tc(ObObjType type)
{
  return ObNumberTC == ob_obj_type_class(type);
}
inline bool ob_is_datetime_tc(ObObjType type)
{
  return ObDateTimeTC == ob_obj_type_class(type);
}
inline bool ob_is_date_tc(ObObjType type)
{
  return ObDateTC == ob_obj_type_class(type);
}
inline bool ob_is_otimestampe_tc(ObObjType type)
{
  return ObOTimestampTC == ob_obj_type_class(type);
}
inline bool ob_is_time_tc(ObObjType type)
{
  return ObTimeTC == ob_obj_type_class(type);
}
inline bool ob_is_year_tc(ObObjType type)
{
  return ObYearTC == ob_obj_type_class(type);
}
inline bool ob_is_string_tc(ObObjType type)
{
  return ObStringTC == ob_obj_type_class(type);
}
inline bool ob_is_text_tc(ObObjType type)
{
  return ObTextTC == ob_obj_type_class(type);
}
inline bool ob_is_bit_tc(ObObjType type)
{
  return ObBitTC == ob_obj_type_class(type);
}
inline bool ob_is_raw_tc(ObObjType type)
{
  return ObRawTC == ob_obj_type_class(type);
}
inline bool ob_is_interval_tc(ObObjType type)
{
  return ObIntervalTC == ob_obj_type_class(type);
}
inline bool ob_is_lob_tc(ObObjType type)
{
  return ObLobTC == ob_obj_type_class(type);
}

inline bool is_lob(ObObjType type)
{
  return ob_is_text_tc(type);
}
inline bool is_lob_locator(ObObjType type)
{
  return ObLobType == type;
}

// test type catalog
inline bool ob_is_integer_type(ObObjType type)
{
  return ObTinyIntType <= type && type <= ObUInt64Type;
}
inline bool ob_is_numeric_type(ObObjType type)
{
  return (ObTinyIntType <= type && type <= ObUNumberType) || type == ObBitType || type == ObNumberFloatType;
}
inline bool ob_is_real_type(ObObjType type)
{
  return ObFloatType <= type && type <= ObUDoubleType;
}
inline bool ob_is_float_type(ObObjType type)
{
  return ObFloatType == type || ObUFloatType == type;
}
inline bool ob_is_double_type(ObObjType type)
{
  return ObDoubleType == type || ObUDoubleType == type;
}
inline bool ob_is_accurate_numeric_type(ObObjType type)
{
  return (ObTinyIntType <= type && type <= ObUInt64Type) || (ob_is_number_tc(type));
}
inline bool ob_is_unsigned_type(ObObjType type)
{
  return (ObUTinyIntType <= type && type <= ObUInt64Type) || ObYearType == type || ObUFloatType == type ||
         ObUDoubleType == type || ObUNumberType == type;
}

L
ls0 已提交
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
inline void convert_unsigned_type_to_signed(ObObjType &type)
{
  switch (type) {
    case (ObUTinyIntType):
      type = ObTinyIntType;
      break;
    case (ObUSmallIntType):
      type = ObSmallIntType;
      break;
    case (ObUMediumIntType):
      type = ObMediumIntType;
      break;
    case (ObUInt32Type):
      type = ObInt32Type;
      break;
    case (ObUInt64Type):
      type = ObIntType;
      break;
    case (ObUFloatType):
      type = ObFloatType;
      break;
    case (ObUDoubleType):
      type = ObDoubleType;
      break;
    case (ObUNumberType):
      type = ObNumberType;
      break;
    default:
      break;
  }
}

O
oceanbase-admin 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
inline bool ob_is_oracle_numeric_type(ObObjType type)
{
  return ObIntType == type || ob_is_number_tc(type) || ObFloatType == type || ObDoubleType == type;
}
inline bool ob_is_oracle_temporal_type(ObObjType type)
{
  return ObDateTimeType == type || ob_is_otimestampe_tc(type);
}

// this func means when eumset cast to this type, use numberic value
inline bool ob_is_enumset_numeric_type(ObObjType type)
{
  return (ob_is_numeric_type(type) || ObYearType == type);
}

inline bool ob_is_enum_or_set_type(ObObjType type)
{
  return ObEnumType == type || ObSetType == type;
}
inline bool ob_is_temporal_type(ObObjType type)
{
  return type >= ObDateTimeType && type <= ObYearType;
}
inline bool ob_is_string_or_enumset_type(ObObjType type)
{
  return (type >= ObVarcharType && type <= ObHexStringType) || ObEnumType == type || ObSetType == type ||
         ObNVarchar2Type == type || ObNCharType == type;
}
inline bool ob_is_otimestamp_type(const ObObjType type)
{
  return (ObTimestampTZType <= type && type <= ObTimestampNanoType);
}
inline bool ob_is_varbinary_type(const ObObjType type, const ObCollationType cs_type)
{
  return (ObVarcharType == type && CS_TYPE_BINARY == cs_type);
}
inline bool ob_is_varchar_char_type(const ObObjType type, const ObCollationType cs_type)
{
  return (ObVarcharType == type || ObCharType == type) && CS_TYPE_BINARY != cs_type;
}
inline bool ob_is_varchar_type(const ObObjType type, const ObCollationType cs_type)
{
  return ObVarcharType == type && CS_TYPE_BINARY != cs_type;
}

inline bool ob_is_binary(ObObjType type, ObCollationType cs_type)
{
  return (ObCharType == type && CS_TYPE_BINARY == cs_type);
}
inline bool ob_is_varbinary_or_binary(ObObjType type, ObCollationType cs_type)
{
  return ob_is_varbinary_type(type, cs_type) || ob_is_binary(type, cs_type);
}
inline bool ob_is_varchar(ObObjType type, ObCollationType cs_type)
{
  return ((type == static_cast<uint8_t>(ObVarcharType)) && (CS_TYPE_BINARY != cs_type));
}
inline bool ob_is_char(ObObjType type, ObCollationType cs_type)
{
  return ((type == static_cast<uint8_t>(ObCharType)) && (CS_TYPE_BINARY != cs_type));
}
inline bool ob_is_nstring(ObObjType type)
{
  return type == static_cast<uint8_t>(ObNVarchar2Type) || type == static_cast<uint8_t>(ObNCharType);
}
inline bool ob_is_varchar_or_char(ObObjType type, ObCollationType cs_type)
{
  return ob_is_varchar(type, cs_type) || ob_is_char(type, cs_type);
}
inline bool ob_is_character_type(ObObjType type, ObCollationType cs_type)
{
  return ob_is_nstring(type) || ob_is_varchar_or_char(type, cs_type);
}
inline bool ob_is_string_type(ObObjType type)
{
  return ob_is_string_tc(type) || ob_is_text_tc(type);
}

inline bool ob_is_blob_locator(const ObObjType type, const ObCollationType cs_type)
{
  return ObLobType == type && CS_TYPE_BINARY == cs_type;
}
inline bool ob_is_clob_locator(const ObObjType type, const ObCollationType cs_type)
{
  return ObLobType == type && CS_TYPE_BINARY != cs_type;
}
inline bool ob_is_lob_locator(const ObObjType type)
{
  return ObLobType == type;
}
inline bool ob_is_string_or_lob_type(ObObjType type)
{
  return ob_is_string_tc(type) || ob_is_text_tc(type) || ob_is_lob_locator(type);
}
inline bool ob_is_clob(const ObObjType type, const ObCollationType cs_type)
{
  return ObLongTextType == type && CS_TYPE_BINARY != cs_type;
}
inline bool ob_is_blob(const ObObjType type, const ObCollationType cs_type)
{
  return ObTextTC == ob_obj_type_class(type) && CS_TYPE_BINARY == cs_type;
}
inline bool ob_is_text(const ObObjType type, const ObCollationType cs_type)
{
  return ObTextTC == ob_obj_type_class(type) && CS_TYPE_BINARY != cs_type;
}
inline bool ob_is_null(const ObObjType type)
{
  return ObNullType == type;
}
inline bool ob_is_oracle_datetime_tc(ObObjType type)
{
  return ob_is_otimestampe_tc(type) || ob_is_datetime_tc(type);
}

// inline bool ob_is_enum_set_type(ObObjType type) {return (ObEnumType == type || ObSetType == type); }
inline bool ob_is_enumset_tc(ObObjType type)
{
  return ObEnumSetTC == ob_obj_type_class(type);
}
inline bool ob_is_enumset_inner_tc(ObObjType type)
{
  return ObEnumSetInnerTC == ob_obj_type_class(type);
}
inline bool ob_is_raw(const ObObjType type)
{
  return ObRawType == type;
}
inline bool ob_is_extend(const ObObjType type)
{
  return ObExtendType == type;
}
inline bool ob_is_urowid(const ObObjType type)
{
  return ObURowIDType == type;
}
inline bool ob_is_rowid_tc(const ObObjType type)
{
  return ob_is_urowid(type);
}
inline bool ob_is_accuracy_length_valid_tc(ObObjType type)
{
  return ob_is_string_type(type) || ob_is_raw(type) || ob_is_enumset_tc(type) || ob_is_rowid_tc(type) ||
         ob_is_lob_tc(type);
}
inline bool ob_is_string_or_enumset_tc(ObObjType type)
{
  return ObStringTC == ob_obj_type_class(type) || ob_is_enumset_tc(type);
}
inline bool ob_is_large_text(ObObjType type)
{
  return ObTextType <= type && ObLongTextType >= type;
}
inline bool ob_is_datetime(const ObObjType type)
{
  return ObDateTimeType == type;
}
inline bool ob_is_timestamp_tz(const ObObjType type)
{
  return ObTimestampTZType == type;
}
inline bool ob_is_timestamp_ltz(const ObObjType type)
{
  return ObTimestampLTZType == type;
}
inline bool ob_is_timestamp_nano(const ObObjType type)
{
  return ObTimestampNanoType == type;
}
inline bool ob_is_interval_ym(const ObObjType type)
{
  return ObIntervalYMType == type;
}
inline bool ob_is_interval_ds(const ObObjType type)
{
  return ObIntervalDSType == type;
}
inline bool ob_is_nvarchar2(const ObObjType type)
{
  return ObNVarchar2Type == type;
}
inline bool ob_is_nchar(const ObObjType type)
{
  return ObNCharType == type;
}
inline bool ob_is_nstring_type(const ObObjType type)
{
  return ob_is_nchar(type) || ob_is_nvarchar2(type);
}

// to_string adapter
template <>
inline int databuff_print_obj(char* buf, const int64_t buf_len, int64_t& pos, const ObObjType& t)
{
  return databuff_printf(buf, buf_len, pos, "\"%s\"", ob_obj_type_str(t));
}
template <>
inline int databuff_print_key_obj(
    char* buf, const int64_t buf_len, int64_t& pos, const char* key, const bool with_comma, const ObObjType& t)
{
  return databuff_printf(buf, buf_len, pos, WITH_COMMA("%s:\"%s\""), key, ob_obj_type_str(t));
}

bool ob_can_static_cast(const ObObjType src, const ObObjType dst);
int find_type(const common::ObIArray<common::ObString>& type_infos, common::ObCollationType cs_type,
    const common::ObString& val, int32_t& pos);

enum ObOTimestampMetaAttrType { OTMAT_TIMESTAMP_TZ = 0, OTMAT_TIMESTAMP_LTZ, OTMAT_TIMESTAMP_NANO };
}  // end namespace common
}  // end namespace oceanbase

#endif  // OCEANBASE_COMMON_OB_OBJECT_TYPE_H_