1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Be a little more consistent about which terms are uppercased in

index entries.
This commit is contained in:
Tom Lane 2003-12-26 21:30:48 +00:00
parent 99827af7e0
commit debeb47c92

View File

@ -1,5 +1,5 @@
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.184 2003/12/25 03:36:23 momjian Exp $ $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.185 2003/12/26 21:30:48 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
@ -258,7 +258,7 @@ PostgreSQL documentation
<para> <para>
<indexterm> <indexterm>
<primary>between</primary> <primary>BETWEEN</primary>
</indexterm> </indexterm>
In addition to the comparison operators, the special In addition to the comparison operators, the special
<token>BETWEEN</token> construct is available.<indexterm><primary>BETWEEN</primary></indexterm> <token>BETWEEN</token> construct is available.<indexterm><primary>BETWEEN</primary></indexterm>
@ -6476,7 +6476,7 @@ SELECT COALESCE(description, short_description, '(none)') ...
<title><literal>NULLIF</></title> <title><literal>NULLIF</></title>
<indexterm> <indexterm>
<primary>nullif</primary> <primary>NULLIF</primary>
</indexterm> </indexterm>
<synopsis> <synopsis>
@ -8025,23 +8025,23 @@ SELECT col1 FROM tab1
<title>Row and Array Comparisons</title> <title>Row and Array Comparisons</title>
<indexterm> <indexterm>
<primary>in</primary> <primary>IN</primary>
</indexterm> </indexterm>
<indexterm> <indexterm>
<primary>not in</primary> <primary>NOT IN</primary>
</indexterm> </indexterm>
<indexterm> <indexterm>
<primary>any</primary> <primary>ANY</primary>
</indexterm> </indexterm>
<indexterm> <indexterm>
<primary>all</primary> <primary>ALL</primary>
</indexterm> </indexterm>
<indexterm> <indexterm>
<primary>some</primary> <primary>SOME</primary>
</indexterm> </indexterm>
<para> <para>