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 77 *
88 *
99 * 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 $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -122,6 +122,7 @@ UNSUPPORTED_FUNCTION(tsa_snb_en_init);
122122UNSUPPORTED_FUNCTION (tsa_snb_lexize );
123123UNSUPPORTED_FUNCTION (tsa_snb_ru_init_koi8 );
124124UNSUPPORTED_FUNCTION (tsa_snb_ru_init_utf8 );
125+ UNSUPPORTED_FUNCTION (tsa_snb_ru_init );
125126
126127UNSUPPORTED_FUNCTION (tsa_spell_init );
127128UNSUPPORTED_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 $ */
22
33-- Adjust this setting to control where the objects get created.
44SET search_path = public;
@@ -74,6 +74,11 @@ CREATE FUNCTION snb_ru_init_utf8(internal)
7474 as 'MODULE_PATHNAME', 'tsa_snb_ru_init_utf8'
7575 LANGUAGE C;
7676
77+ CREATE FUNCTION snb_ru_init(internal)
78+ RETURNS internal
79+ as 'MODULE_PATHNAME', 'tsa_snb_ru_init'
80+ LANGUAGE C;
81+
7782CREATE FUNCTION spell_init(internal)
7883 RETURNS internal
7984 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 $ */
22
33-- Adjust this setting to control where the objects get dropped.
44SET search_path = public, pg_catalog;
@@ -34,6 +34,7 @@ DROP FUNCTION snb_en_init(internal);
3434DROP FUNCTION snb_lexize(internal,internal,int4);
3535DROP FUNCTION snb_ru_init_koi8(internal);
3636DROP FUNCTION snb_ru_init_utf8(internal);
37+ DROP FUNCTION snb_ru_init(internal);
3738DROP FUNCTION spell_init(internal);
3839DROP FUNCTION spell_lexize(internal,internal,int4);
3940DROP FUNCTION syn_init(internal);
You can’t perform that action at this time.
0 commit comments