PT-2410 - pt-archiver brokes when using output-format=csv and has null values

- Added test case
This commit is contained in:
Sveta Smirnova
2025-03-13 22:57:46 +03:00
parent d5ec5d9ca8
commit 3cb46e61f7
2 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
CREATE DATABASE pt_2410;
USE pt_2410;
CREATE TABLE test(
id int not null primary key auto_increment,
column1 int default null,
column2 varchar(50) not null);
INSERT INTO test VALUES (null,null,'testing...');
INSERT INTO test VALUES (null,null,'testing...');