You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "David Knupp (JIRA)" <ji...@apache.org> on 2018/11/02 19:20:00 UTC

[jira] [Created] (IMPALA-7803) PlannerTest.testHbase failing on centos6 exhaustive test run

David Knupp created IMPALA-7803:
-----------------------------------

             Summary: PlannerTest.testHbase failing on centos6 exhaustive test run
                 Key: IMPALA-7803
                 URL: https://issues.apache.org/jira/browse/IMPALA-7803
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 3.1.0
            Reporter: David Knupp


*Error Message*
{noformat}
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id > '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 5\0:<unbounded>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NODE 0:

Expected:
  HBASE KEYRANGE 5\0:7
  HBASE KEYRANGE 7:<unbounded>
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id >= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 5:<unbounded>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NODE 0:

Expected:
  HBASE KEYRANGE 5:7
  HBASE KEYRANGE 7:<unbounded>
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id > '4' and id <= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 4\0:5
^^^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4\0:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id >= '4' and id <= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where string_col = '4' and tinyint_col = 5 and id >= '4' and id <= '5'
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where string_col = '4' and tinyint_col = 5
  and id >= concat('', '4') and id <= concat('5', '')
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.alltypesagg
where bigint_col is not null and bool_col = true
Actual does not match expected result:
  HBASE KEYRANGE 3:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:<unbounded>
  HBASE KEYRANGE <unbounded>:3
NODE 0:

Expected:
  HBASE KEYRANGE 3:7
  HBASE KEYRANGE 7:<unbounded>
  HBASE KEYRANGE <unbounded>:3
NODE 0:
Stacktrace
java.lang.AssertionError: section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id > '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 5\0:<unbounded>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NODE 0:

Expected:
  HBASE KEYRANGE 5\0:7
  HBASE KEYRANGE 7:<unbounded>
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id >= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 5:<unbounded>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NODE 0:

Expected:
  HBASE KEYRANGE 5:7
  HBASE KEYRANGE 7:<unbounded>
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id > '4' and id <= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 4\0:5
^^^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4\0:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where id >= '4' and id <= '5'
and tinyint_col = 5
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where string_col = '4' and tinyint_col = 5 and id >= '4' and id <= '5'
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.stringids
where string_col = '4' and tinyint_col = 5
  and id >= concat('', '4') and id <= concat('5', '')
Actual does not match expected result:
  HBASE KEYRANGE 4:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:5\0
NODE 0:

Expected:
  HBASE KEYRANGE 4:5\0
NODE 0:
section SCANRANGELOCATIONS of query:
select * from functional_hbase.alltypesagg
where bigint_col is not null and bool_col = true
Actual does not match expected result:
  HBASE KEYRANGE 3:5
^^^^^^^^^^^^^^^^^^^^
  HBASE KEYRANGE 5:<unbounded>
  HBASE KEYRANGE <unbounded>:3
NODE 0:

Expected:
  HBASE KEYRANGE 3:7
  HBASE KEYRANGE 7:<unbounded>
  HBASE KEYRANGE <unbounded>:3
NODE 0:

	at org.junit.Assert.fail(Assert.java:88)
	at org.apache.impala.planner.PlannerTestBase.runPlannerTestFile(PlannerTestBase.java:857)
	at org.apache.impala.planner.PlannerTestBase.runPlannerTestFile(PlannerTestBase.java:862)
	at org.apache.impala.planner.PlannerTest.testHbase(PlannerTest.java:126)
{noformat}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)