Repository: spark
Updated Branches:
  refs/heads/master 71c3c4815 -> a2d8d767d


[SPARK-20223][SQL] Fix typo in tpcds q77.sql

## What changes were proposed in this pull request?

Fix typo in tpcds q77.sql

## How was this patch tested?

N/A

Author: wangzhenhua <wangzhen...@huawei.com>

Closes #17538 from wzhfy/typoQ77.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a2d8d767
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a2d8d767
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a2d8d767

Branch: refs/heads/master
Commit: a2d8d767d933321426a4eb9df1583e017722d7d6
Parents: 71c3c48
Author: wangzhenhua <wangzhen...@huawei.com>
Authored: Wed Apr 5 10:21:43 2017 -0700
Committer: Xiao Li <gatorsm...@gmail.com>
Committed: Wed Apr 5 10:21:43 2017 -0700

----------------------------------------------------------------------
 sql/core/src/test/resources/tpcds/q77.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a2d8d767/sql/core/src/test/resources/tpcds/q77.sql
----------------------------------------------------------------------
diff --git a/sql/core/src/test/resources/tpcds/q77.sql 
b/sql/core/src/test/resources/tpcds/q77.sql
index 7830f96..a69df9f 100755
--- a/sql/core/src/test/resources/tpcds/q77.sql
+++ b/sql/core/src/test/resources/tpcds/q77.sql
@@ -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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to