[FEAT MERGE] OB Support XMLType

Co-authored-by: simonjoylet <simonjoylet@gmail.com>
This commit is contained in:
obdev
2023-04-28 03:45:10 +00:00
committed by ob-robot
parent 58bb3d34b7
commit 17abf2818a
405 changed files with 18839 additions and 1573 deletions

View File

@ -50,6 +50,7 @@ data_type data_type_str data_type_class
46 LOB 21
47 JSON 22
48 GEOMETRY 23
49 UDT 24
select data_type, data_type_str, data_type_class from __all_virtual_data_type order by data_type;
data_type data_type_str data_type_class
0 NULL 0
@ -101,6 +102,7 @@ data_type data_type_str data_type_class
46 LOB 21
47 JSON 22
48 GEOMETRY 23
49 UDT 24
select * from __all_virtual_data_type where data_type = 22;
data_type data_type_str data_type_class
22 VARCHAR 10
@ -153,6 +155,7 @@ ROWID ROWID
LOB LOB
JSON JSON
GEOMETRY GEOMETRY
UDT UDT
show create table __all_virtual_data_type;
Table Create Table
__all_virtual_data_type CREATE TABLE `__all_virtual_data_type` (

View File

@ -24,6 +24,7 @@ data_type_class data_type_class_str
21 LOB
22 JSON
23 GEOMETRY
24 UDT
select data_type_class, data_type_class_str from __all_virtual_data_type_class;
data_type_class data_type_class_str
0 NULL
@ -49,6 +50,7 @@ data_type_class data_type_class_str
21 LOB
22 JSON
23 GEOMETRY
24 UDT
select * from __all_virtual_data_type_class where data_type_class = 10;
data_type_class data_type_class_str
10 STRING
@ -101,6 +103,7 @@ ROWID ROWID
LOB LOB
JSON JSON
GEOMETRY GEOMETRY
UDT UDT
show create table __all_virtual_data_type_class;
Table Create Table
__all_virtual_data_type_class CREATE TABLE `__all_virtual_data_type_class` (