github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/row_format/data/step2.sql (about) 1 use `row_format`; 2 3 INSERT INTO multi_data_type( t_boolean, t_bigint, t_double, t_decimal, t_bit 4 , t_date, t_datetime, t_timestamp, t_time, t_year 5 , t_char, t_varchar, t_blob, t_text, t_enum 6 , t_set, t_json) 7 VALUES ( false, 666, 123.777, 123456789012.123456789012, b'1000001' 8 , '1000-01-01', '9999-12-31 23:59:59', '19731230153000', '23:59:59', 1970 9 , '测', '测试', 'blob', '测试text11', 'enum3' 10 , 'a,b', NULL); 11 12 UPDATE multi_data_type 13 SET t_bigint = 555 14 WHERE id = 1;