Changeset: 808c3472bf42 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/808c3472bf42 Modified Files: sql/ChangeLog Branch: default Log Message:
Correcting typo's in ChangeLog. Should have been EXISTS instead of EXIST. diffs (74 lines): diff --git a/sql/ChangeLog b/sql/ChangeLog --- a/sql/ChangeLog +++ b/sql/ChangeLog @@ -2,50 +2,50 @@ # This file is updated with Maddlog * Thu Jul 24 2025 Martin van Dinther <[email protected]> -- Added the possibility to specify IF NOT EXIST for the following +- Added the possibility to specify IF NOT EXISTS for the following CREATE statements: - CREATE SEQUENCE IF NOT EXIST seq_name ... + CREATE SEQUENCE IF NOT EXISTS seq_name ... - CREATE USER IF NOT EXIST user_name ... + CREATE USER IF NOT EXISTS user_name ... - CREATE ROLE IF NOT EXIST role_name ... + CREATE ROLE IF NOT EXISTS role_name ... - CREATE TYPE IF NOT EXIST type_name ... + CREATE TYPE IF NOT EXISTS type_name ... - CREATE INDEX IF NOT EXIST index_name ON ... + CREATE INDEX IF NOT EXISTS index_name ON ... - CREATE IMPRINTS INDEX IF NOT EXIST index_name ON ... + CREATE IMPRINTS INDEX IF NOT EXISTS index_name ON ... - CREATE ORDERED INDEX IF NOT EXIST index_name ON ... + CREATE ORDERED INDEX IF NOT EXISTS index_name ON ... - With IF NOT EXIST specified these CREATE statements will not return + With IF NOT EXISTS specified these CREATE statements will not return an error when an object with the same name already exist. See doc: https://www.monetdb.org/documentation/user-guide/sql-manual/data-definition/ -- Added the possibility to specify IF EXIST for the following DROP statements: +- Added the possibility to specify IF EXISTS for the following DROP statements: - DROP SEQUENCE IF EXIST seq_name ... + DROP SEQUENCE IF EXISTS seq_name ... - DROP USER IF EXIST user_name + DROP USER IF EXISTS user_name - DROP ROLE IF EXIST role_name + DROP ROLE IF EXISTS role_name - DROP TYPE IF EXIST type_name ... + DROP TYPE IF EXISTS type_name ... - DROP INDEX IF EXIST index_name + DROP INDEX IF EXISTS index_name - With IF EXIST specified these statements will not return an error + With IF EXISTS specified these statements will not return an error when the object does not exist. See doc: https://www.monetdb.org/documentation/user-guide/sql-manual/data-definition/drop-statement/ -- Added the possibility to specify IF EXIST for two ALTER statements: +- Added the possibility to specify IF EXISTS for two ALTER statements: - ALTER SEQUENCE IF EXIST seq_name ... + ALTER SEQUENCE IF EXISTS seq_name ... - ALTER USER IF EXIST user_name ... + ALTER USER IF EXISTS user_name ... - With IF EXIST specified these statements will not return an error + With IF EXISTS specified these statements will not return an error when the object does not exist. See doc: https://www.monetdb.org/documentation/user-guide/sql-manual/data-types/serial-types/ and _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
