Repository: spark
Updated Branches:
  refs/heads/branch-2.1 efc72dcc3 -> 2b85e059b


[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.

(cherry picked from commit a2d8d767d933321426a4eb9df1583e017722d7d6)
Signed-off-by: Xiao Li <gatorsm...@gmail.com>


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

Branch: refs/heads/branch-2.1
Commit: 2b85e059b634bfc4b015c76b7b232b732460bf12
Parents: efc72dc
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:53 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/2b85e059/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