/commented by dmitriy setrakyan/
John, I just reproduced your issue. Looks like right now /select */ works
only with /SqlFieldsQuery/. If you remove/ select */ from your query, this
will work:
/*List<Entry<Long, MyTrx>> list = cache.query(new SqlQuery<Long,
MyTrx>(MyTrx.class,
"FROM MyTrx WHERE fullName ='johnsmith'")).getAll());*/
You can also pass the name as the JDBC parameter:
/*List<Entry<Long, MyTrx>> list = cache.query(new SqlQuery<Long,
MyTrx>(MyTrx.class,
"FROM MyTrx WHERE fullName = ?").setArgs("johnsmith")).getAll());*/
-----
/This post is migrated from now discontinued Apache Ignite forum at
http://apacheignite.readme.io/v1.0/discuss/
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Free-form-queries-broken-in-1-0-tp112p114.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.