Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-11856

json_search doesn't search for values with double quotes character (")

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • 10.2(EOL)
    • 10.2.5
    • JSON
    • None
    • 10.2.5-1

    Description

      E.g. while searching for values with single quote character - everything works as expected:

      SELECT JSON_search( '{"x": "\'a\'"}', "one", '\'a\'');
      | "$.x"                                          |
      SELECT JSON_search( '{"x": "\'"}', "one", '\'');
      | "$.x"                                    |
      

      But "the same" search for double quotes returns no result:

      SELECT JSON_search( '{"x": "\\"a\\""}', "one", '"a"');
      | NULL                                           |
      SELECT JSON_search( '{"x": "\\""}', "one", '"');
      | NULL                                     |
      

      In MySQL 5.7:

       SELECT JSON_search( '{"x": "\\""}', "one", '"');
      | "$.x"                                    |
      

      Attachments

        Activity

          anikitin Andrii Nikitin (Inactive) added a comment - - edited

          Another example for similar problem with JSON_EXTRACT :

          MariaDB > SELECT JSON_EXTRACT(JSON_OBJECT('"', 1), '$."\\""') AS JE;
          +----+
          | JE |
          +----+
          | NULL |
          +----+
          

          mysql> SELECT JSON_EXTRACT(JSON_OBJECT('"', 1), '$."\\""') AS JE;
          +------+
          | JE   |
          +------+
          | 1    |
          +------+
          

          anikitin Andrii Nikitin (Inactive) added a comment - - edited Another example for similar problem with JSON_EXTRACT : MariaDB > SELECT JSON_EXTRACT(JSON_OBJECT( '"' , 1), '$."\\""' ) AS JE; + ----+ | JE | + ----+ | NULL | + ----+ mysql> SELECT JSON_EXTRACT(JSON_OBJECT( '"' , 1), '$."\\""' ) AS JE; + ------+ | JE | + ------+ | 1 | + ------+

          Actually extra-escaping of search string in first example looks helping, but it doesn't sound correct as we pass string value to sql function, not json-string ?

          MariaDB [test]> SELECT JSON_search( '{"x": "\\""}', "one", '\\"');
          +--------------------------------------------+
          | JSON_search( '{"x": "\\""}', "one", '\\"') |
          +--------------------------------------------+
          | "$.x"                                      |
          +--------------------------------------------+
          

          And removing quotes in second example helps as well! (MySQL 5.7 shows error "Invalid JSON path expression" though on it).

          MariaDB [test]> SELECT JSON_EXTRACT(JSON_OBJECT('"', 1), '$."') AS JE;
          +----+
          | JE |
          +----+
          | 1  |
          +----+
          

          This still doesn't sound logically correct. Both functions should either expect valid SQL string (probably with extra escaping for JSON) or just valid JSON string. It looks that currently JSON_search() requires JSON string according to diagram at http://json.org/ , just without wrapping quotes. And JSON_EXTRACT() expects kind of SQL string.

          anikitin Andrii Nikitin (Inactive) added a comment - Actually extra-escaping of search string in first example looks helping, but it doesn't sound correct as we pass string value to sql function, not json-string ? MariaDB [test]> SELECT JSON_search( '{"x": "\\""}' , "one ", '\\" '); + --------------------------------------------+ | JSON_search( '{"x": "\\""}' , "one ", '\\" ') | + --------------------------------------------+ | "$.x" | + --------------------------------------------+ And removing quotes in second example helps as well! (MySQL 5.7 shows error "Invalid JSON path expression" though on it). MariaDB [test]> SELECT JSON_EXTRACT(JSON_OBJECT( '"' , 1), '$."' ) AS JE; + ----+ | JE | + ----+ | 1 | + ----+ This still doesn't sound logically correct. Both functions should either expect valid SQL string (probably with extra escaping for JSON) or just valid JSON string. It looks that currently JSON_search() requires JSON string according to diagram at http://json.org/ , just without wrapping quotes. And JSON_EXTRACT() expects kind of SQL string.
          holyfoot Alexey Botchkov added a comment - http://lists.askmonty.org/pipermail/commits/2017-March/010855.html

          People

            holyfoot Alexey Botchkov
            anikitin Andrii Nikitin (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.