IMPALA-7809: support Kudu 1.9 in test_concurrent_schema_change This patch extends the match of allowable errors in test_concurrent_schema_change to work with Kudu 1.9.
Testing: Local with a Kudu 1.9 minicluster environment. Change-Id: I7fc24bb6a18aecc0cb726b8d66f0aeccf56bbb9b Reviewed-on: http://gerrit.cloudera.org:8080/11882 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/impala/repo Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/d8b1e43a Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/d8b1e43a Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/d8b1e43a Branch: refs/heads/branch-3.1.0 Commit: d8b1e43a86f172bc2a76b53fae2d82420e5aca53 Parents: 0bc5446 Author: Michael Brown <[email protected]> Authored: Mon Nov 5 14:36:03 2018 -0800 Committer: Zoltan Borok-Nagy <[email protected]> Committed: Tue Nov 13 12:51:39 2018 +0100 ---------------------------------------------------------------------- tests/query_test/test_kudu.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/impala/blob/d8b1e43a/tests/query_test/test_kudu.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_kudu.py b/tests/query_test/test_kudu.py index 636c6c0..005fa63 100644 --- a/tests/query_test/test_kudu.py +++ b/tests/query_test/test_kudu.py @@ -443,7 +443,8 @@ class TestKuduOperations(KuduTestSuite): or "(type: TINYINT) is not compatible with column 'col1' (type: STRING)" in msg \ or "has fewer columns than expected." in msg \ or "Column col1 has unexpected type." in msg \ - or "Client provided column col1[int64 NULLABLE] not present in tablet" in msg + or "Client provided column col1[int64 NULLABLE] not present in tablet" in msg \ + or "Client provided column col1 INT64 NULLABLE not present in tablet" def _retry_query(self, cursor, query, expected): retries = 0
