Ignore not-yet-defined Portals in pg_cursors view.
[pgsql.git] / contrib / pg_trgm / pg_trgm--1.0--1.1.sql
blobb4e3e26037b23115a3cad9916c8909e6aa6bd32d
1 /* contrib/pg_trgm/pg_trgm--1.0--1.1.sql */
3 -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4 \echo Use "ALTER EXTENSION pg_trgm UPDATE TO '1.1'" to load this file. \quit
6 ALTER OPERATOR FAMILY gist_trgm_ops USING gist ADD
7         OPERATOR        5       pg_catalog.~ (text, text),
8         OPERATOR        6       pg_catalog.~* (text, text);
10 ALTER OPERATOR FAMILY gin_trgm_ops USING gin ADD
11         OPERATOR        5       pg_catalog.~ (text, text),
12         OPERATOR        6       pg_catalog.~* (text, text);