wjones127 commented on code in PR #15244: URL: https://github.com/apache/arrow/pull/15244#discussion_r1066207446
########## cpp/src/parquet/arrow/arrow_reader_writer_test.cc: ########## @@ -4727,5 +4726,84 @@ std::vector<NestedFilterTestCase> GenerateMapFilteredTestCases() { INSTANTIATE_TEST_SUITE_P(MapFilteredReads, TestNestedSchemaFilteredReader, ::testing::ValuesIn(GenerateMapFilteredTestCases())); +template <typename TestType> +class TestIntegerAnnotateDecimalTypeParquetIO : public TestParquetIO<TestType> { + public: + template <typename ArrayType> + void WriteColumn(const std::shared_ptr<ArrayType>& values) { Review Comment: It doesn't seem like this template parameter is ever used here. ```suggestion void WriteColumn(const std::shared_ptr<Array>& values) { ``` -- 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