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

Impala uses _c# aliases for functions when a query is run against a view

    XMLWordPrintableJSON

Details

    Description

      Impala uses _c# aliases for functions when a query is run against a view, while it does not use it when the same query is run against the real table. This is preventing applications to run transparently on the view. Impala should not use _c# aliases, unless necessary.

      Query: select avg(col1) from impala_test_table
      +-----------+
      | avg(col1) |
      +-----------+
      | 1.5       |
      +-----------+
      
      Query: select avg(col1) from impala_test_view
      +-----+
      | _c0 |
      +-----+
      | 1.5 |
      +-----+
      

      Attachments

        Activity

          People

            alex.behm Alexander Behm
            morhidi Matyas Orhidi
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: