Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ;


Original file line number Diff line number Diff line change
Expand Up @@ -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)
))
}

Expand Down
Loading