zhilinli123 commented on PR #5668: URL: https://github.com/apache/seatunnel/pull/5668#issuecomment-1772038052
 ``` CREATE TABLE full_types ( id int NOT NULL, val_char char(3), val_varchar varchar(1000), val_text text, val_nchar nchar(3), val_nvarchar nvarchar(1000), val_ntext ntext, val_decimal decimal(6,3), val_numeric numeric, val_float float, val_real real, val_smallmoney smallmoney, val_money money, val_bit bit, val_tinyint tinyint, val_smallint smallint, val_int int, val_bigint bigint, val_date date, val_time time, val_datetime2 datetime2, val_datetime datetime, val_smalldatetime smalldatetime, val_xml xml PRIMARY KEY (id) ); INSERT INTO full_types VALUES (0, 'cč0', 'vcč', 'tč', N'cč', N'vcč', N'tč', 1.123, 2, 3.323, 4.323, 5.323, 6.323, 1, 22, 333, 4444, 55555, '2018-07-13', '10:23:45', '2018-07-13 11:23:45.34', '2018-07-13 13:23:45.78', '2018-07-13 14:23:45', '<a>b</a>'); ``` 1.But from the source code, the flot type is directly converted to SeaTunnel flot type, if not Debug debugging program is difficult to find this problem 2.For some **types** that are not often seen, it is impossible to satisfy, so it is necessary to find the corresponding allusions through string matching Of course, this is my personal opinion, welcome the proposal -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
