Uploaded image for project: 'Apache Trafodion (Retired)'
  1. Apache Trafodion (Retired)
  2. TRAFODION-3043

DATE_PART(YEARQUARTER|YEARMONTH|YEARWEEK, <interval>) should return a proper error

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.3
    • 2.3
    • sql-cmp
    • None

    Description

      If we run the following script:

      drop table if exists t;
      create table t (c1 interval year to month, c2 interval month);
      insert into t values (interval '11-01' year to month, interval '11' month);

      select DATE_PART('YEARQUARTER', c1) from t;
      select DATE_PART('YEARQUARTER', c2) from t;

      select DATE_PART('YEARMONTH', c1) from t;
      select DATE_PART('YEARMONTH', c2) from t;

      select DATE_PART('YEARWEEK', c1) from t;
      select DATE_PART('YEARWEEK', c2) from t;

      We get correct 4037 error messages on column c2. For YEARQUARTER and YEARMONTH on c1 though we get an internal error 8001 at run-time instead. For YEARWEEK we get a compile time error 4035 on c1 instead.

       

      Attachments

        Issue Links

          Activity

            People

              dbirdsall Dave Birdsall
              dbirdsall Dave Birdsall
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: