Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

[TRAFODION-3171] Refactor Hive sequence file reading to use the new i… #1697

Merged
merged 2 commits into from
Aug 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion core/sql/regress/tools/regress-filter-linux
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SYSKEY=`grep '\<SYSKEY\>' $fil | egrep -v '(--|^>>|^\*\*)'`
if [ "$SYSKEY" = "" ]; then
SYSKEY='@syskey@'
else
SYSKEY='[0-9]\{17,20\}\>'
SYSKEY='[0-9]\{16,20\}\>'
fi
# 123456789 123456789

Expand Down