This commit is contained in:
2024-02-01 13:41:59 +08:00
parent 083090c62b
commit 70cf0322e4
8 changed files with 68 additions and 113 deletions

View File

@@ -137,7 +137,7 @@ public partial class MySqlDestination : IDisposable, IAsyncDisposable
// 在这里处理特殊列
#region HandleFields
if (field == "\\N")
if (field.Length == 2 && field == @"\N") // MyDumper NULL
{
recordSb.Append("NULL");
goto Escape;