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/04/24 22:27:00 UTC

[jira] [Created] (IMPALA-6922) test_kudu_insert on exhaustive build

David Knupp created IMPALA-6922:
-----------------------------------

             Summary: test_kudu_insert on exhaustive build
                 Key: IMPALA-6922
                 URL: https://issues.apache.org/jira/browse/IMPALA-6922
             Project: IMPALA
          Issue Type: Bug
          Components: Backend
    Affects Versions: Impala 3.1.0
            Reporter: David Knupp
            Assignee: Thomas Tauber-Marshall


Error Message
{noformat}
query_test/test_kudu.py:84: in test_kudu_insert     self.run_test_case('QueryTest/kudu_insert', vector, use_db=unique_database) common/impala_test_suite.py:455: in run_test_case     pytest.config.option.update_results, result_section='DML_RESULTS') common/test_result_verifier.py:404: in verify_raw_results     VERIFIER_MAP[verifier](expected, actual) common/test_result_verifier.py:231: in verify_query_result_is_equal     assert expected_results == actual_results E   assert Comparing QueryTestResults (expected vs actual): E     1,1,1,'one',true,1,1,1,1987-05-19 00:00:00,0.000000001,1.00,1 != None E     Number of rows returned (expected vs actual): 1 != 0
{noformat}

Stacktrace
{noformat}
query_test/test_kudu.py:84: in test_kudu_insert
    self.run_test_case('QueryTest/kudu_insert', vector, use_db=unique_database)
common/impala_test_suite.py:455: in run_test_case
    pytest.config.option.update_results, result_section='DML_RESULTS')
common/test_result_verifier.py:404: in verify_raw_results
    VERIFIER_MAP[verifier](expected, actual)
common/test_result_verifier.py:231: in verify_query_result_is_equal
    assert expected_results == actual_results
E   assert Comparing QueryTestResults (expected vs actual):
E     1,1,1,'one',true,1,1,1,1987-05-19 00:00:00,0.000000001,1.00,1 != None
E     Number of rows returned (expected vs actual): 1 != 0
{noformat}

Standard Error
{noformat}
SET sync_ddl=False;
-- executing against localhost:21000
DROP DATABASE IF EXISTS `test_kudu_insert_70eff904` CASCADE;

SET sync_ddl=False;
-- executing against localhost:21000
CREATE DATABASE `test_kudu_insert_70eff904`;

MainThread: Created database "test_kudu_insert_70eff904" for test ID "query_test/test_kudu.py::TestKuduOperations::()::test_kudu_insert[exec_option: {'batch_size': 0, 'num_nodes': 0, 'disable_codegen_rows_threshold': 0, 'disable_codegen': False, 'abort_on_error': 1, 'exec_single_node_rows_threshold': 0} | table_format: text/none]"
-- executing against localhost:21000
use test_kudu_insert_70eff904;

SET batch_size=0;
SET num_nodes=0;
SET disable_codegen_rows_threshold=0;
SET disable_codegen=False;
SET abort_on_error=1;
SET exec_single_node_rows_threshold=0;
-- executing against localhost:21000
create table tdata
  (id int primary key, valf float null, vali bigint null, valv string null,
   valb boolean null, valt tinyint null, vals smallint null, vald double null,
   ts timestamp, decimal4 decimal(9,9) null, decimal8 decimal(18,2) null,
   decimal16 decimal(38, 0) null)
  PARTITION BY RANGE (PARTITION VALUES < 10, PARTITION 10 <= VALUES < 30,
  PARTITION 30 <= VALUES) STORED AS KUDU;

-- executing against localhost:21000
insert into tdata values (1, 1, 1, 'one', true, 1, 1, 1,
  cast('1987-05-19 00:00:00' as timestamp), 0.000000001, 1.00, 1);

-- executing against localhost:21000
select * from tdata limit 1000;

MainThread: Comparing QueryTestResults (expected vs actual):
1,1,1,'one',true,1,1,1,1987-05-19 00:00:00,0.000000001,1.00,1 != None
Number of rows returned (expected vs actual): 1 != 0
{noformat}




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