wgtmac commented on code in PR #34720:
URL: https://github.com/apache/arrow/pull/34720#discussion_r1147314275
##########
cpp/src/parquet/stream_reader_test.cc:
##########
@@ -912,5 +913,39 @@ TEST_F(TestReadingDataFiles, Int64Decimal) {
EXPECT_EQ(i, 25);
}
+TEST_F(TestReadingDataFiles, FLBADecimal) {
+ PARQUET_ASSIGN_OR_THROW(auto infile, ::arrow::io::ReadableFile::Open(
+
GetDataFile("fixed_length_decimal.parquet")));
+
+ auto file_reader = ParquetFileReader::Open(infile);
+ auto reader = StreamReader{std::move(file_reader)};
+
+ ::arrow::Decimal128 x;
+ int i;
Review Comment:
I just follow the same pattern of previous cases. These files are
well-defined so i will always be updated.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]