[teiid-issues] [JBoss JIRA] (TEIID-3315) problem with function TRIM

Bram Gadeyne (JIRA) issues at jboss.org
Thu Jan 29 10:50:49 EST 2015


Bram Gadeyne created TEIID-3315:
-----------------------------------

             Summary: problem with function TRIM
                 Key: TEIID-3315
                 URL: https://issues.jboss.org/browse/TEIID-3315
             Project: Teiid
          Issue Type: Bug
    Affects Versions: 8.9.1
            Reporter: Bram Gadeyne
            Assignee: Steven Hawkins


I have a database that contains some columns with multiple values separated with comma . So I'm trying to use a combination of case, substring and trim to split these values into multiple colums.

The following statement part does not work:

case when pos2 = 0 then trim(substring(Description, pos1+1))
end as bed

TEIID31100 Parsing error: Encountered "+1)[*])[*] end as" at line 3, column 68.

If I add ' ' FROM to the trim statement it does work and returns a correct result.

working statement:

case when pos2 = 0 then trim(' ' FROM substring(Description, pos1+1))
end as bed



--
This message was sent by Atlassian JIRA
(v6.3.11#6341)


More information about the teiid-issues mailing list