Changeset: 221a5b5639e1 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/221a5b5639e1 Modified Files: sql/ChangeLog-Archive Branch: Aug2024 Log Message:
The ChangeLog did not mention we added support for CHECK constraints. diffs (17 lines): diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive --- a/sql/ChangeLog-Archive +++ b/sql/ChangeLog-Archive @@ -48,6 +48,13 @@ are no longer accepted in the ANALYZE statement. - The ANALYZE statement can now be used in procedures, functions and triggers. +* Thu Apr 23 2024 Yunus Koning <[email protected]> - 11.51.1-20240812 +- Added support for CHECK constraints in CREATE TABLE and ALTER TABLE + ADD CONSTRAINT statements. Columns and tables can have multiple CHECK + constraints provided their names are unique in the schema of the table. + The syntax is: [ CONSTRAINT a_name ] CHECK ( boolean_expression ) + When no constraint name is specified, a constraint name will be generated. + * Wed Apr 10 2024 Lucas Pereira <[email protected]> - 11.51.1-20240812 - Make schema renaming more permissive. A schema can be renamed if it does not contain objects that are a dependency for objects outside _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
