You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Masaki Yamakawa (JIRA)" <ji...@apache.org> on 2018/02/25 12:17:14 UTC

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

Masaki Yamakawa created GEODE-4744:
--------------------------------------

             Summary: 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
            Reporter: Masaki Yamakawa


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:

```SQL
select * from /RegionA a where a['intData']=1 and a['strData1']='ABC' and a.get(1)=98 and a.get('strData2')='DEF'
```
```SQL
select * from /RegionB where mapField.get('mapData1')='ZZZ' and mapField.get(0)=123
```
> 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)