kou commented on code in PR #45350: URL: https://github.com/apache/arrow/pull/45350#discussion_r1931651294
########## cpp/src/parquet/arrow/arrow_statistics_test.cc: ########## @@ -183,6 +183,39 @@ TEST(StatisticsTest, TruncateOnlyHalfMinMax) { ASSERT_FALSE(stats->HasMinMax()); } +TEST(StatisticsTest, RequestNoRowGroup) { + // Build input + auto schema = ::arrow::schema({::arrow::field("column", ::arrow::int32())}); + auto built_record_batch = RecordBatchFromJSON(schema, R"([[1], [null], [-1]])"); Review Comment: Done. -- 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