You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2018/02/28 17:52:00 UTC

[jira] [Commented] (GEODE-4744) Allow java.util.Map#get in OQL when security is enabled

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

ASF subversion and git services commented on GEODE-4744:
--------------------------------------------------------

Commit 967b9dba0576b43a00280528e0ff4a53eb1d1bf3 in geode's branch refs/heads/develop from [~masaki.yamakawa]
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=967b9db ]

GEODE-4744: Allow java.util.Map#get in OQL when security is enabled


> Allow java.util.Map#get in OQL when security is enabled
> -------------------------------------------------------
>
>                 Key: GEODE-4744
>                 URL: https://issues.apache.org/jira/browse/GEODE-4744
>             Project: Geode
>          Issue Type: Improvement
>          Components: querying
>    Affects Versions: 1.3.0
>            Reporter: Masaki Yamakawa
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> I am migrating from GemFire 7.x to Geode. After migration, An exception is now thrown in OQL when security is enabled.
> The OQL in which the exception occurs is as follows:
> {code:sql}
> select * from /RegionA a where a['intData']=1 and a['strData1']='ABC' and a.get(1)=98 and a.get('strData2')='DEF'
> {code}
> {code:sql}
> select * from /RegionB where mapField.get('mapData1')='ZZZ' and mapField.get(0)=123
> {code}
> * The value of Region A is java.util.Map, the value of Region B is its domain object, and it holds the public field of java.util.Map called mapField.
> I would like to allow java.util.Map#get in OQL.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)