Re: named generic constraints [feature request]

Поиск
Список
Период
Сортировка
От Caleb Cushing
Тема Re: named generic constraints [feature request]
Дата
Msg-id 81bfc67a0911231751s1a1615b7w6187d046a98e74b0@mail.gmail.com
обсуждение исходный текст
Ответ на Re: named generic constraints [feature request]  (Pavel Stehule <pavel.stehule@gmail.com>)
Ответы Re: named generic constraints [feature request]
Re: named generic constraints [feature request]
Список pgsql-hackers
> CREATE OR REPLACE FUNCTION emptystr(text)
> RETURNS bool AS $$
>  SELECT $1 <> ''; -- it is SQL not C
> $$ LANGUAGE sql;
>
> CREATE TABLE users(
>  username TEXT CHECK (NOT emptystr(username)),

although I'm not going to continue discussing the request. this code
as the opposite desired effect. it should be

SELECT $1 = ''; -- you have a double negative

--
Caleb Cushing

http://xenoterracide.blogspot.com


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