Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mskapilks committed Sep 4, 2024
1 parent a2f6ade commit b029524
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions velox/dwio/parquet/tests/reader/E2EFilterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ TEST_F(E2EFilterTest, timestampINT64MillisDictionary) {
options_.enableDictionary = true;
options_.dataPageSize = 4 * 1024;
options_.parquetWriteTimestampUnit =
static_cast<uint8_t>(TimestampUnit::kMilli);
std::optional<TimestampUnit>(TimestampUnit::kMilli);
options_.parquetWriteTimestampTimeZone = "utc";

testWithTypes(
Expand All @@ -292,7 +292,7 @@ TEST_F(E2EFilterTest, timestampINT64MillisPlain) {
options_.enableDictionary = false;
options_.dataPageSize = 4 * 1024;
options_.parquetWriteTimestampUnit =
static_cast<uint8_t>(TimestampUnit::kMilli);
std::optional<TimestampUnit>(TimestampUnit::kMilli);
options_.parquetWriteTimestampTimeZone = "utc";

testWithTypes(
Expand All @@ -311,7 +311,7 @@ TEST_F(E2EFilterTest, timestampINT64MicrosDictionary) {
options_.enableDictionary = true;
options_.dataPageSize = 4 * 1024;
options_.parquetWriteTimestampUnit =
static_cast<uint8_t>(TimestampUnit::kMicro);
std::optional<TimestampUnit>(TimestampUnit::kMicro);
options_.parquetWriteTimestampTimeZone = "utc";

testWithTypes(
Expand All @@ -330,7 +330,7 @@ TEST_F(E2EFilterTest, timestampINT64MicrosPlain) {
options_.enableDictionary = false;
options_.dataPageSize = 4 * 1024;
options_.parquetWriteTimestampUnit =
static_cast<uint8_t>(TimestampUnit::kMicro);
std::optional<TimestampUnit>(TimestampUnit::kMicro);
options_.parquetWriteTimestampTimeZone = "utc";

testWithTypes(
Expand Down

0 comments on commit b029524

Please sign in to comment.