Make JSON path numeric literals more correct
authorPeter Eisentraut <peter@eisentraut.org>
Mon, 28 Mar 2022 08:41:43 +0000 (10:41 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Mon, 28 Mar 2022 09:11:39 +0000 (11:11 +0200)
commite26114c817b610424010cfbe91a743f591246ff1
treedffb85fa7716419a907327af03ee3df09ce669e2
parent91c0570a791180aa3ff01d70eb16ed6c0d8283a3
Make JSON path numeric literals more correct

Per ECMAScript standard (ECMA-262, referenced by SQL standard), the
syntax forms

.1
1.

should be allowed for decimal numeric literals, but the existing
implementation rejected them.

Also, by the same standard, reject trailing junk after numeric
literals.

Note that the ECMAScript standard for numeric literals is in respects
like these slightly different from the JSON standard, which might be
the original cause for this discrepancy.

A change is that this kind of syntax is now rejected:

    1.type()

This needs to be written as

    (1).type()

This is correct; normal JavaScript also does not accept this syntax.

We also need to fix up the jsonpath output function for this case.  We
put parentheses around numeric items if they are followed by another
path item.

Reviewed-by: Nikita Glukhov <n.gluhov@postgrespro.ru>
Discussion: https://www.postgresql.org/message-id/flat/50a828cc-0a00-7791-7883-2ed06dfb2dbb@enterprisedb.com
src/backend/utils/adt/jsonpath.c
src/backend/utils/adt/jsonpath_scan.l
src/test/regress/expected/jsonpath.out
src/test/regress/sql/jsonpath.sql