I want to know if it's possible to do "replace into" like Mysql in Ignite.
Because currently I have these following code to implement this (insert if
not exists, update if exists) logic.
if not exists (select 1 from t where id = 1)
insert into t(id, update_time) values(1, getdate())
else
update t set update_time = getdate() where id = 1
In mysql, I can use this one liner sql to do the job.
replace into t(id, update_time) values(1, now());
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/