Repository: trafodion
Updated Branches:
  refs/heads/master 8f18e5a34 -> 0edaaf416


[TRAFODION-3171] Refactor Hive sequence file reading to use the new 
implementation

Disabled parallel plan in hive/TEST006 that could cause spliting a compressed 
sequence file


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

Branch: refs/heads/master
Commit: 185ff850ac815d68712ee58ded493fff7f8ae8d3
Parents: 7fba1c6
Author: selvaganesang <[email protected]>
Authored: Wed Aug 15 18:16:48 2018 +0000
Committer: selvaganesang <[email protected]>
Committed: Wed Aug 15 18:16:48 2018 +0000

----------------------------------------------------------------------
 core/sql/regress/hive/TEST006 | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafodion/blob/185ff850/core/sql/regress/hive/TEST006
----------------------------------------------------------------------
diff --git a/core/sql/regress/hive/TEST006 b/core/sql/regress/hive/TEST006
index 131ebff..95f13ab 100644
--- a/core/sql/regress/hive/TEST006
+++ b/core/sql/regress/hive/TEST006
@@ -42,11 +42,17 @@ log LOG006_seq_promotion.dat clear;
 select * from hive.promotion_seq where p_promo_sk < 100 order by P_PROMO_SK;
 log;
 
+-- Jenkins might be choosing a parallel plan for compressed sequence file
+-- Currently Trafodion doesn't support spliting a compressed sequence file 
+cqd attempt_esp_parallelism 'off' ;
+
 -- Select from the compressed version of the promotion table
 log LOG006_comp_promotion.dat clear;
 select * from hive.promotion_comp where p_promo_sk < 100 order by P_PROMO_SK;
 log;
 
+cqd attempt_esp_parallelism reset ;
+
 -- Select from the text version of the promotion table
 log LOG006_orig_promotion.dat clear;
 select * from hive.promotion where p_promo_sk < 100 order by P_PROMO_SK;

Reply via email to