Skip to content

Commit

Permalink
[SPARK-20223][SQL] Fix typo in tpcds q77.sql
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

Fix typo in tpcds q77.sql

## How was this patch tested?

N/A

Author: wangzhenhua <[email protected]>

Closes #17538 from wzhfy/typoQ77.

(cherry picked from commit a2d8d76)
Signed-off-by: Xiao Li <[email protected]>
  • Loading branch information
wzhfy authored and gatorsmile committed Apr 5, 2017
1 parent 90eb373 commit 15ea5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/core/src/test/resources/tpcds/q77.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ WITH ss AS
sum(cr_net_loss) AS profit_loss
FROM catalog_returns, date_dim
WHERE cr_returned_date_sk = d_date_sk
AND d_date BETWEEN cast('2000-08-03]' AS DATE) AND
AND d_date BETWEEN cast('2000-08-03' AS DATE) AND
(cast('2000-08-03' AS DATE) + INTERVAL 30 days)),
ws AS
(SELECT
Expand Down

0 comments on commit 15ea5ea

Please sign in to comment.