You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by "Thomas Andraschko (JIRA)" <ji...@apache.org> on 2016/05/23 19:14:13 UTC

[jira] [Comment Edited] (DELTASPIKE-1089) No possible to select non Entity object via Native query

    [ https://issues.apache.org/jira/browse/DELTASPIKE-1089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15296904#comment-15296904 ] 

Thomas Andraschko edited comment on DELTASPIKE-1089 at 5/23/16 7:13 PM:
------------------------------------------------------------------------

Shouldn't it already work?
AFAICS we already pass the entity class:

'
        else if (query.isNative())
        {
            String jpqlQuery = context.applyQueryStringPostProcessors(query.value());
            result = params.applyTo(entityManager.createNativeQuery(jpqlQuery, context.getEntityClass()));
        }
'


was (Author: tandraschko):
Shouldn't it already work?
AFAICS we already pass the entity class:

        else if (query.isNative())
        {
            String jpqlQuery = context.applyQueryStringPostProcessors(query.value());
            result = params.applyTo(entityManager.createNativeQuery(jpqlQuery, context.getEntityClass()));
        }

> No possible to select non Entity object via Native query
> --------------------------------------------------------
>
>                 Key: DELTASPIKE-1089
>                 URL: https://issues.apache.org/jira/browse/DELTASPIKE-1089
>             Project: DeltaSpike
>          Issue Type: Bug
>    Affects Versions: 1.5.4
>            Reporter: VITALIY SAVCHENKO
>            Assignee: Daniel Cunha
>
> After DELTASPIKE-978 in repository no possible to select non Entity object via Native query.
> For example(very simple):
> {code:java}
> @Query(
> isNative = true,
> value = "  SELECT  name  FROM actions ")
> @Override
> public abstract Collection<String> listActions();
> {code}
> Reason:
> Changes in AnnotatedQueryBuilder.java
> -            result = params.applyTo(entityManager.createNativeQuery(jpqlQuery));
> +            result = params.applyTo(entityManager.createNativeQuery(jpqlQuery, context.getEntityClass()));
> Now native query can return only Entity of this repository.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)