index 8e542919435eb31f5f5964dc62cd95d1cef54003..005a3dd67c1b40b573a4f7c7462cfed1d5618b4f 100644 (file)
--dict conf
CREATE TABLE pg_ts_dict (
dict_name text not null primary key,
- dict_init oid,
+ dict_init regprocedure,
dict_initoption text,
- dict_lexize oid not null,
+ dict_lexize regprocedure not null,
dict_comment text
) with oids;
--dict conf
CREATE TABLE pg_ts_parser (
prs_name text not null primary key,
- prs_start oid not null,
- prs_nexttoken oid not null,
- prs_end oid not null,
- prs_headline oid not null,
- prs_lextype oid not null,
+ prs_start regprocedure not null,
+ prs_nexttoken regprocedure not null,
+ prs_end regprocedure not null,
+ prs_headline regprocedure not null,
+ prs_lextype regprocedure not null,
prs_comment text
) with oids;