Skip to content

Commit

Permalink
[TRAFODION-3171] Refactor Hive sequence file reading to use the new i…
Browse files Browse the repository at this point in the history
…mplementation

Disabled parallel plan in hive/TEST006 that could cause spliting a compressed sequence file
  • Loading branch information
selvaganesang committed Aug 15, 2018
1 parent 7fba1c6 commit 185ff85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/sql/regress/hive/TEST006
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 185ff85

Please sign in to comment.