This is an automated email from the ASF dual-hosted git repository. boroknagyz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 40b9b9cd7525298f80ebab5cc0bd198d507785e5 Author: Tamas Mate <[email protected]> AuthorDate: Tue Aug 23 11:03:48 2022 +0200 IMPALA-11521: Fix test_binary_type Fix test_binary_type typo, it should not reference to an HBase table. Change-Id: Id41049094b632af6326f6ee9f3886577d1fc5ee6 Reviewed-on: http://gerrit.cloudera.org:8080/18895 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- testdata/workloads/functional-query/queries/QueryTest/binary-type.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testdata/workloads/functional-query/queries/QueryTest/binary-type.test b/testdata/workloads/functional-query/queries/QueryTest/binary-type.test index 3b145baa4..1462b4820 100644 --- a/testdata/workloads/functional-query/queries/QueryTest/binary-type.test +++ b/testdata/workloads/functional-query/queries/QueryTest/binary-type.test @@ -136,7 +136,7 @@ BIGINT, BIGINT ==== ---- QUERY select bb1.id, bb2.id, bb1.binary_col_with_nulls, bb2.binary_col_with_nulls - from binary_tbl_big bb1 left join functional_hbase.binary_tbl_big bb2 + from binary_tbl_big bb1 left join binary_tbl_big bb2 on bb1.binary_col_with_nulls = bb2.binary_col_with_nulls where bb1.id < 3 and bb2.id < 3; ---- TYPES
