Skip to content
Snippets Groups Projects
Commit b70aae59 authored by Vladislav Shpilevoy's avatar Vladislav Shpilevoy
Browse files

json: detect a new invalid json path case

JSON paths has no a strict standard, but definitely there is no
an implementation, allowing to omit '.' after [], if a next token
is a key. For example:

    [1]key

is invalid. It should be written like that:

    [1].key

Strangely, but we even had tests on the invalid case.

Closes #4419

(cherry picked from commit ef64ee51)
parent 2d6565a3
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment