diff options
author | Artem Zuikov <chertus@gmail.com> | 2022-04-07 00:28:58 +0300 |
---|---|---|
committer | Artem Zuikov <chertus@gmail.com> | 2022-04-07 00:28:58 +0300 |
commit | e999aec48bee1bedb5ea901f0fdbc3b0c760e3c3 (patch) | |
tree | e2ec5b6f2a81a5379970943403e26a853144b06f | |
parent | 8fab6620ff546037e93ecd3cc90b42f8869007d0 (diff) | |
download | ydb-e999aec48bee1bedb5ea901f0fdbc3b0c760e3c3.tar.gz |
KIKIMR-14565: fix CSV load with --header option in cli
ref:837737a3c04cdcd530dec785c97a2969b0bb390c
-rw-r--r-- | ydb/public/lib/ydb_cli/import/import.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/public/lib/ydb_cli/import/import.cpp b/ydb/public/lib/ydb_cli/import/import.cpp index 911aaf27191..e9960a21f82 100644 --- a/ydb/public/lib/ydb_cli/import/import.cpp +++ b/ydb/public/lib/ydb_cli/import/import.cpp @@ -122,6 +122,7 @@ TStatus TImportFileClient::UpsertCsv(const TString& dataFile, const TString& dbP headerRow += '\n'; buffer = headerRow; csvSettings.set_header(true); + special = true; } if (special) { |