Doc: update section 9.13 for new function table layout.

This includes the usual amount of editorial cleanup, such as
correcting wrong or less-helpful-than-they-could-be examples.

I moved the two tsvector-updating triggers into "9.28 Trigger
Functions", which seems like a better home for them.  (I believe
that section didn't exist when this text was originally written.)
This commit is contained in:
Tom Lane 2020-04-24 15:51:35 -04:00
parent 395a9a1248
commit f8d3e2ab27
2 changed files with 953 additions and 577 deletions

File diff suppressed because it is too large Load diff

View file

@ -1705,10 +1705,15 @@ SELECT numnode('foo & bar'::tsquery);
or only negated terms. For example:
<screen>
SELECT querytree(to_tsquery('defined'));
querytree
-----------
'defin'
SELECT querytree(to_tsquery('!defined'));
querytree
-----------
T
</screen>
</para>
</listitem>