@@ -24,32 +24,32 @@ void changeLogLoadCSVFileTest() throws SQLException, LiquibaseException {
24
24
assertTrue (migrationStr .contains ("UPSERT INTO all_types_table (id, bool_column, bigint_column, smallint_column, " +
25
25
"tinyint_column, float_column, double_column, decimal_column, uint8_column, " +
26
26
"uint16_column, uint32_column, uint64_column, text_column, binary_column, json_column, " +
27
- "jsondocument_column, date_column, datetime_column, timestamp_column, interval_column) VALUES " +
27
+ "jsondocument_column, date_column, datetime_column, timestamp_column, interval_column, uuid_column ) VALUES " +
28
28
"('1', 'true', '123123', '13000', '113', '1.123', '1.123123', '1.123123', '12', '13', '14', " +
29
29
"'15', 'Кирилл Курдюков Алексеевич', 'binary', '{\" asd\" : \" asd\" }', '{\" asd\" : \" asd\" }', " +
30
- "'2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S');"
30
+ "'2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S', '689fd2b6-5764-4c43-8803-519da8f5f305' );"
31
31
));
32
32
33
33
assertTrue (migrationStr .contains ("UPSERT INTO all_types_table (id, bool_column, bigint_column, smallint_column, " +
34
34
"tinyint_column, float_column, double_column, decimal_column, uint8_column, " +
35
35
"uint16_column, uint32_column, uint64_column, text_column, binary_column, json_column, " +
36
- "jsondocument_column, date_column, datetime_column, timestamp_column, interval_column) VALUES " +
36
+ "jsondocument_column, date_column, datetime_column, timestamp_column, interval_column, uuid_column ) VALUES " +
37
37
"('5', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, " +
38
- "NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);"
38
+ "NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL );"
39
39
));
40
40
41
41
assertTrue (migrationStr .contains ("INSERT INTO all_types_table (id, bool_column, bigint_column, smallint_column, " +
42
42
"tinyint_column, float_column, double_column, decimal_column, uint8_column, uint16_column, " +
43
43
"uint32_column, uint64_column, text_column, binary_column, json_column, jsondocument_column, " +
44
- "date_column, datetime_column, timestamp_column, interval_column) VALUES " +
44
+ "date_column, datetime_column, timestamp_column, interval_column, uuid_column ) VALUES " +
45
45
"('2', 'true', '123123', '13000', '112', '1.123', '1.123123', '1.123123', '12', '13', " +
46
46
"'14', '15', 'Кирилл Курдюков Алексеевич', 'binary', '{\" asd\" : \" asd\" }', '{\" asd\" : \" asd\" }', " +
47
- "'2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S'), " +
47
+ "'2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S', '689fd2b6-5764-4c43-8803-519da8f5f305' ), " +
48
48
"('3', 'true', '123123', '13000', '112', '1.123', '1.123123', '1.123123', '12', " +
49
49
"'13', '14', '15', 'Кирилл Курдюков Алексеевич', 'binary', '{\" asd\" : \" asd\" }', " +
50
- "'{\" asd\" : \" asd\" }', '2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S'), " +
50
+ "'{\" asd\" : \" asd\" }', '2014-04-06', '2023-09-16T12:30', '2023-07-31T17:00:00.000000Z', 'PT10S', '689fd2b6-5764-4c43-8803-519da8f5f305' ), " +
51
51
"('6', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, " +
52
- "NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);"
52
+ "NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL );"
53
53
));
54
54
55
55
migrateChangeFile (changeLogFile );
0 commit comments