Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd1eb9fe

Browse files
committed
Use regprocedure type instead of oid. Usefull for human read and dump/restore
1 parent573aaa5 commitd1eb9fe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

‎contrib/tsearch2/tsearch.sql.in

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ BEGIN;
66
--dict conf
77
CREATE TABLE pg_ts_dict (
88
dict_nametext not null primary key,
9-
dict_initoid,
9+
dict_initregprocedure,
1010
dict_initoptiontext,
11-
dict_lexizeoid not null,
11+
dict_lexizeregprocedure not null,
1212
dict_commenttext
1313
) with oids;
1414

@@ -136,11 +136,11 @@ insert into pg_ts_dict select
136136
--dict conf
137137
CREATE TABLE pg_ts_parser (
138138
prs_nametext not null primary key,
139-
prs_startoid not null,
140-
prs_nexttokenoid not null,
141-
prs_endoid not null,
142-
prs_headlineoid not null,
143-
prs_lextypeoid not null,
139+
prs_startregprocedure not null,
140+
prs_nexttokenregprocedure not null,
141+
prs_endregprocedure not null,
142+
prs_headlineregprocedure not null,
143+
prs_lextyperegprocedure not null,
144144
prs_commenttext
145145
) with oids;
146146

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp