Update docs from Andrew J. Kopciuch <akopciuch@bddf.ca>

This commit is contained in:
Teodor Sigaev 2004-05-14 10:39:25 +00:00
parent 02409a4813
commit 89a8e15671
2 changed files with 766 additions and 705 deletions

File diff suppressed because it is too large Load Diff

View File

@ -248,11 +248,11 @@ Each parser is defined by a record in the <tt>pg_ts_parser</tt> table:
<pre>create table pg_ts_parser ( <pre>create table pg_ts_parser (
prs_name text not null, prs_name text not null,
prs_start oid not null, prs_start regprocedure not null,
prs_nexttoken oid not null, prs_nexttoken regprocedure not null,
prs_end oid not null, prs_end regprocedure not null,
prs_headline oid not null, prs_headline regprocedure not null,
prs_lextype oid not null, prs_lextype regprocedure not null,
prs_comment text prs_comment text
);</pre> );</pre>
@ -318,9 +318,9 @@ Each dictionary is defined by an entry in the <tt>pg_ts_dict</tt> table:
<pre>CREATE TABLE pg_ts_dict ( <pre>CREATE TABLE pg_ts_dict (
dict_name text not null, dict_name text not null,
dict_init oid, dict_init regprocedure,
dict_initoption text, dict_initoption text,
dict_lexize oid not null, dict_lexize regprocedure not null,
dict_comment text dict_comment text
);</pre> );</pre>
@ -454,4 +454,4 @@ The two ranking functions currently available are:
</pre> </pre>
</dd></dl> </dd></dl>
</body></html> </body></html>