mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Style fix
This commit is contained in:
parent
f62f1a5924
commit
e5b59616cd
@ -26,7 +26,7 @@ void ArrowBlockOutputFormat::consume(Chunk chunk)
|
||||
const size_t columns_num = chunk.getNumColumns();
|
||||
std::shared_ptr<arrow::Table> arrow_table;
|
||||
|
||||
CHColumnToArrowColumn::CHChunkToArrowTable(arrow_table, header, chunk, columns_num, "Arrow");
|
||||
CHColumnToArrowColumn::chChunkToArrowTable(arrow_table, header, chunk, columns_num, "Arrow");
|
||||
|
||||
if (!writer)
|
||||
{
|
||||
|
@ -234,7 +234,7 @@ namespace DB
|
||||
*/
|
||||
}
|
||||
|
||||
void CHColumnToArrowColumn::CHChunkToArrowTable(
|
||||
void CHColumnToArrowColumn::chChunkToArrowTable(
|
||||
std::shared_ptr<arrow::Table> & res,
|
||||
const Block & header,
|
||||
const Chunk & chunk,
|
||||
|
@ -28,7 +28,7 @@ private:
|
||||
|
||||
|
||||
public:
|
||||
static void CHChunkToArrowTable(std::shared_ptr<arrow::Table> & res, const Block & header, const Chunk & chunk,
|
||||
static void chChunkToArrowTable(std::shared_ptr<arrow::Table> & res, const Block & header, const Chunk & chunk,
|
||||
size_t columns_num, String format_name);
|
||||
};
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ void ParquetBlockOutputFormat::consume(Chunk chunk)
|
||||
const size_t columns_num = chunk.getNumColumns();
|
||||
std::shared_ptr<arrow::Table> arrow_table;
|
||||
|
||||
CHColumnToArrowColumn::CHChunkToArrowTable(arrow_table, header, chunk, columns_num, "Parquet");
|
||||
CHColumnToArrowColumn::chChunkToArrowTable(arrow_table, header, chunk, columns_num, "Parquet");
|
||||
|
||||
if (!file_writer)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user