Update another Kudu test to wait for modifying operations I checked that none of the other .test files contain "insert", "update", or "delete". This should be the last one. Eventually we should have a solution that provides a more robust way to "read-your-writes".
Change-Id: I6561c32b1558e0a8685392cc5739e8d2e7900e7c Reviewed-on: http://gerrit.cloudera.org:8080/2680 Reviewed-by: Alex Behm <[email protected]> Tested-by: Internal Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/3d5a21c0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/3d5a21c0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/3d5a21c0 Branch: refs/heads/master Commit: 3d5a21c04737d318501f3fe4c80ff7f4e272631a Parents: 5cd7ada Author: Casey Ching <[email protected]> Authored: Thu Mar 31 00:38:41 2016 -0700 Committer: Internal Jenkins <[email protected]> Committed: Thu Mar 31 12:30:19 2016 +0000 ---------------------------------------------------------------------- tests/query_test/test_kudu.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/3d5a21c0/tests/query_test/test_kudu.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_kudu.py b/tests/query_test/test_kudu.py index facd476..d5e4555 100644 --- a/tests/query_test/test_kudu.py +++ b/tests/query_test/test_kudu.py @@ -70,7 +70,8 @@ class TestKuduOperations(ImpalaTestSuite): self.cleanup_db("kududb_test") def test_kudu_scan_node(self, vector): - self.run_test_case('QueryTest/kudu-scan-node', vector, use_db="functional_kudu") + self.run_test_case('QueryTest/kudu-scan-node', vector, use_db="functional_kudu", + wait_secs_between_stmts=1) @pytest.mark.execute_serially def test_insert_update_delete(self, vector):
