Re: More jsonpath methods: translate, split, join

From: Zsolt Parragi <zsolt(dot)parragi(at)percona(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: More jsonpath methods: translate, split, join
Date: 2026-06-26 20:19:12
Message-ID: CAN4CZFNoPGRzPwOpYh0RN3i3yvFqMVnmJ4Ky4_beZHDDqe3Fkg@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

+ binary_jbv.type = jbvBinary;
+ binary_jbv.val.binary.data = &jb_result->root;
+ binary_jbv.val.binary.len = VARSIZE(jb_result);

Shouldn't that use VARSIZE_ANY_EXHDR or VARSIZE(jb_result) - VARHDRSZ?

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Masahiko Sawada 2026-06-26 20:30:23 Re: Fix race condition in pg_get_publication_tables with concurrent DROP TABLE
Previous Message Zsolt Parragi 2026-06-26 20:13:22 Re: [PATCH] Improving Visibility of Temporary Table Usage