Re: Get SqlFieldQueryResults by name

2022-06-14 Thread Surinder Mehra
Created: https://issues.apache.org/jira/browse/IGNITE-17158 Thanks On Tue, Jun 14, 2022 at 2:10 PM Stephen Darlington < stephen.darling...@gridgain.com> wrote: > You can file a ticket on Ignite’s Jira: > https://issues.apache.org/jira/browse/IGNITE > > More, in general, about how to get involved

Re: Get SqlFieldQueryResults by name

2022-06-14 Thread Stephen Darlington
You can file a ticket on Ignite’s Jira: https://issues.apache.org/jira/browse/IGNITE More, in general, about how to get involved here: https://ignite.apache.org/our-community.html#faq > On 13 Jun 2022, at 11:38, Surinder Mehra wrote: > > Hello, > Can someone please log a feature request. Thi

Re: Get SqlFieldQueryResults by name

2022-06-13 Thread Surinder Mehra
Hello, Can someone please log a feature request. This would be very useful feature for everyone using SQL queries On Fri, Apr 8, 2022 at 8:03 PM Surinder Mehra wrote: > Ok thanks for letting me know. Is there a guideline for raising feature > request. > > On Fri, 8 Apr 2022, 18:10 Stephen Darlin

Re: Get SqlFieldQueryResults by name

2022-04-08 Thread Surinder Mehra
Ok thanks for letting me know. Is there a guideline for raising feature request. On Fri, 8 Apr 2022, 18:10 Stephen Darlington, < stephen.darling...@gridgain.com> wrote: > That would be a nice feature but I don’t think it’s currently possible. It > may be worth creating a feature request ticket. >

Re: Get SqlFieldQueryResults by name

2022-04-08 Thread Stephen Darlington
That would be a nice feature but I don’t think it’s currently possible. It may be worth creating a feature request ticket. > On 8 Apr 2022, at 13:30, Surinder Mehra wrote: > > Hi, > I was going through the below example and have a question if we can get > fields using field names from query

Get SqlFieldQueryResults by name

2022-04-08 Thread Surinder Mehra
Hi, I was going through the below example and have a question if we can get fields using field names from query results. like "select name as person_name, p.age as person_age from Person p" It would return List. The inner list is each person row returned with results as per order in sql query. Whil