Uploaded image for project: 'Calcite'
  1. Calcite
  2. CALCITE-4897

Implicit type conversion is not complete for set operation in DML

    XMLWordPrintableJSON

Details

    Description

      case1

       Here is the sql:

      insert into t3 
      select 'a', 1.0, 1 union 
      select 'b', 2, 2 union 
      select 'c', 3.0, CAST(3 AS SMALLINT) union 
      select 'd', 4.0, 4 union 
      select 'e', 5.0, 5 

      but the validated sql is :    (The same problem occurs in other set operations in DML)

      INSERT INTO `CATALOG`.`SALES`.`T3`
      SELECT 'a', CAST(1.0 AS INTEGER), CAST(1 AS SMALLINT) UNION
      SELECT 'b', 2, CAST(2 AS SMALLINT) UNION
      SELECT 'c', 3.0, CAST(3 AS SMALLINT) UNION
      SELECT 'd', 4.0, 4 UNION -- should be cast  
      SELECT 'e', 5.0, 5 -- should be cast 

      This is why CALCITE-4458 changed '&&' to '||', the right validated sql is:

      INSERT INTO `CATALOG`.`SALES`.`T3`
      SELECT 'a', CAST(1.0 AS INTEGER), CAST(1 AS SMALLINT)
      UNION
      SELECT 'b', 2, CAST(2 AS SMALLINT)
      UNION
      SELECT 'c', CAST(3.0 AS INTEGER), CAST(3 AS SMALLINT)
      UNION
      SELECT 'd', CAST(4.0 AS INTEGER), CAST(4 AS SMALLINT)
      UNION
      SELECT 'e', CAST(5.0 AS INTEGER), CAST(5 AS SMALLINT)

       

      case2
      Here is the sql

      insert into t3 values 
      ('a', 1.0, 1), 
      ('b', 2, 2), 
      ('c', 3.0, CAST(3 AS SMALLINT)), 
      ('d', 4.0, 4), 
      ('e', 5.0, 5)

       the validated sql is :

      INSERT INTO `CATALOG`.`SALES`.`T3`
      VALUES ROW('a', CAST(1.0 AS INTEGER), CAST(1 AS SMALLINT)),
      ROW('b', 2, CAST(2 AS SMALLINT)),-- Encountered an integer and ended early
      ROW('c', 3.0, CAST(3 AS SMALLINT)),-- Encountered an samllint and ended early 
      ROW('d', 4.0, 4),
      ROW('e', 5.0, 5) 

      the right validated sql is:

      INSERT INTO `CATALOG`.`SALES`.`T3`
      VALUES ROW('a', CAST(1.0 AS INTEGER), CAST(1 AS SMALLINT)),
      ROW('b', 2, CAST(2 AS SMALLINT)),
      ROW('c', CAST(3.0 AS INTEGER), CAST(3 AS SMALLINT)),
      ROW('d', CAST(4.0 AS INTEGER), CAST(4 AS SMALLINT)),
      ROW('e', CAST(5.0 AS INTEGER), CAST(5 AS SMALLINT))

       

      Attachments

        Issue Links

          Activity

            People

              jiajunbernoulli Jiajun Xie
              jiajunbernoulli Jiajun Xie
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 2h 50m
                  2h 50m