WL#8607: Inline JSON path expressions in SQL

Status: Complete

This WL adds inlining JSON path expressions in SQL queries to MySQL server. It
should allow to execute queries like:

 SELECT ... FROM t1 WHERE t1.json_field->"$.path.to[0].key"= 123;

here 
  't1.json_field' is the column where specified path is searched,
  "$.path.to[0].key" is the JSON path expression described in WL#7909,
  '->' is used as separator between column and string literal containing path.

Essentially, this is a syntactic sugar and the query above equivalent to
following:

 SELECT ... FROM t1 WHERE JSN_EXTRACT(t1.json_field, "path.to[0].key") = 123;

This WL will do this translation during parsing.