De acordo com os documentos , jsonb_each_text(jsonb)
retorna
conjunto de texto-chave, texto de valor
mas se você pg_typeof(value)
no resultado mostra jsonb
, por exemplo:
SELECT *, pg_typeof(key) AS type_key, pg_typeof(value) AS type_value
FROM jsonb_each('{"2": "-200.08"}');
key | value | type_key | type_value
-----+-----------+----------+------------
2 | "-200.08" | text | jsonb
ATUALIZAÇÃO:
Eu confundi documentos com em jsonb_each_text
vez dejsonb_each
jsonb_each
não éjsonb_each_text
Não, você está ligando
jsonb_each
e fazendo referência aos documentos dejsonb_each_text
It showsEm
\dfS json_each_text
,Fazendo aquele ajuste para chamar
jsonb_each_text