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
68b08b25
Commit
68b08b25
authored
Oct 11, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace cleanup.
parent
f83a9303
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+8
-8
No files found.
doc/src/sgml/func.sgml
View file @
68b08b25
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.
399 2007/10/07 01:13:30 alvherre
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.
400 2007/10/11 02:43:55 momjian
Exp $ -->
<chapter
id=
"functions"
>
<title>
Functions and Operators
</title>
...
...
@@ -1362,7 +1362,7 @@
Also there are some pre-defined conversions. See
<xref
linkend=
"conversion-names"
>
for available conversions.
</entry>
<entry><literal>
convert(
'text_in_utf8', 'UTF8', 'LATIN1')
</literal></entry>
<entry><literal>
convert('text_in_utf8', 'UTF8', 'LATIN1')
</literal></entry>
<entry><literal>
text_in_utf8
</literal>
represented in ISO 8859-1 encoding
</entry>
</row>
...
...
@@ -1377,7 +1377,7 @@
is specified by
<parameter>
src_encoding
</parameter>
. The
<parameter>
string
</parameter>
must be valid in this encoding.
</entry>
<entry><literal>
convert_from(
'text_in_utf8', 'UTF8')
</literal></entry>
<entry><literal>
convert_from('text_in_utf8', 'UTF8')
</literal></entry>
<entry><literal>
text_in_utf8
</literal>
represented in the current database encoding
</entry>
</row>
...
...
@@ -1390,7 +1390,7 @@
<entry>
Convert string to
<parameter>
dest_encoding
</parameter>
.
</entry>
<entry><literal>
convert_to(
'some text', 'UTF8')
</literal></entry>
<entry><literal>
convert_to('some text', 'UTF8')
</literal></entry>
<entry><literal>
some text
</literal>
represented in the UTF8 encoding
</entry>
</row>
...
...
@@ -1420,7 +1420,7 @@
<literal>
Escape
</>
merely outputs null bytes as
<literal>
\000
</>
and
doubles backslashes.
</entry>
<entry><literal>
encode(
E'123\\000\\001', 'base64')
</literal></entry>
<entry><literal>
encode(E'123\\000\\001', 'base64')
</literal></entry>
<entry><literal>
MTIzAAE=
</literal></entry>
</row>
...
...
@@ -1535,7 +1535,7 @@
in an
<acronym>
SQL
</acronym>
statement string.
Embedded single-quotes and backslashes are properly doubled.
</entry>
<entry><literal>
quote_literal(
'O\'Reilly')
</literal></entry>
<entry><literal>
quote_literal('O\'Reilly')
</literal></entry>
<entry><literal>
'O''Reilly'
</literal></entry>
</row>
...
...
@@ -1603,7 +1603,7 @@
<entry>
Replace all occurrences in
<parameter>
string
</parameter>
of substring
<parameter>
from
</parameter>
with substring
<parameter>
to
</parameter>
</entry>
<entry><literal>
replace(
'abcdefabcdef', 'cd', 'XX')
</literal></entry>
<entry><literal>
replace('abcdefabcdef', 'cd', 'XX')
</literal></entry>
<entry><literal>
abXXefabXXef
</literal></entry>
</row>
...
...
@@ -2592,7 +2592,7 @@
<entry><literal><function>
octet_length
</function>
(
<parameter>
string
</parameter>
)
</literal></entry>
<entry><type>
int
</type></entry>
<entry>
Number of bytes in binary string
</entry>
<entry><literal>
octet_length(
E'jo\\000se'::bytea)
</literal></entry>
<entry><literal>
octet_length(E'jo\\000se'::bytea)
</literal></entry>
<entry><literal>
5
</literal></entry>
</row>
...
...
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