MySQL 5.7 JSON type support

Issue #3547 resolved
Mathieu Rodic created an issue

MySQL came up with an implementation of the JSON type : https://dev.mysql.com/doc/refman/5.7/en/json.html

It would be nice to have it available in sqlalchemy.dialects.mysql, in the same way its PostgreSQL counterpart can be imported from sqlalchemy.dialects.postgresql.

I wouldn't mind working on the implementation, if given the required elements (some exceptions are poorly documented, e.g.: sqlalchemy.exc.CompileError: (in table 'entities', column 'data'): Compiler <sqlalchemy.dialects.mysql.base.MySQLTypeCompiler object at 0x7f1fcd4a0d10> can't render element of type <class '__main__.JSON'>).

Comments (7)

  1. Mike Bayer repo owner
    • Added :class:.mysql.JSON for MySQL 5.7. The JSON type provides persistence of JSON values in MySQL as well as basic operator support of "getitem" and "getpath", making use of the JSON_EXTRACT function in order to refer to individual paths in a JSON structure. fixes #3547
    • Added a new type to core :class:.types.JSON. This is the base of the PostgreSQL :class:.postgresql.JSON type as well as that of the new :class:.mysql.JSON type, so that a PG/MySQL-agnostic JSON column may be used. The type features basic index and path searching support. fixes #3619
    • reorganization of migration docs etc. to try to refer both to the fixes to JSON that helps Postgresql while at the same time indicating these are new features of the new base JSON type.
    • a rework of the Array/Indexable system some more, moving things that are specific to Array out of Indexable.
    • new operators for JSON indexing added to core so that these can be compiled by the PG and MySQL dialects individually
    • rename sqltypes.Array to sqltypes.ARRAY - as there is no generic Array implementation, this is an uppercase type for now, consistent with the new sqltypes.JSON type that is also not a generic implementation. There may need to be some convention change to handle the case of datatypes that aren't generic, rely upon DB-native implementations, but aren't necessarily all named the same thing.

    → <<cset a80bb4e5aabc>>

  2. Log in to comment