Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
89a8e156
Commit
89a8e156
authored
May 14, 2004
by
Teodor Sigaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs from Andrew J. Kopciuch <akopciuch@bddf.ca>
parent
02409a48
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
785 additions
and
724 deletions
+785
-724
contrib/tsearch2/docs/tsearch-V2-intro.html
contrib/tsearch2/docs/tsearch-V2-intro.html
+777
-716
contrib/tsearch2/docs/tsearch2-ref.html
contrib/tsearch2/docs/tsearch2-ref.html
+8
-8
No files found.
contrib/tsearch2/docs/tsearch-V2-intro.html
View file @
89a8e156
This diff is collapsed.
Click to expand it.
contrib/tsearch2/docs/tsearch2-ref.html
View file @
89a8e156
...
...
@@ -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 (
prs_name text not null,
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
);
</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 (
dict_name text not null,
dict_init
oid
,
dict_init
regprocedure
,
dict_initoption text,
dict_lexize
oid
not null,
dict_lexize
regprocedure
not null,
dict_comment text
);
</pre>
...
...
@@ -454,4 +454,4 @@ The two ranking functions currently available are:
</pre>
</dd></dl>
</body></html>
\ No newline at end of file
</body></html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment