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

Hive is inconsistent when handling strings in arithmetic operations

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 0.12.0
    • 0.13.0
    • Types
    • None

    Description

      Currently Hive is inconsistent in dealing with strings involved in arithmetic operations. For instance:

      hive> desc test;
      OK
      i                   	int                 	None                
      b                   	boolean             	None                
      d                   	double              	None                
      s                   	string              	None                
      dec                 	decimal(5,2)        	None                
      Hive> explain select dec/s from test;
      ...
      STAGE PLANS:
        Stage: Stage-1
          Map Reduce
            Alias -> Map Operator Tree:
              test 
                TableScan
                  alias: test
                  Select Operator
                    expressions:
                          expr: (dec / s)
                          type: decimal(65,30)
                    outputColumnNames: _col0
      hive> explain select dec*s from test;
      ...
      STAGE PLANS:
        Stage: Stage-1
          Map Reduce
            Alias -> Map Operator Tree:
              test 
                TableScan
                  alias: test
                  Select Operator
                    expressions:
                          expr: (dec * s)
                          type: double
      

      MySQL consistently treats string in arithmetic operations as double (not an exact numeric type) and derives the operator result type accordingly. Hive should also be consistent.

      
      

      Attachments

        Activity

          People

            xuefuz Xuefu Zhang
            xuefuz Xuefu Zhang
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: