Pt-archiver archiving data line feed error(include \n)

The data line contains \n text, causing pt-archiver to mistake it for a newline character when archiving, and the target data is incorrect,Is there a good solution

#################################################
#I did a perl code test, maybe this is the problem
[root@iZ2ze0pd59pbghfhou3e6cZ ~]$cat test.pl
my $row = {
id => 1,
name => “Hello\nWorld”,
desc => “This is\na test”,
};

foreach my $key (keys %$row) {
my $value = $row->{$key};
print “$key: $value\n”;
}

[root@iZ2ze0pd59pbghfhou3e6cZ ~]$perl test.pl
desc: This is
a test
name: Hello
World
id: 1

Hello @huichao_chen,
I see you opened a bug report on this. I believe this has been previously reported at Issue navigator - Percona JIRA

I suggest watching both bugs, and get some co-workers to ‘upvote’ the bug so that our dev team places more importance on a solution.