mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
initial commit
This commit is contained in:
parent
5a755d1e7c
commit
a416fd52d8
@ -367,15 +367,10 @@ static ColumnWithTypeAndName readColumnFromArrowColumn(
|
||||
}
|
||||
case arrow::Type::TIMESTAMP:
|
||||
return readColumnWithTimestampData(arrow_column, column_name);
|
||||
#if defined(ARCADIA_BUILD)
|
||||
case arrow::Type::DECIMAL:
|
||||
return readColumnWithDecimalData<Decimal128, arrow::Decimal128Array>(arrow_column, column_name);
|
||||
#else
|
||||
case arrow::Type::DECIMAL128:
|
||||
return readColumnWithDecimalData<Decimal128, arrow::Decimal128Array>(arrow_column, column_name);
|
||||
case arrow::Type::DECIMAL256:
|
||||
return readColumnWithDecimalData<Decimal256, arrow::Decimal256Array>(arrow_column, column_name);
|
||||
#endif
|
||||
case arrow::Type::MAP:
|
||||
{
|
||||
auto arrow_nested_column = getNestedArrowColumn(arrow_column);
|
||||
|
Loading…
Reference in New Issue
Block a user