I see that Apache Ignite (and the GG editions for that matter) uses a very old version of sqlline which has issues & missing certain features. The version used is 1.3.0 which is from 2017, whereas the latest version is 1.12.0. The reason this comes up is because the old version being used in Ignite has certain issues & lacks
Tag: ignite
How can I pass a parameter in an sql query without making it explicit in the query itself?
I’m testing my ignite cache, inserting a simple User in the cache and then through a query I get the User entered previously returned I have a problem writing the query. I noticed that writing like …
How to get Ignite Cache SQL Query to Return Value Object
I have a Postgres database configured as my persistence layer and would like to execute SQL queries against the Postgres tables cached in Ignite. Ideally, I’d like to execute a query on these caches and be returned the Value objects represented by these tables. SqlQuery gives me the functionality that I am looking for but is deprecated. SqlFieldsQuery would work,
Ignite: Failed to run reduce query locally
Ignite version:2.7.0 Here are the expressions I use: SELECT CASE WHEN YEAR(A1) = 2016 THEN SUM(A2) END FROM table1 I got such a mistake: org.jkiss.dbeaver.model.sql.DBSQLException: SQL …