Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 68b08b2

Browse files
committed
Whitespace cleanup.
1 parent f83a930 commit 68b08b2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/src/sgml/func.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.399 2007/10/07 01:13:30 alvherre Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.400 2007/10/11 02:43:55 momjian Exp $ -->
22

33
<chapter id="functions">
44
<title>Functions and Operators</title>
@@ -1362,7 +1362,7 @@
13621362
Also there are some pre-defined conversions. See <xref
13631363
linkend="conversion-names"> for available conversions.
13641364
</entry>
1365-
<entry><literal>convert( 'text_in_utf8', 'UTF8', 'LATIN1')</literal></entry>
1365+
<entry><literal>convert('text_in_utf8', 'UTF8', 'LATIN1')</literal></entry>
13661366
<entry><literal>text_in_utf8</literal> represented in ISO 8859-1 encoding</entry>
13671367
</row>
13681368

@@ -1377,7 +1377,7 @@
13771377
is specified by <parameter>src_encoding</parameter>. The
13781378
<parameter>string</parameter> must be valid in this encoding.
13791379
</entry>
1380-
<entry><literal>convert_from( 'text_in_utf8', 'UTF8')</literal></entry>
1380+
<entry><literal>convert_from('text_in_utf8', 'UTF8')</literal></entry>
13811381
<entry><literal>text_in_utf8</literal> represented in the current database encoding</entry>
13821382
</row>
13831383

@@ -1390,7 +1390,7 @@
13901390
<entry>
13911391
Convert string to <parameter>dest_encoding</parameter>.
13921392
</entry>
1393-
<entry><literal>convert_to( 'some text', 'UTF8')</literal></entry>
1393+
<entry><literal>convert_to('some text', 'UTF8')</literal></entry>
13941394
<entry><literal>some text</literal> represented in the UTF8 encoding</entry>
13951395
</row>
13961396

@@ -1420,7 +1420,7 @@
14201420
<literal>Escape</> merely outputs null bytes as <literal>\000</> and
14211421
doubles backslashes.
14221422
</entry>
1423-
<entry><literal>encode( E'123\\000\\001', 'base64')</literal></entry>
1423+
<entry><literal>encode(E'123\\000\\001', 'base64')</literal></entry>
14241424
<entry><literal>MTIzAAE=</literal></entry>
14251425
</row>
14261426

@@ -1535,7 +1535,7 @@
15351535
in an <acronym>SQL</acronym> statement string.
15361536
Embedded single-quotes and backslashes are properly doubled.
15371537
</entry>
1538-
<entry><literal>quote_literal( 'O\'Reilly')</literal></entry>
1538+
<entry><literal>quote_literal('O\'Reilly')</literal></entry>
15391539
<entry><literal>'O''Reilly'</literal></entry>
15401540
</row>
15411541

@@ -1603,7 +1603,7 @@
16031603
<entry>Replace all occurrences in <parameter>string</parameter> of substring
16041604
<parameter>from</parameter> with substring <parameter>to</parameter>
16051605
</entry>
1606-
<entry><literal>replace( 'abcdefabcdef', 'cd', 'XX')</literal></entry>
1606+
<entry><literal>replace('abcdefabcdef', 'cd', 'XX')</literal></entry>
16071607
<entry><literal>abXXefabXXef</literal></entry>
16081608
</row>
16091609

@@ -2592,7 +2592,7 @@
25922592
<entry><literal><function>octet_length</function>(<parameter>string</parameter>)</literal></entry>
25932593
<entry><type>int</type></entry>
25942594
<entry>Number of bytes in binary string</entry>
2595-
<entry><literal>octet_length( E'jo\\000se'::bytea)</literal></entry>
2595+
<entry><literal>octet_length(E'jo\\000se'::bytea)</literal></entry>
25962596
<entry><literal>5</literal></entry>
25972597
</row>
25982598

0 commit comments

Comments
 (0)