From 8578c73e8e81d95b4471c77804f0daa9df7282c8 Mon Sep 17 00:00:00 2001 From: Leah Einhorn Date: Fri, 26 May 2023 15:25:07 -0400 Subject: [PATCH] Update check constraint docs for MySQL support (#9803) 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/core/constraints.rst b/doc/build/core/constraints.rst index 1efccdce5a..a147ea359f 100644 --- a/doc/build/core/constraints.rst +++ b/doc/build/core/constraints.rst @@ -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 -- 2.47.3