EnricoMi commented on code in PR #44990:
URL: https://github.com/apache/arrow/pull/44990#discussion_r1945151054
##########
cpp/src/arrow/dataset/file_parquet_encryption_test.cc:
##########
@@ -51,8 +53,15 @@ using arrow::internal::checked_pointer_cast;
namespace arrow {
namespace dataset {
+// Tests come in these variations
+enum EncryptionParam {
+ COLUMN_KEY,
+ UNIFORM,
+};
+
// Base class to test writing and reading encrypted dataset.
-class DatasetEncryptionTestBase : public ::testing::Test {
+class DatasetEncryptionTestBase
+ : public testing::TestWithParam<std::tuple<EncryptionParam, bool>> {
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]