Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-22055

select count gives incorrect result after loading data from text file

    XMLWordPrintableJSON

Details

    • Task
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 4.0.0-alpha-1
    • Hive
    • None

    Description

      Add one more load to mm_loaddata.q:

      Load data 3 times (both kv1.txt and kv2.txt contains 500 records)

      create table load0_mm (key string, value string) stored as textfile tblproperties("transactional"="true", "transactional_properties"="insert_only");
      load data local inpath '../../data/files/kv1.txt' into table load0_mm;
      select count(1) from load0_mm;
      load data local inpath '../../data/files/kv2.txt' into table load0_mm;
      select count(1) from load0_mm;
      load data local inpath '../../data/files/kv2.txt' into table load0_mm;
      select count(1) from load0_mm;

      Expected output

      PREHOOK: query: load data local inpath '../../data/files/kv2.txt' into table load0_mm
      PREHOOK: type: LOAD
      #### A masked pattern was here ####
      PREHOOK: Output: default@load0_mm
      POSTHOOK: query: load data local inpath '../../data/files/kv2.txt' into table load0_mm
      POSTHOOK: type: LOAD
      #### A masked pattern was here ####
      POSTHOOK: Output: default@load0_mm
      PREHOOK: query: select count(1) from load0_mm
      PREHOOK: type: QUERY
      PREHOOK: Input: default@load0_mm
      #### A masked pattern was here ####
      POSTHOOK: query: select count(1) from load0_mm
      POSTHOOK: type: QUERY
      POSTHOOK: Input: default@load0_mm
      #### A masked pattern was here ####
      1500

      Got:

      [ERROR]   TestMiniLlapLocalCliDriver.testCliDriver:59 Client Execution succeeded but contained differences (error code = 1) after executing mm_loaddata.q

      63c63

      < 1480

      > 1500

       

      Attachments

        1. HIVE-22055.2.patch
          12 kB
          Attila Magyar

        Issue Links

          Activity

            People

              amagyar Attila Magyar
              amagyar Attila Magyar
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: