]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Update check constraint docs for MySQL support (#9803)
authorLeah Einhorn <leaheinhorn@yahoo.com>
Fri, 26 May 2023 19:25:07 +0000 (15:25 -0400)
committerGitHub <noreply@github.com>
Fri, 26 May 2023 19:25:07 +0000 (21:25 +0200)
This is now supported as of version 8.0.16
https://dev.mysql.com/doc/refman/8.0/en/create-table-check-constraints.html

doc/build/core/constraints.rst

index 1efccdce5a4c685445c7343055e9eec72083fa8d..a147ea359f3f8bb2fc4d896137be29d52a40eb63 100644 (file)
@@ -357,7 +357,7 @@ constraints generally should only refer to the column to which they are
 placed, while table level constraints can refer to any columns in the table.
 
 Note that some databases do not actively support check constraints such as
-MySQL.
+older versions of MySQL (prior to 8.0.16).
 
 .. sourcecode:: python+sql