diff options
| author | DefteZ <deftez@gmail.com> | 2020-07-25 01:45:41 +0200 | 
|---|---|---|
| committer | DefteZ <deftez@gmail.com> | 2020-07-26 15:45:32 +0200 | 
| commit | a26b88cd6b2034b7048d5b4729d3fa90ddfb255d (patch) | |
| tree | ccee93c1076b101e4ac678764ac96dffad5d6a4c | |
| parent | 67e8359931b18d2d13231a0d4e665b03958d6d7f (diff) | |
| download | sqlalchemy-a26b88cd6b2034b7048d5b4729d3fa90ddfb255d.tar.gz | |
Update docs with actual MariaDB JSON support
| -rw-r--r-- | lib/sqlalchemy/dialects/mysql/json.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/json.py b/lib/sqlalchemy/dialects/mysql/json.py index 733a4d696..640e19929 100644 --- a/lib/sqlalchemy/dialects/mysql/json.py +++ b/lib/sqlalchemy/dialects/mysql/json.py @@ -13,8 +13,8 @@ from ... import types as sqltypes  class JSON(sqltypes.JSON):      """MySQL JSON type. -    MySQL supports JSON as of version 5.7.  Note that MariaDB does **not** -    support JSON at the time of this writing. +    MySQL supports JSON as of version 5.7. +    MariaDB supports JSON (as an alias for LONGTEXT) as of version 10.2.      The :class:`.mysql.JSON` type supports persistence of JSON values      as well as the core index operations provided by :class:`_types.JSON`  | 
