apache arrow - reading csv file
问题 all I'm working with apache arrow now. When reading csv file with arrow::csv::TableReader::Read function, I want to read this file as a file with no header. But, it reads csv file and treat first row as csv header(data field). Is there any options to read csv file with no header? Thanks 回答1: Check out the ParserOptions int32_t arrow::csv::ParseOptions::header_rows = 1 It can be defined as third argument in TableReader::Make(...) . static Status Make(MemoryPool *pool, std::shared_ptr< io: