Contribution to calcite elastic search development

2019-02-18 Thread Shashwat Kumar
lasticsearch in my project and would like to contribute in it. I would like to know if there is any priority list of items which I can take or other ongoing developments in it. Kindly guide me through other necessary resources or guidelines. -- Regards Shashwat Kumar

Is elasticsearch adapter compatible with elasticsearch version 6.5.4

2019-01-24 Thread Shashwat Kumar
Hi, I see that lates calcite adapter jar on maven uses elasticsearch rest client version 6.2.4. Does it make necessary to use elastic search version 6.2.4? Can I use a higher version of elasticsearch i.e. 6.5.4? -- Regards Shashwat Kumar

Avoid SqlParser.toSqlString() adding double quotes to select identifiers

2018-11-11 Thread Shashwat Kumar
FROM "logs" How should I do this? Thank you in advance for any suggestions. -- Regards Shashwat Kumar

Re: How to modify select identifiers

2018-10-31 Thread Shashwat Kumar
haps you have to modify it a bit > or play around, but this should be the general direction, I think. > > Julian > > Am 31.10.18, 11:28 schrieb "Shashwat Kumar" : > > Hi Julian, > > Thank you for quick response. > SqlCall is abstract class so I

Re: How to modify select identifiers

2018-10-31 Thread Shashwat Kumar
(value, v)). > So you need to create a call node (SqlCall) with the AS Operator > (SqlStdOperatorTable.AS) and as operands you node and an SqlIdentifier for > the Alias. > > But your visitor should then return SqlNode not String, or? > I'll will change it to SqlNode. > > Be

How to modify select identifiers

2018-10-31 Thread Shashwat Kumar
(); for (SqlNode sqlNode : selectList) { *// do something with sqlNode* } } Now how to change sqlNode as per requirement? -- Regards Shashwat Kumar

Re: Access SELECT and WHERE Clause column names in SQL Query

2018-10-31 Thread Shashwat Kumar
eQuery method. With the resulting SqlNode, you may want to try > implementing the SqlVisitor interface to get the data you need. > > -- > Michael Mior > mm...@apache.org > > > Le mar. 30 oct. 2018 à 02:02, Shashwat Kumar a > écrit : > > > Hi, > > > >

Re: Provide model.json file from Resources in Jar

2018-10-29 Thread Shashwat Kumar
Thank you everyone for the suggestions. For now I have been able to use "inline" method to do the job. I'll try to try other methods and see if they are working or not.

Access SELECT and WHERE Clause column names in SQL Query

2018-10-29 Thread Shashwat Kumar
Shashwat Kumar

Provide model.json file from Resources in Jar

2018-10-26 Thread Shashwat Kumar
t;); It there some way to do so or some existing workaround? -- Regards Shashwat Kumar

Fwd: How to pass model.json location in jar packaging

2018-10-25 Thread Shashwat Kumar
keeping model.json in resource folder, I am not finding any way to pass model.json. In jar the resource files are to be accessed as ResourceStream. Is there any way to pass Inputstream to calcite or any other way to implement inside a jar? -- Regards Shashwat Kumar

Elastic Search adapter not identifying columns

2018-10-22 Thread Shashwat Kumar
*_MAPS *and whole json document as one row. Does adapter not support columns for elasticsearch? -- Regards Shashwat Kumar