Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-stephen committed Jan 11, 2025
1 parent 1776f79 commit 4073f9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
import org.codehaus.groovy.runtime.IOGroovyMethods

suite("inject_hdfs_load_error", "nonConcurrent") {
if (!isCloudMode()) {
logger.info("skip create storgage vault case")
return;
}
if (!enableStoragevault()) {
logger.info("skip create storgage vault case")
return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ suite("test_inverted_index_file_size", "nonConcurrent"){

qt_sql """ select count() from ${tableName} where clientip match '17.0.0.0' and request match 'GET' and status match '200' and size > 200 """
qt_sql """ select count() from ${tableName} where clientip match_phrase '17.0.0.0' and request match_phrase 'GET' and status match '200' and size > 200 """
trigger_and_wait_compaction.call(tableName, "full")
trigger_and_wait_compaction(tableName, "full")
qt_sql """ select count() from ${tableName} where clientip match '17.0.0.0' and request match 'GET' and status match '200' and size > 200 """
qt_sql """ select count() from ${tableName} where clientip match_phrase '17.0.0.0' and request match_phrase 'GET' and status match '200' and size > 200 """

Expand Down

0 comments on commit 4073f9c

Please sign in to comment.