Uploaded image for project: 'Teiid'
  1. Teiid
  2. TEIID-3722

Add an option to not widen comparisons to string

    XMLWordPrintable

Details

    • Quality Risk
    • Resolution: Done
    • Major
    • 8.12
    • None
    • Query Engine
    • None

    Description

      Our resolving logic considers anything with an implicit conversion to string to be a valid widening conversion in a comparison. For example:

      int_col = '1a'

      will effectively become cast(int_col as string) = '1a'

      Or with timestamps:

      timestamp_col = '1970-01-01'

      becomes cast(timestamp_col as string) = '1970-01-01'

      In equality cases the optimizer will infer that the predicate is simply false, but when used with greater/less than comparison we'll still attempt the query with the widening conversion.

      This is most likely not the intent of the user. It would be best to provide an option that would allow an exception to be thrown rather than assuming a query that may not match the user's expectations.

      Attachments

        Issue Links

          Activity

            People

              rhn-engineering-shawkins Steven Hawkins
              rhn-engineering-shawkins Steven Hawkins
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: