You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by sa...@apache.org on 2016/12/05 22:25:05 UTC

[7/7] incubator-impala git commit: Fix typo in DDL statement for loading Kudu table in stress test

Fix typo in DDL statement for loading Kudu table in stress test

Change-Id: I198babd2b52bd64c7f0d27c1be945d2fe7f9f55c
Reviewed-on: http://gerrit.cloudera.org:8080/5158
Tested-by: Impala Public Jenkins
Reviewed-by: Dimitris Tsirogiannis <dt...@cloudera.com>


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

Branch: refs/heads/master
Commit: b8b64e11081500563eca5ba548de814f6974bad3
Parents: 12cc508
Author: Dimitris Tsirogiannis <dt...@cloudera.com>
Authored: Sun Nov 20 16:59:33 2016 -0800
Committer: Dimitris Tsirogiannis <dt...@cloudera.com>
Committed: Mon Dec 5 18:15:01 2016 +0000

----------------------------------------------------------------------
 testdata/datasets/tpcds/tpcds_kudu_template.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/b8b64e11/testdata/datasets/tpcds/tpcds_kudu_template.sql
----------------------------------------------------------------------
diff --git a/testdata/datasets/tpcds/tpcds_kudu_template.sql b/testdata/datasets/tpcds/tpcds_kudu_template.sql
index a147f12..6c0b994 100644
--- a/testdata/datasets/tpcds/tpcds_kudu_template.sql
+++ b/testdata/datasets/tpcds/tpcds_kudu_template.sql
@@ -115,7 +115,7 @@ CREATE TABLE IF NOT EXISTS {target_db_name}.web_sales (
   ws_net_paid_inc_ship DOUBLE,
   ws_net_paid_inc_ship_tax DOUBLE,
   ws_net_profit DOUBLE,
-  PRIMARY KEY (wd_order_number, ws_item_sk)
+  PRIMARY KEY (ws_order_number, ws_item_sk)
 )
 DISTRIBUTE BY HASH (ws_order_number,ws_item_sk) INTO {buckets} BUCKETS
 STORED AS KUDU