Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {

String command = sb.toString()
logger.info(command)
process = command.execute()
code = process.waitFor()
out = process.getText()
def process = command.execute()
def code = process.waitFor()
def out = process.getText()
logger.info("Get tablet status: =" + code + ", out=" + out)
assertEquals(code, 0)
def tabletStatus = parseJson(out.trim())
Expand All @@ -112,9 +112,9 @@ suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {

String command = sb.toString()
logger.info(command)
process = command.execute()
code = process.waitFor()
out = process.getText()
def process = command.execute()
def code = process.waitFor()
def out = process.getText()
logger.info("Get compaction status: code=" + code + ", out=" + out)
assertEquals(code, 0)
def compactionStatus = parseJson(out.trim())
Expand All @@ -132,9 +132,9 @@ suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {

String command = sb.toString()
logger.info(command)
process = command.execute()
code = process.waitFor()
out = process.getText()
def process = command.execute()
def code = process.waitFor()
def out = process.getText()
logger.info("Get local delete bitmap count status: =" + code + ", out=" + out)
assertEquals(code, 0)
def deleteBitmapStatus = parseJson(out.trim())
Expand All @@ -150,9 +150,9 @@ suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {

String command = sb.toString()
logger.info(command)
process = command.execute()
code = process.waitFor()
out = process.getText()
def process = command.execute()
def code = process.waitFor()
def out = process.getText()
logger.info("Get ms delete bitmap count status: =" + code + ", out=" + out)
assertEquals(code, 0)
def deleteBitmapStatus = parseJson(out.trim())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ suite("test_cloud_mow_stream_load_with_commit_fail", "nonConcurrent") {
file "test_stream_load0.csv"

time 10000 // limit inflight 10s
directToBe backendIdToBackendIP.get(backendId), backendId_to_backendHttpPort.get(backendId)
directToBe backendIdToBackendIP.get(backendId), backendId_to_backendHttpPort.get(backendId).toInteger()

check { result, exception, startTime, endTime ->
log.info("Stream load result: ${result}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ suite("test_cloud_version_already_merged", "nonConcurrent") {

test {
sql """ SELECT * from ${tblName} ORDER BY k1 """
exception "version already merged, meet error during remote capturing rowsets"
exception "versions are already compacted"
}

} finally {
Expand Down