O terceiro argumento de
jsonb_set()
deve ser de jsonb
modelo. O problema está em converter uma string de texto para uma string jsonb, você precisa de uma string entre aspas duplas. Você pode usar concat()
ou format()
:update animal
set info =
jsonb_set(info, '{location}', concat('"', lower(info->>'location'), '"')::jsonb, true)
-- jsonb_set(info, '{location}', format('"%s"', lower(info->>'location'))::jsonb, true)
where id='49493'
returning *;
id | info
-------+------------------------------------------------------------------
49493 | {"habit1": "fly", "habit2": "dive", "location": "sonoma narite"}
(1 row)
No Postgres 9.4 você deve desaninhar a coluna json usando jsonb_each_text(), agregar chaves e valores modificando o valor apropriado em tempo real e, finalmente, construir um objeto json:
update animal a
set info = u.info
from (
select id, json_object(
array_agg(key),
array_agg(
case key when 'location' then lower(value)
else value end))::jsonb as info
from animal,
lateral jsonb_each_text(info)
group by 1
) u
where u.id = a.id
and a.id = 49493;
Se você pode criar funções esta solução pode ser mais agradável:
create or replace function update_info(info jsonb)
returns jsonb language sql as $$
select json_object(
array_agg(key),
array_agg(
case key when 'location' then lower(value)
else value end))::jsonb
from jsonb_each_text(info)
$$
update animal
set info = update_info(info)
where id = 49493;