Revert commit 66c0185a3 and follow-on patches.
[pgsql.git] / contrib / citext / citext--1.3--1.4.sql
blob7b3665118615c00bf5589ba35daa0231685d140d
1 /* contrib/citext/citext--1.3--1.4.sql */
3 -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4 \echo Use "ALTER EXTENSION citext UPDATE TO '1.4'" to load this file. \quit
6 CREATE FUNCTION regexp_match( citext, citext ) RETURNS TEXT[] AS $$
7     SELECT pg_catalog.regexp_match( $1::pg_catalog.text, $2::pg_catalog.text, 'i' );
8 $$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;
10 CREATE FUNCTION regexp_match( citext, citext, text ) RETURNS TEXT[] AS $$
11     SELECT pg_catalog.regexp_match( $1::pg_catalog.text, $2::pg_catalog.text, CASE WHEN pg_catalog.strpos($3, 'c') = 0 THEN  $3 || 'i' ELSE $3 END );
12 $$ LANGUAGE SQL IMMUTABLE STRICT PARALLEL SAFE;