vibhatha commented on code in PR #13401: URL: https://github.com/apache/arrow/pull/13401#discussion_r957069255
########## cpp/src/arrow/engine/substrait/serde_test.cc: ########## @@ -42,9 +55,35 @@ using testing::UnorderedElementsAre; namespace arrow { using internal::checked_cast; - +using internal::hash_combine; namespace engine { +Status WriteParquetData(const std::string& path, + const std::shared_ptr<fs::FileSystem> file_system, + const std::shared_ptr<Table> input) { + EXPECT_OK_AND_ASSIGN(auto buffer_writer, file_system->OpenOutputStream(path)); + PARQUET_THROW_NOT_OK(parquet::arrow::WriteTable(*input, arrow::default_memory_pool(), + buffer_writer, /*chunk_size*/ 1)); + return buffer_writer->Close(); +} Review Comment: You mean `ORC`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org