File: citext--1.5--1.6.sql

package info (click to toggle)
postgresql-15 15.14-0%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 166,744 kB
  • sloc: ansic: 900,605; sql: 109,651; perl: 42,636; yacc: 36,873; xml: 31,046; lex: 8,906; makefile: 6,176; sh: 4,842; cpp: 1,105; python: 151; asm: 65; sed: 16
file content (12 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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);