This is an automated email from the ASF dual-hosted git repository.
hongze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 36ab90bd83 [VL] Gluten-it: Rename column `c_last_review_date` to
`c_last_review_date_sk` (#11792)
36ab90bd83 is described below
commit 36ab90bd83ae6c4d059357bced02532ba17f7eb4
Author: Hongze Zhang <[email protected]>
AuthorDate: Mon Mar 30 15:25:52 2026 +0100
[VL] Gluten-it: Rename column `c_last_review_date` to
`c_last_review_date_sk` (#11792)
---
tools/gluten-it/common/src/main/resources/tpcds-queries/q30.sql | 4 ++--
.../scala/org/apache/gluten/integration/ds/TpcdsTableLayout.scala | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/gluten-it/common/src/main/resources/tpcds-queries/q30.sql
b/tools/gluten-it/common/src/main/resources/tpcds-queries/q30.sql
index 83d312f661..5ddba2f7da 100644
--- a/tools/gluten-it/common/src/main/resources/tpcds-queries/q30.sql
+++ b/tools/gluten-it/common/src/main/resources/tpcds-queries/q30.sql
@@ -13,7 +13,7 @@ with customer_total_return as
,ca_state)
select
c_customer_id,c_salutation,c_first_name,c_last_name,c_preferred_cust_flag
,c_birth_day,c_birth_month,c_birth_year,c_birth_country,c_login,c_email_address
- ,c_last_review_date,ctr_total_return
+ ,c_last_review_date_sk,ctr_total_return
from customer_total_return ctr1
,customer_address
,customer
@@ -25,7 +25,7 @@ with customer_total_return as
and ctr1.ctr_customer_sk = c_customer_sk
order by
c_customer_id,c_salutation,c_first_name,c_last_name,c_preferred_cust_flag
,c_birth_day,c_birth_month,c_birth_year,c_birth_country,c_login,c_email_address
- ,c_last_review_date,ctr_total_return
+ ,c_last_review_date_sk,ctr_total_return
LIMIT 100 ;
diff --git
a/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/ds/TpcdsTableLayout.scala
b/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/ds/TpcdsTableLayout.scala
index 23fb841583..55dd3e47e6 100644
---
a/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/ds/TpcdsTableLayout.scala
+++
b/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/ds/TpcdsTableLayout.scala
@@ -359,7 +359,7 @@ object TpcdsTableLayout {
StructField("c_birth_country", StringType),
StructField("c_login", StringType),
StructField("c_email_address", StringType),
- StructField("c_last_review_date", StringType)
+ StructField("c_last_review_date_sk", LongType)
))
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]