vibhatha commented on code in PR #13401: URL: https://github.com/apache/arrow/pull/13401#discussion_r918449974
########## cpp/src/arrow/engine/substrait/serde_test.cc: ########## @@ -1383,5 +1400,188 @@ TEST(Substrait, JoinPlanInvalidKeys) { } } +TEST(Substrait, SerializeRelation) { +#ifdef _WIN32 + GTEST_SKIP() << "ARROW-16392: Substrait File URI not supported for Windows"; +#else + ExtensionSet ext_set; + auto dummy_schema = schema({field("foo", binary())}); + // creating a dummy dataset using a dummy table + auto format = std::make_shared<arrow::dataset::ParquetFileFormat>(); + auto filesystem = std::make_shared<fs::LocalFileSystem>(); + + std::vector<fs::FileInfo> files; + const std::vector<std::string> f_paths = {"/tmp/data1.parquet", "/tmp/data2.parquet"}; Review Comment: There is a missing path support. ```c++ GTEST_SKIP() << "ARROW-16392: Substrait File URI not supported for Windows"; ``` -- 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