Uploaded image for project: 'IMPALA'
  1. IMPALA
  2. IMPALA-6922

test_kudu_insert on exhaustive build

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Duplicate
    • Impala 3.1.0
    • None
    • Backend
    • ghx-label-5

    Description

      Error Message

      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
      

      Stacktrace

      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
      

      Standard Error

      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
      

      Attachments

        Activity

          People

            twmarshall Thomas Tauber-Marshall
            dknupp David Knupp
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: