Skip to content

Commit

Permalink
Update test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Jan 7, 2024
1 parent 6800756 commit d15706c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/parquet/arrow/arrow_schema_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ TEST_F(TestConvertParquetSchema, ParquetFlatPrimitives) {
ParquetType::INT64,
ConvertedType::TIMESTAMP_MILLIS));
arrow_fields.push_back(
::arrow::field("timestamp", ::arrow::timestamp(TimeUnit::MILLI), false));
::arrow::field("timestamp", ::arrow::timestamp(TimeUnit::MILLI, "UTC"), false));

parquet_fields.push_back(PrimitiveNode::Make("timestamp[us]", Repetition::REQUIRED,
ParquetType::INT64,
ConvertedType::TIMESTAMP_MICROS));
arrow_fields.push_back(
::arrow::field("timestamp[us]", ::arrow::timestamp(TimeUnit::MICRO), false));
::arrow::field("timestamp[us]", ::arrow::timestamp(TimeUnit::MICRO, "UTC"), false));

parquet_fields.push_back(PrimitiveNode::Make("date", Repetition::REQUIRED,
ParquetType::INT32, ConvertedType::DATE));
Expand Down

0 comments on commit d15706c

Please sign in to comment.