Uploaded image for project: 'IMPALA'
  1. IMPALA
  2. IMPALA-9581

Support Kudu VARCHAR Predicates for STRING values

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • None
    • None
    • Backend
    • ghx-label-2

    Description

      Kudu VARCHAR support is added inĀ IMPALA-5092.

      Currently Impala does not pushdown predicates to Kudu unless the value is already a VARCHAR or explicitly casted. This should be enabled to make VARCHAR predicates more intuitive and performant.

      This should push down:

       select straight_join count(*) from ctas_varchar where vc > '1';
      

      However, right now this is required to push down the filter:

      select straight_join count(*) from ctas_varchar where vc > cast('1' as varchar(1));
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              granthenke Grant Henke
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated: