File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.c,v 1.3 2007/11/15 21:14:31 momjian Exp $
10
+ * $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.c,v 1.4 2007/11/16 00:34:54 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -122,6 +122,7 @@ UNSUPPORTED_FUNCTION(tsa_snb_en_init);
122
122
UNSUPPORTED_FUNCTION (tsa_snb_lexize );
123
123
UNSUPPORTED_FUNCTION (tsa_snb_ru_init_koi8 );
124
124
UNSUPPORTED_FUNCTION (tsa_snb_ru_init_utf8 );
125
+ UNSUPPORTED_FUNCTION (tsa_snb_ru_init );
125
126
126
127
UNSUPPORTED_FUNCTION (tsa_spell_init );
127
128
UNSUPPORTED_FUNCTION (tsa_spell_lexize );
Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.sql.in,v 1.2 2007/11/13 22:14:50 tgl Exp $ */
1
+ /* $PostgreSQL: pgsql/contrib/tsearch2/tsearch2.sql.in,v 1.3 2007/11/16 00:34:54 tgl Exp $ */
2
2
3
3
-- Adjust this setting to control where the objects get created.
4
4
SET search_path = public;
@@ -74,6 +74,11 @@ CREATE FUNCTION snb_ru_init_utf8(internal)
74
74
as 'MODULE_PATHNAME', 'tsa_snb_ru_init_utf8'
75
75
LANGUAGE C;
76
76
77
+ CREATE FUNCTION snb_ru_init(internal)
78
+ RETURNS internal
79
+ as 'MODULE_PATHNAME', 'tsa_snb_ru_init'
80
+ LANGUAGE C;
81
+
77
82
CREATE FUNCTION spell_init(internal)
78
83
RETURNS internal
79
84
as 'MODULE_PATHNAME', 'tsa_spell_init'
Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/contrib/tsearch2/uninstall_tsearch2.sql,v 1.1 2007/11/13 21:02:29 tgl Exp $ */
1
+ /* $PostgreSQL: pgsql/contrib/tsearch2/uninstall_tsearch2.sql,v 1.2 2007/11/16 00:34:54 tgl Exp $ */
2
2
3
3
-- Adjust this setting to control where the objects get dropped.
4
4
SET search_path = public, pg_catalog;
@@ -34,6 +34,7 @@ DROP FUNCTION snb_en_init(internal);
34
34
DROP FUNCTION snb_lexize(internal,internal,int4);
35
35
DROP FUNCTION snb_ru_init_koi8(internal);
36
36
DROP FUNCTION snb_ru_init_utf8(internal);
37
+ DROP FUNCTION snb_ru_init(internal);
37
38
DROP FUNCTION spell_init(internal);
38
39
DROP FUNCTION spell_lexize(internal,internal,int4);
39
40
DROP FUNCTION syn_init(internal);
You can’t perform that action at this time.
0 commit comments