/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
contrib/citext/citext--1.5--1.6.sql
12 строк
427 B
Tom Lane
Add a 64-bit hash function for type citext.
23 ноя 2018, 21:24
23 ноя 2018, 21:24
48c41fa
Код
Авторство
О чём код?
/* contrib/citext/citext--1.5--1.6.sql */ -- complain if script is sourced in psql, rather than via ALTER EXTENSION \echo Use "ALTER EXTENSION citext UPDATE TO '1.6'" to load this file. \quit CREATE FUNCTION citext_hash_extended(citext, int8) RETURNS int8 AS 'MODULE_PATHNAME' LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE; ALTER OPERATOR FAMILY citext_ops USING hash ADD FUNCTION 2 citext_hash_extended(citext, int8);