Skip to content

Commit

Permalink
change SQL6 in mini_hits test to tolerate a bug.
Browse files Browse the repository at this point in the history
bug: #7743
  • Loading branch information
youngsofun committed Sep 20, 2022
1 parent 5507654 commit c54e6f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/suites/1_stateful/04_mini_dataset/04_0001_mini_hits.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ hits_statements=(
"SELECT '====== SQL5 ======';"
"SELECT COUNT(DISTINCT UserID) FROM hits;"
"SELECT '====== SQL6 ======';"
"SELECT COUNT(DISTINCT SearchPhrase) FROM hits;"
#"SELECT COUNT(DISTINCT SearchPhrase) FROM hits;" # wait for bugfix https://github.com/datafuselabs/databend/issues/7743
"SELECT COUNT(DISTINCT SearchPhrase) FROM (select SearchPhrase from hits order by SearchPhrase)"
"SELECT '====== SQL7 ======';"
"SELECT MIN(EventDate), MAX(EventDate) FROM hits;"
"SELECT '====== SQL8 ======';"
Expand Down

0 comments on commit c54e6f4

Please sign in to comment.