mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
docs: HTML-escape '>' in '=>' using HTML entities
This commit is contained in:
@ -2592,10 +2592,10 @@ SELECT concat_lower_or_upper('Hello', 'World');
|
||||
|
||||
<para>
|
||||
In named notation, each argument's name is specified using
|
||||
<literal>=></literal> to separate it from the argument expression.
|
||||
<literal>=></literal> to separate it from the argument expression.
|
||||
For example:
|
||||
<screen>
|
||||
SELECT concat_lower_or_upper(a => 'Hello', b => 'World');
|
||||
SELECT concat_lower_or_upper(a => 'Hello', b => 'World');
|
||||
concat_lower_or_upper
|
||||
-----------------------
|
||||
hello world
|
||||
@ -2606,13 +2606,13 @@ SELECT concat_lower_or_upper(a => 'Hello', b => 'World');
|
||||
using named notation is that the arguments may be specified in any
|
||||
order, for example:
|
||||
<screen>
|
||||
SELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true);
|
||||
SELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true);
|
||||
concat_lower_or_upper
|
||||
-----------------------
|
||||
HELLO WORLD
|
||||
(1 row)
|
||||
|
||||
SELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');
|
||||
SELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');
|
||||
concat_lower_or_upper
|
||||
-----------------------
|
||||
HELLO WORLD
|
||||
@ -2645,7 +2645,7 @@ SELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');
|
||||
already mentioned, named arguments cannot precede positional arguments.
|
||||
For example:
|
||||
<screen>
|
||||
SELECT concat_lower_or_upper('Hello', 'World', uppercase => true);
|
||||
SELECT concat_lower_or_upper('Hello', 'World', uppercase => true);
|
||||
concat_lower_or_upper
|
||||
-----------------------
|
||||
HELLO WORLD
|
||||
|
Reference in New Issue
Block a user