pgsql/src/include/utils (builtins.h)

Поиск
Список
Период
Сортировка
От Thomas Lockhart
Тема pgsql/src/include/utils (builtins.h)
Дата
Msg-id 200008061807.e76I72F68775@hub.org
обсуждение исходный текст
Список pgsql-committers
  Date: Sunday, August  6, 2000 @ 14:06:57
Author: thomas

Update of /home/projects/pgsql/cvsroot/pgsql/src/include/utils
     from hub.org:/home/projects/pgsql/developers/thomas/CURRENT/pgsql/src/include/utils

Modified Files:
    builtins.h

-----------------------------  Log Message  -----------------------------

Implement LIKE/ESCAPE. Change parser to use like()/notlike()
 rather than the "~~" operator; this made it easy to add ESCAPE features.
Implement ILIKE, NOT ILIKE, and the ESCAPE clause for them.
 afaict this is not MultiByte clean, but lots of other stuff isn't either.
Fix up underlying support code for LIKE/NOT LIKE.
 Things should be faster and does not require internal string copying.
Update regression test to add explicit checks for
 LIKE/NOT LIKE/ILIKE/NOT ILIKE.
Remove colon and semi-colon operators as threatened in 7.0.
Implement SQL99 COMMIT/AND NO CHAIN.
 Throw elog(ERROR) on COMMIT/AND CHAIN per spec
 since we don't yet support it.
Implement SQL99 CREATE/DROP SCHEMA as equivalent to CREATE DATABASE.
 This is only a stopgap or demo since schemas will have another
 implementation soon.
Remove a few unused production rules to get rid of warnings
 which crept in on the last commit.
Fix up tabbing in some places by removing embedded spaces.


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

Предыдущее
От: Thomas Lockhart
Дата:
Сообщение: pgsql/src/include/catalog (catversion.h pg_proc.h)
Следующее
От: Thomas Lockhart
Дата:
Сообщение: pgsql/src/test/regress/sql (strings.sql)