The example for creating a check constraint is missing a comma

Поиск
Список
Период
Сортировка
От PG Doc comments form
Тема The example for creating a check constraint is missing a comma
Дата
Msg-id 151871659877.1393.2431103178451978795@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: The example for creating a check constraint is missing a comma  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/10/static/sql-createtable.html
Description:

See the example from the documentation for CREATE TABLE below. There should
be a comma before the CONSTRAINT keyword. 

CREATE TABLE distributors (
    did     integer,
    name    varchar(40)
    CONSTRAINT con1 CHECK (did > 100 AND name <> '')
);

В списке pgsql-docs по дате отправления:

Предыдущее
От: Bart Lengkeek
Дата:
Сообщение: error fields
Следующее
От: Tom Lane
Дата:
Сообщение: Re: The example for creating a check constraint is missing a comma