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

Teiid Server does not honor columns name in external materialization

    XMLWordPrintable

Details

    Description

      When defining a View with external materialization, if the view does not specify the columns in the same order as they are defined in the Materialized Table, Teiid Server inserts data in the wrong columns (in the order that is defined in the view). It appears that Teiid Server does not use the columns names but instead uses the column indexes.

      Example:

      If the view is defined like this:

      CREATE VIEW my_view (
         cns varchar(400),
         country_code varchar(400)
      )
      

      And the tables in the database are defined like this:

      CREATE TABLE my_view_cache_staging (
          country_code VARCHAR(400),
          cns VARCHAR(400)
          
      );
      
      CREATE TABLE my_view_cache (
         country_code VARCHAR(400),
          cns VARCHAR(400)
      );
      
      

      Then when loadMatView runs, it will insert in country_code column in database the values from cns (view) and in cns column in database the values from country_code (view).

      But if the view is defined like this:

      CREATE VIEW my_view (
         country_code varchar(400),
         cns varchar(400)	
      )
      

      Then Teiid will insert the data "correctly".

      It appears that loadMatView is using indexes instead of column names to insert the data.

      Attachments

        Activity

          People

            rhn-engineering-shawkins Steven Hawkins
            pringi Pedro Inácio (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: