[Fix](test) fix flake case in both test_insert_strict_fail_url and test_insert_partition_fail_url #40998 (#41024)

cherry pick from #40998
This commit is contained in:
Xin Liao
2024-09-20 09:52:09 +08:00
committed by GitHub
parent 64880a10d6
commit 3249931fa6
2 changed files with 18 additions and 4 deletions

View File

@ -73,11 +73,18 @@ suite("test_insert_partition_fail_url") {
INSERT INTO ${srcName} SELECT * FROM ${srcName};
"""
// The error message may vary due to variations in fuzzy execution instance number or batch size.
// like this:
// Insert has filtered data in strict mode. url: http://172.16.0.10:8041/api/_load_error_log?
// file=__shard_303/error_log_insert_stmt_a1ccfb9c67ba40f5-900d0db1d06a19dd_a1ccfb9c67ba40f5_900d0db1d06a19dd
// or like this:
// [DATA_QUALITY_ERROR]Encountered unqualified data, stop processing. url: http://172.16.0.10:8041/api/_load_error_log?
// file=__shard_303/error_log_insert_stmt_a1ccfb9c67ba40f5-900d0db1d06a19dd_a1ccfb9c67ba40f5_900d0db1d06a19dd
expectExceptionLike({
sql """
INSERT INTO ${dstName} SELECT `id`, `score` FROM ${srcName};
"""
}, "Insert has filtered data in strict mode. url: ")
}, "error_log")
sql """
INSERT INTO ${srcName} SELECT * FROM ${srcName};
@ -87,5 +94,5 @@ suite("test_insert_partition_fail_url") {
sql """
INSERT INTO ${dstName} SELECT `id`, `score` FROM ${srcName};
"""
}, "Encountered unqualified data, stop processing. url: ")
}, "error_log")
}

View File

@ -69,11 +69,18 @@ suite("test_insert_strict_fail_url") {
INSERT INTO ${srcName} SELECT * FROM ${srcName};
"""
// The error message may vary due to variations in fuzzy execution instance number or batch size.
// like this:
// Insert has filtered data in strict mode. url: http://172.16.0.10:8041/api/_load_error_log?
// file=__shard_303/error_log_insert_stmt_a1ccfb9c67ba40f5-900d0db1d06a19dd_a1ccfb9c67ba40f5_900d0db1d06a19dd
// or like this:
// [DATA_QUALITY_ERROR]Encountered unqualified data, stop processing. url: http://172.16.0.10:8041/api/_load_error_log?
// file=__shard_303/error_log_insert_stmt_a1ccfb9c67ba40f5-900d0db1d06a19dd_a1ccfb9c67ba40f5_900d0db1d06a19dd
expectExceptionLike({
sql """
INSERT INTO ${dstName} SELECT `id`, `score` FROM ${srcName};
"""
}, "Insert has filtered data in strict mode. url: ")
}, "error_log")
sql """
INSERT INTO ${srcName} SELECT * FROM ${srcName};
@ -83,5 +90,5 @@ suite("test_insert_strict_fail_url") {
sql """
INSERT INTO ${dstName} SELECT `id`, `score` FROM ${srcName};
"""
}, "[DATA_QUALITY_ERROR]Encountered unqualified data, stop processing. url: ")
}, "error_log")
}