Fix jsonpath existense checking of missing variables

Alexander Korotkov <akorotkov@postgresql.org>

Commit: 0d9221f1d251b956a33660bff1420140f8abebcb
Author: Alexander Korotkov <akorotkov@postgresql.org>
Date: 2023-01-12T15:18:04Z
Releases: 14.7
Fix jsonpath existense checking of missing variables

The current jsonpath code assumes that the referenced variable always exists.
It could only throw an error at the value valuation time.  At the same time
existence checking assumes variable is present without valuation, and error
suppression doesn't work for missing variables.

This commit makes existense checking trigger an error for missing variables.
This makes the overall behavior consistent.

Backpatch to 12 where jsonpath was introduced.

Reported-by: David G. Johnston
Discussion: https://postgr.es/m/CAKFQuwbeytffJkVnEqDyLZ%3DrQsznoTh1OgDoOF3VmOMkxcTMjA%40mail.gmail.com
Author: Alexander Korotkov, David G. Johnston
Backpatch-through: 12

Files

Discussion