diff options
author | uzhas <uzhas@ydb.tech> | 2022-09-06 13:31:20 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2022-09-06 13:31:20 +0300 |
commit | d8a5855ee025759596e34fbc1362c9a50693b9df (patch) | |
tree | d8511867689c98d63fd598c0b8f4d91b2c24fba4 | |
parent | e9326a3327ea548d69b98df2718079a2617d0315 (diff) | |
download | ydb-d8a5855ee025759596e34fbc1362c9a50693b9df.tar.gz |
,revert changes, remove confusing column list
-rw-r--r-- | ydb/library/yql/udfs/common/clickhouse/client/src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ydb/library/yql/udfs/common/clickhouse/client/src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp b/ydb/library/yql/udfs/common/clickhouse/client/src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp index e6c52975c3d..ad76ba146a0 100644 --- a/ydb/library/yql/udfs/common/clickhouse/client/src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp +++ b/ydb/library/yql/udfs/common/clickhouse/client/src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp @@ -29,7 +29,6 @@ #include <algorithm> #include <arrow/builder.h> #include <arrow/array.h> -#include <fmt/ranges.h> /// UINT16 and UINT32 are processed separately, see comments in readColumnFromArrowColumn. #define FOR_ARROW_NUMERIC_TYPES(M) \ @@ -561,7 +560,7 @@ void ArrowColumnToCHColumn::arrowTableToCHChunk(Chunk & res, std::shared_ptr<arr // TODO: What if some columns were not presented? Insert NULLs? What if a column is not nullable? if (!read_from_nested) - throw Exception{ErrorCodes::THERE_IS_NO_COLUMN, "Column \"{}\" is not presented in input data. Available columns: {}", header_column.name, table->ColumnNames()}; + throw Exception{ErrorCodes::THERE_IS_NO_COLUMN, "Column \"{}\" is not presented in input data.", header_column.name}; } std::shared_ptr<arrow::ChunkedArray> arrow_column = name_to_column_ptr[header_column.name]; |