On 24.11.2017 12:19, Oleg Bartunov wrote:
> btw, in PG 11 we expect subscription index
> update test set data[age]= '30';
Out of curiosity:
Why not?
update test set data->age= 30;
It reminds me more of how to query json in PG
select data->age from test;
Cheer,
Sven