mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
8 lines
307 B
MySQL
8 lines
307 B
MySQL
|
/* contrib/citext/citext--1.2--1.3.sql */
|
||
|
|
||
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
||
|
\echo Use "ALTER EXTENSION citext UPDATE TO '1.3'" to load this file. \quit
|
||
|
|
||
|
UPDATE pg_aggregate SET aggcombinefn = 'citext_smaller'
|
||
|
WHERE aggfnoid = 'min(citext)'::pg_catalog.regprocedure;
|