[Sqlalchemy-tickets] Issue #3547: MySQL 5.7 JSON type support (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Mathieu R. <iss...@bi...> - 2015-10-02 12:22:08
|
New issue 3547: MySQL 5.7 JSON type support https://bitbucket.org/zzzeek/sqlalchemy/issues/3547/mysql-57-json-type-support Mathieu Rodic: MySQL came up with an implementation of the JSON type : [https://dev.mysql.com/doc/refman/5.7/en/json.html](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'> `). |