Details

    Description

      JSON_ARRAYAGG() doesn't evaluate correct charset.

      reproduce:

      MariaDB [test]> CREATE TABLE t1 (a varchar(5));
      Query OK, 0 rows affected (0.035 sec)
       
      MariaDB [test]> INSERT INTO t1 VALUES ('a'),('ä');
      Query OK, 2 rows affected (0.014 sec)
       
      MariaDB [test]> select * from t1;
      +------+
      | a    |
      +------+
      | a    |
      | ä    |
      +------+
      2 rows in set (0.000 sec)
       
      MariaDB [test]> SELECT JSON_ARRAYAGG(a) FROM t1;
      +------------------+
      | JSON_ARRAYAGG(a) |
      +------------------+
      | ["a","▒"]         |
      +------------------+
      1 row in set (0.001 sec)
       
      MariaDB [test]> SELECT JSON_ARRAY(a) FROM t1;
      +---------------+
      | JSON_ARRAY(a) |
      +---------------+
      | ["a"]         |
      | ["ä"]         |
      +---------------+
      2 rows in set (0.000 sec)
       
      MariaDB [test]> select @@version;
      +--------------------------------------+
      | @@version                            |
      +--------------------------------------+
      | 10.5.8-MariaDB-1:10.5.8+maria~bionic |
      +--------------------------------------+
       
      MariaDB [(none)]> select @@character_set_server,@@character_set_client,@@character_set_results,@@collation_connection;
      +------------------------+------------------------+-------------------------+------------------------+
      | @@character_set_server | @@character_set_client | @@character_set_results | @@collation_connection |
      +------------------------+------------------------+-------------------------+------------------------+
      | utf8mb4                | utf8                   | utf8                    | utf8_general_ci        |
      +------------------------+------------------------+-------------------------+------------------------+
      1 row in set (0.000 sec)
      

      Attachments

        Issue Links

          Activity

            thk Thomas K. created issue -
            thk Thomas K. made changes -
            Field Original Value New Value
            alice Alice Sherepa made changes -
            Description JSON_ARRAYAGG() doesn't evaluate correct charset.

            reproduce:

            MariaDB [test]> CREATE TABLE t1 (a varchar(5));
            Query OK, 0 rows affected (0.035 sec)

            MariaDB [test]> INSERT INTO t1 VALUES ('a'),('ä');
            Query OK, 2 rows affected (0.014 sec)

            MariaDB [test]> select * from t1;
            +------+
            | a |
            +------+
            | a |
            | ä |
            +------+
            2 rows in set (0.000 sec)

            MariaDB [test]> SELECT JSON_ARRAYAGG(a) FROM t1;
            +------------------+
            | JSON_ARRAYAGG(a) |
            +------------------+
            | ["a","▒"] |
            +------------------+
            1 row in set (0.001 sec)

            MariaDB [test]> SELECT JSON_ARRAY(a) FROM t1;
            +---------------+
            | JSON_ARRAY(a) |
            +---------------+
            | ["a"] |
            | ["ä"] |
            +---------------+
            2 rows in set (0.000 sec)

            MariaDB [test]> select @@version;
            +--------------------------------------+
            | @@version |
            +--------------------------------------+
            | 10.5.8-MariaDB-1:10.5.8+maria~bionic |
            +--------------------------------------+

            MariaDB [(none)]> select @@character_set_server,@@character_set_client,@@character_set_results,@@collation_connection;
            +------------------------+------------------------+-------------------------+------------------------+
            | @@character_set_server | @@character_set_client | @@character_set_results | @@collation_connection |
            +------------------------+------------------------+-------------------------+------------------------+
            | utf8mb4 | utf8 | utf8 | utf8_general_ci |
            +------------------------+------------------------+-------------------------+------------------------+
            1 row in set (0.000 sec)
            JSON_ARRAYAGG() doesn't evaluate correct charset.

            reproduce:


            {noformat}
            MariaDB [test]> CREATE TABLE t1 (a varchar(5));
            Query OK, 0 rows affected (0.035 sec)

            MariaDB [test]> INSERT INTO t1 VALUES ('a'),('ä');
            Query OK, 2 rows affected (0.014 sec)

            MariaDB [test]> select * from t1;
            +------+
            | a |
            +------+
            | a |
            | ä |
            +------+
            2 rows in set (0.000 sec)

            MariaDB [test]> SELECT JSON_ARRAYAGG(a) FROM t1;
            +------------------+
            | JSON_ARRAYAGG(a) |
            +------------------+
            | ["a","▒"] |
            +------------------+
            1 row in set (0.001 sec)

            MariaDB [test]> SELECT JSON_ARRAY(a) FROM t1;
            +---------------+
            | JSON_ARRAY(a) |
            +---------------+
            | ["a"] |
            | ["ä"] |
            +---------------+
            2 rows in set (0.000 sec)

            MariaDB [test]> select @@version;
            +--------------------------------------+
            | @@version |
            +--------------------------------------+
            | 10.5.8-MariaDB-1:10.5.8+maria~bionic |
            +--------------------------------------+

            MariaDB [(none)]> select @@character_set_server,@@character_set_client,@@character_set_results,@@collation_connection;
            +------------------------+------------------------+-------------------------+------------------------+
            | @@character_set_server | @@character_set_client | @@character_set_results | @@collation_connection |
            +------------------------+------------------------+-------------------------+------------------------+
            | utf8mb4 | utf8 | utf8 | utf8_general_ci |
            +------------------------+------------------------+-------------------------+------------------------+
            1 row in set (0.000 sec)
            {noformat}
            alice Alice Sherepa added a comment -

            MariaDB [test]> set names latin1;
            Query OK, 0 rows affected (0.000 sec)
             
            MariaDB [test]> SELECT JSON_ARRAYAGG('ä');
            +---------------------+
            | JSON_ARRAYAGG('ä')  |
            +---------------------+
            | ["ä"]               |
            +---------------------+
            1 row in set (0.000 sec)
             
            MariaDB [test]> set names utf8;
            Query OK, 0 rows affected (0.000 sec)
             
            MariaDB [test]> SELECT JSON_ARRAYAGG('ä');
            +---------------------+
            | JSON_ARRAYAGG('ä')  |
            +---------------------+
            | ["�"]                |
            +---------------------+
            1 row in set (0.000 sec)
             
            MariaDB [test]> SELECT 'ä';
            +----+
            | ä  |
            +----+
            | ä  |
            +----+
            1 row in set (0.000 sec)
            
            

            alice Alice Sherepa added a comment - MariaDB [test]> set names latin1; Query OK, 0 rows affected (0.000 sec)   MariaDB [test]> SELECT JSON_ARRAYAGG('ä'); +---------------------+ | JSON_ARRAYAGG('ä') | +---------------------+ | ["ä"] | +---------------------+ 1 row in set (0.000 sec)   MariaDB [test]> set names utf8; Query OK, 0 rows affected (0.000 sec)   MariaDB [test]> SELECT JSON_ARRAYAGG('ä'); +---------------------+ | JSON_ARRAYAGG('ä') | +---------------------+ | ["�"] | +---------------------+ 1 row in set (0.000 sec)   MariaDB [test]> SELECT 'ä'; +----+ | ä | +----+ | ä | +----+ 1 row in set (0.000 sec)
            alice Alice Sherepa made changes -
            Affects Version/s 10.5 [ 23123 ]
            alice Alice Sherepa made changes -
            Fix Version/s 10.5 [ 23123 ]
            alice Alice Sherepa made changes -
            Priority Critical [ 2 ] Major [ 3 ]
            alice Alice Sherepa made changes -
            Assignee Alexey Botchkov [ holyfoot ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 118801 ] MariaDB v4 [ 142561 ]
            nayuta-yanagisawa Nayuta Yanagisawa (Inactive) made changes -
            Assignee Alexey Botchkov [ holyfoot ] Rucha Deodhar [ rucha174 ]
            pvgoran Pavel Goran added a comment -

            This bug makes JSON_ARRAYAGG pretty much unusable for working with string data. (It seems to work fine with data from JSON columns, though.)

            pvgoran Pavel Goran added a comment - This bug makes JSON_ARRAYAGG pretty much unusable for working with string data. (It seems to work fine with data from JSON columns, though.)
            pvgoran Pavel Goran added a comment -

            JSON_OBJECTAGG is apparently not affected by this bug. Which allows to use it as a partial work-around (with DISTINCT, ORDER BY and other JSON_OBJECTAGG's aggregation clauses unavailable):

            MariaDB [...]> SELECT JSON_EXTRACT(JSON_OBJECTAGG('1', a), '$.*') FROM t1;
            +---------------------------------------------+
            | JSON_EXTRACT(JSON_OBJECTAGG('1', a), '$.*') |
            +---------------------------------------------+
            | ["a", "ä"]                                  |
            +---------------------------------------------+
            1 row in set (0.000 sec)
             
            MariaDB [...]> select @@version;
            +---------------------+
            | @@version           |
            +---------------------+
            | 10.6.15-MariaDB-log |
            +---------------------+
            1 row in set (0.000 sec)
            

            pvgoran Pavel Goran added a comment - JSON_OBJECTAGG is apparently not affected by this bug. Which allows to use it as a partial work-around (with DISTINCT , ORDER BY and other JSON_OBJECTAGG 's aggregation clauses unavailable): MariaDB [...]> SELECT JSON_EXTRACT(JSON_OBJECTAGG('1', a), '$.*') FROM t1; +---------------------------------------------+ | JSON_EXTRACT(JSON_OBJECTAGG('1', a), '$.*') | +---------------------------------------------+ | ["a", "ä"] | +---------------------------------------------+ 1 row in set (0.000 sec)   MariaDB [...]> select @@version; +---------------------+ | @@version | +---------------------+ | 10.6.15-MariaDB-log | +---------------------+ 1 row in set (0.000 sec)
            alice Alice Sherepa made changes -
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.9 [ 26905 ]
            Fix Version/s 10.10 [ 27530 ]
            Fix Version/s 10.11 [ 27614 ]
            Fix Version/s 11.0 [ 28320 ]
            Fix Version/s 11.1 [ 28549 ]
            Fix Version/s 11.2 [ 28603 ]
            serg Sergei Golubchik made changes -
            Assignee Rucha Deodhar [ rucha174 ] Sergei Golubchik [ serg ]
            serg Sergei Golubchik made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            serg Sergei Golubchik made changes -
            Status In Progress [ 3 ] In Testing [ 10301 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.5.24 [ 29517 ]
            Fix Version/s 10.6.17 [ 29518 ]
            Fix Version/s 10.11.7 [ 29519 ]
            Fix Version/s 11.0.5 [ 29520 ]
            Fix Version/s 11.1.4 [ 29024 ]
            Fix Version/s 11.2.3 [ 29521 ]
            Fix Version/s 10.5 [ 23123 ]
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.9 [ 26905 ]
            Fix Version/s 10.10 [ 27530 ]
            Fix Version/s 10.11 [ 27614 ]
            Fix Version/s 11.0 [ 28320 ]
            Fix Version/s 11.1 [ 28549 ]
            Fix Version/s 11.2 [ 28603 ]
            Resolution Fixed [ 1 ]
            Status In Testing [ 10301 ] Closed [ 6 ]
            alice Alice Sherepa made changes -

            People

              serg Sergei Golubchik
              thk Thomas K.
              Votes:
              3 Vote for this issue
              Watchers:
              6 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.