Skip to content

Commit

Permalink
fix VL
Browse files Browse the repository at this point in the history
  • Loading branch information
rui-mo authored and taiyang-li committed May 6, 2023
1 parent 43b6dbb commit 366308c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenLiteralExpressionSuite]
.exclude("default")
.exclude("decimal")
// Timestamp: Velox to Arrow.
.exclude("construct literals from arrays of java.time.Instant")
enableSuite[GlutenIntervalExpressionsSuite]
.exclude("seconds")
.exclude("ANSI: extract days, hours, minutes and seconds")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ object TpcdsDataGen {
StructType(Seq(
StructField("d_date_sk", LongType),
StructField("d_date_id", StringType),
StructField("d_date", StringType),
StructField("d_date", DateType),
StructField("d_month_seq", LongType),
StructField("d_week_seq", LongType),
StructField("d_quarter_seq", LongType),
Expand Down Expand Up @@ -465,8 +465,8 @@ object TpcdsDataGen {
StructType(Seq(
StructField("i_item_sk", LongType),
StructField("i_item_id", StringType),
StructField("i_rec_start_date", StringType),
StructField("i_rec_end_date", StringType),
StructField("i_rec_start_date", DateType),
StructField("i_rec_end_date", DateType),
StructField("i_item_desc", StringType),
StructField("i_current_price", DecimalType(7, 2)),
StructField("i_wholesale_cost", DecimalType(7, 2)),
Expand Down Expand Up @@ -535,8 +535,8 @@ object TpcdsDataGen {
StructType(Seq(
StructField("s_store_sk", LongType),
StructField("s_store_id", StringType),
StructField("s_rec_start_date", StringType),
StructField("s_rec_end_date", StringType),
StructField("s_rec_start_date", DateType),
StructField("s_rec_end_date", DateType),
StructField("s_closed_date_sk", LongType),
StructField("s_store_name", StringType),
StructField("s_number_employees", LongType),
Expand Down

0 comments on commit 366308c

Please sign in to comment.