|
|
|
|
|
by nodakai
590 days ago
|
|
That nested JSON query operator chains such as json_col->'foo'->'bar'->>'baz' internally return (copy) entire sub-objects at each level and can be much slower than jsonb_path_query(json_col, '$.foo.bar.baz') for large JSONB data ... although I haven't had the chance to verify this myself |
|