More sensible character_octet_length
[PostgreSQL.git] / contrib / citext / uninstall_citext.sql
blob9f786599cb6eff93931fece8811ffb48a29197c3
1 /* $PostgreSQL$ */
3 -- Adjust this setting to control where the objects get dropped.
4 SET search_path = public;
6 DROP OPERATOR CLASS citext_ops USING btree CASCADE;
7 DROP OPERATOR CLASS citext_ops USING hash CASCADE;
9 DROP AGGREGATE min(citext);
10 DROP AGGREGATE max(citext);
12 DROP OPERATOR = (citext, citext);
13 DROP OPERATOR <> (citext, citext);
14 DROP OPERATOR < (citext, citext);
15 DROP OPERATOR <= (citext, citext);
16 DROP OPERATOR >= (citext, citext);
17 DROP OPERATOR > (citext, citext);
19 DROP OPERATOR ~ (citext, citext);
20 DROP OPERATOR ~* (citext, citext);
21 DROP OPERATOR !~ (citext, citext);
22 DROP OPERATOR !~* (citext, citext);
23 DROP OPERATOR ~~ (citext, citext);
24 DROP OPERATOR ~~* (citext, citext);
25 DROP OPERATOR !~~ (citext, citext);
26 DROP OPERATOR !~~* (citext, citext);
28 DROP OPERATOR ~ (citext, text);
29 DROP OPERATOR ~* (citext, text);
30 DROP OPERATOR !~ (citext, text);
31 DROP OPERATOR !~* (citext, text);
32 DROP OPERATOR ~~ (citext, text);
33 DROP OPERATOR ~~* (citext, text);
34 DROP OPERATOR !~~ (citext, text);
35 DROP OPERATOR !~~* (citext, text);
37 DROP CAST (citext AS text);
38 DROP CAST (citext AS varchar);
39 DROP CAST (citext AS bpchar);
40 DROP CAST (text AS citext);
41 DROP CAST (varchar AS citext);
42 DROP CAST (bpchar AS citext);
43 DROP CAST (boolean AS citext);
44 DROP CAST (inet AS citext);
46 DROP FUNCTION citext(bpchar);
47 DROP FUNCTION citext(boolean);
48 DROP FUNCTION citext(inet);
49 DROP FUNCTION citext_eq(citext, citext);
50 DROP FUNCTION citext_ne(citext, citext);
51 DROP FUNCTION citext_lt(citext, citext);
52 DROP FUNCTION citext_le(citext, citext);
53 DROP FUNCTION citext_gt(citext, citext);
54 DROP FUNCTION citext_ge(citext, citext);
55 DROP FUNCTION citext_cmp(citext, citext);
56 DROP FUNCTION citext_hash(citext);
57 DROP FUNCTION citext_smaller(citext, citext);
58 DROP FUNCTION citext_larger(citext, citext);
59 DROP FUNCTION texticlike(citext, citext);
60 DROP FUNCTION texticnlike(citext, citext);
61 DROP FUNCTION texticregexeq(citext, citext);
62 DROP FUNCTION texticregexne(citext, citext);
63 DROP FUNCTION texticlike(citext, text);
64 DROP FUNCTION texticnlike(citext, text);
65 DROP FUNCTION texticregexeq(citext, text);
66 DROP FUNCTION texticregexne(citext, text);
67 DROP FUNCTION regexp_matches( citext, citext );
68 DROP FUNCTION regexp_matches( citext, citext, text );
69 DROP FUNCTION regexp_replace( citext, citext, text );
70 DROP FUNCTION regexp_replace( citext, citext, text, text );
71 DROP FUNCTION regexp_split_to_array( citext, citext );
72 DROP FUNCTION regexp_split_to_array( citext, citext, text );
73 DROP FUNCTION regexp_split_to_table( citext, citext );
74 DROP FUNCTION regexp_split_to_table( citext, citext, text );
75 DROP FUNCTION strpos( citext, citext );
76 DROP FUNCTION replace( citext, citext, citext );
77 DROP FUNCTION split_part( citext, citext, int );
78 DROP FUNCTION translate( citext, citext, text );
80 DROP TYPE citext CASCADE;