Changeset: 902b465d6096 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/902b465d6096 Modified Files: sql/ChangeLog sql/scripts/91_information_schema.sql Branch: default Log Message:
Correct English diffs (33 lines): diff --git a/sql/ChangeLog b/sql/ChangeLog --- a/sql/ChangeLog +++ b/sql/ChangeLog @@ -19,7 +19,7 @@ when needed. Note: MonetDB does NOT support catalog qualifiers in object names, so all the - CATALOG columns in these information_schema views will allways contain NULL. + CATALOG columns in these information_schema views will always return NULL. * Mon Aug 21 2023 Niels Nes <[email protected]> - Added support for generated column syntax: diff --git a/sql/scripts/91_information_schema.sql b/sql/scripts/91_information_schema.sql --- a/sql/scripts/91_information_schema.sql +++ b/sql/scripts/91_information_schema.sql @@ -10,7 +10,7 @@ -- defines INFORMATION_SCHEMA schema and standardised views -- -- NOTE 1: MonetDB does NOT support catalog qualifiers in object names, so --- all the *CATALOG* columns in next views will allways contain NULL. +-- all the *CATALOG* columns in next views will always return NULL. -- NOTE 2: Most views have been extended (after the standard columns) with -- MonetDB specific information columns such as schema_id, table_id, -- column_id, is_system, etc. This simplifies filtering and joins with @@ -188,7 +188,7 @@ GRANT SELECT ON TABLE INFORMATION_SCHEMA -- The view CHECK_CONSTRAINTS contains all check constraints defined on a table, -- that are owned by a currently enabled role. --- This view is currently empty as MonetDB doesn't support CHECK constraints yet. +-- This view is currently empty as MonetDB does not support CHECK constraints yet. CREATE VIEW INFORMATION_SCHEMA.CHECK_CONSTRAINTS AS SELECT cast(NULL AS varchar(1)) AS CONSTRAINT_CATALOG, cast(NULL AS varchar(1024)) AS CONSTRAINT_SCHEMA, _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
