serg, so, why not reserve the "room" for the standard FORMAT JSON if there is no time to implement it, and in the spirit of our current endeavor to follow standard defaults, imply the default, which is, coincidentally, FORMAT JSON? It will be different from MySQL, but at least it won't be difficult to explain (assuming it's documented), and for once it will be better than MySQL (and MariaDB) does now, by returning the first variant, only in an uglier form of
MariaDB [test]> select json_object('a', '{"b": "abcd"}');
|
+-----------------------------------+
|
| json_object('a', '{"b": "abcd"}') |
|
+-----------------------------------+
|
| {"a": "{\"b\": \"abcd\"}"} |
|
+-----------------------------------+
|
1 row in set (0.00 sec)
|
Fake CAST goes against everything, not just common sense – it does not improve compatibility with MySQL because results and types are different anyway; it falls out of the standard which does not suggest any explicit CAST there; and it contradicts the definition of the function CAST itself, which is supposed to produce a result value of the specified type (not shape or format).
serg,
Have you approved this?
What compatibility are we talking about? We cannot use type JSON and don't worry about compatibility, but suddenly for CAST it becomes so important that we fake it (of course, again, without any warnings which a sensible admin could have converted to errrors)?
MariaDB 10.2
Query OK, 1 row affected (0.45 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.07 sec)
How does it make any sense at all, and in what way it's compatible with MySQL?
MySQL 5.7
Query OK, 1 row affected (0.65 sec)
Records: 1 Duplicates: 0 Warnings: 0
*************************** 1. row ***************************
More about "compatibility":
MySQL 5.7
MariaDB 10.2
| �? �? |