File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 6
6
--dict conf
7
7
CREATE TABLE pg_ts_dict (
8
8
dict_name text not null primary key,
9
- dict_init oid ,
9
+ dict_init regprocedure ,
10
10
dict_initoption text,
11
- dict_lexize oid not null,
11
+ dict_lexize regprocedure not null,
12
12
dict_comment text
13
13
) with oids;
14
14
@@ -136,11 +136,11 @@ insert into pg_ts_dict select
136
136
--dict conf
137
137
CREATE TABLE pg_ts_parser (
138
138
prs_name text not null primary key,
139
- prs_start oid not null,
140
- prs_nexttoken oid not null,
141
- prs_end oid not null,
142
- prs_headline oid not null,
143
- prs_lextype oid not null,
139
+ prs_start regprocedure not null,
140
+ prs_nexttoken regprocedure not null,
141
+ prs_end regprocedure not null,
142
+ prs_headline regprocedure not null,
143
+ prs_lextype regprocedure not null,
144
144
prs_comment text
145
145
) with oids;
146
146
You can’t perform that action at this time.
0 commit comments