Hello,

I'm trying to listen locally events of type 
EventType.EVT_CACHE_QUERY_OBJECT_READ

I enable the events with:
ignite.events().enableLocal(EventType.EVT_CACHE_QUERY_OBJECT_READ);

An I then register a local listener with:
ignite.events().localListen(myListenerInstance, 
EventType.EVT_CACHE_QUERY_OBJECT_READ);

It works fine except that when I execute a SqlFieldsQuery on a cache, the event 
I receive has the property queryType set to SQL and not SQL_FIELDS.

I've created a test case reproducing this issue:
https://github.com/bgaraude/IgniteTest/tree/master/ignite-query-event

Am I missing something?

Benjamin

Reply via email to