[teiid-issues] [JBoss JIRA] (TEIID-4423) UPDATE command with non-pushdown functions leads to TEIID30253 error

Steven Hawkins (JIRA) issues at jboss.org
Thu Sep 1 14:52:00 EDT 2016


    [ https://issues.jboss.org/browse/TEIID-4423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13287687#comment-13287687 ] 

Steven Hawkins commented on TEIID-4423:
---------------------------------------

If id is not unique, then marking it as a pk/unique won't work.  So in general the only approach here would be to add pushdown support for the uuid function and just use:

id = uuid()

> update test.textagg_test_2 set id =(select uuid()) where id = 'xxxx'

Specifically for that case the workaround would be:

update test.textagg_test_2 set id =(with u (id) as (select uuid()) select id from u) where id = 'xxxx'

That will force a single value for the uuid function / subquery.



> UPDATE command with non-pushdown functions leads to TEIID30253 error
> --------------------------------------------------------------------
>
>                 Key: TEIID-4423
>                 URL: https://issues.jboss.org/browse/TEIID-4423
>             Project: Teiid
>          Issue Type: Bug
>          Components: Query Engine
>    Affects Versions: 8.12.x
>         Environment: teiid-8.12-Beta1 on Red Hat JBoss Enterprise Application Platform - Version 6.3.0.GA
> teiid-9.0.3 on WildFly Full 9.0.2.Final
>            Reporter: dalex dalex
>            Assignee: Steven Hawkins
>
> Running the following queries:
> {code:sql}
> update test.textagg_test_2 set id =(select uuid());;
> {code}
> or
> {code:sql}
> update test.textagg_test_2 set id =(select rand());;
> {code}
> leads to the following errors:
> {code}
> TEIID30253 Source UPDATE or DELETE command "UPDATE test.textagg_test_2 SET id = (SELECT uuid() LIMIT 2)" contains non-pushdown constructs and no compensating action can be taken as the table lacks a unique key or the source does not support equality predicates. 
> {code}
> and
> {code}
> TEIID30253 Source UPDATE or DELETE command "UPDATE test.textagg_test_2 SET id = convert((SELECT rand() LIMIT 2), string)" contains non-pushdown constructs and no compensating action can be taken as the table lacks a unique key or the source does not support equality predicates. 
> {code}
> though the following query:
> {code:sql}
> update test.textagg_test_2 set id =(select now());;
> {code}
> works without errors.



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the teiid-issues mailing list