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
f8c365c8
Commit
f8c365c8
authored
Sep 13, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Marginal hacks to make tables format more nicely.
parent
a75ee43c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+19
-19
No files found.
doc/src/sgml/func.sgml
View file @
f8c365c8
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.17
3 2003/09/12 22:17:22
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.17
4 2003/09/13 00:19:43
tgl Exp $
PostgreSQL documentation
-->
...
...
@@ -1047,7 +1047,7 @@ PostgreSQL documentation
in <parameter>characters</parameter> from the start and end of
<parameter>string</parameter>.
</entry>
<entry><literal>btrim('xyxtrimyyx','xy')</literal></entry>
<entry><literal>btrim('xyxtrimyyx',
'xy')</literal></entry>
<entry><literal>trim</literal></entry>
</row>
...
...
@@ -1074,7 +1074,7 @@ PostgreSQL documentation
<parameter>src_encoding</parameter> is omitted, database
encoding is assumed.
</entry>
<entry><literal>convert('text_in_unicode', 'UNICODE', 'LATIN1')</literal></entry>
<entry><literal>convert(
'text_in_unicode', 'UNICODE', 'LATIN1')</literal></entry>
<entry><literal>text_in_unicode</literal> represented in ISO 8859-1 encoding</entry>
</row>
...
...
@@ -1102,7 +1102,7 @@ PostgreSQL documentation
Encode binary data to <acronym>ASCII</acronym>-only representation. Supported
types are: <literal>base64</>, <literal>hex</>, <literal>escape</>.
</entry>
<entry><literal>encode('123\\000\\001', 'base64')</literal></entry>
<entry><literal>encode(
'123\\000\\001', 'base64')</literal></entry>
<entry><literal>MTIzAAE=</literal></entry>
</row>
...
...
@@ -1159,7 +1159,7 @@ PostgreSQL documentation
Remove the longest string containing only characters from
<parameter>characters</parameter> from the start of the string.
</entry>
<entry><literal>ltrim('zzzytrim','xyz')</literal></entry>
<entry><literal>ltrim('zzzytrim',
'xyz')</literal></entry>
<entry><literal>trim</literal></entry>
</row>
...
...
@@ -1170,7 +1170,7 @@ PostgreSQL documentation
Calculates the MD5 hash of given string, returning the result in hexadecimal.
</entry>
<entry><literal>md5('abc')</literal></entry>
<entry><literal>900150983cd24fb0d6963f7d28e17f72</literal></entry>
<entry><literal>900150983cd24fb0
d6963f7d28e17f72</literal></entry>
</row>
<row>
...
...
@@ -1205,7 +1205,7 @@ PostgreSQL documentation
in an <acronym>SQL</acronym> statement string.
Embedded 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>
...
...
@@ -1225,7 +1225,7 @@ PostgreSQL documentation
<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>
...
...
@@ -1255,7 +1255,7 @@ PostgreSQL documentation
Remove the longest string containing only characters from
<parameter>characters</parameter> from the end of the string.
</entry>
<entry><literal>rtrim('trimxxxx','x')</literal></entry>
<entry><literal>rtrim('trimxxxx',
'x')</literal></entry>
<entry><literal>trim</literal></entry>
</row>
...
...
@@ -1267,7 +1267,7 @@ PostgreSQL documentation
<entry>Split <parameter>string</parameter> on <parameter>delimiter</parameter>
and return the given field (counting from one)
</entry>
<entry><literal>split_part(
'abc~@~def~@~ghi','~@~',
2)</literal></entry>
<entry><literal>split_part(
'abc~@~def~@~ghi', '~@~',
2)</literal></entry>
<entry><literal>def</literal></entry>
</row>
...
...
@@ -1280,7 +1280,7 @@ PostgreSQL documentation
<parameter>string</parameter>)</literal>, but note the reversed
argument order)
</entry>
<entry><literal>strpos('high','ig')</literal></entry>
<entry><literal>strpos('high',
'ig')</literal></entry>
<entry><literal>2</literal></entry>
</row>
...
...
@@ -1321,8 +1321,8 @@ PostgreSQL documentation
<entry>Convert <parameter>number</parameter> to its equivalent hexadecimal
representation
</entry>
<entry><literal>to_hex(
922337203685477580
7)</literal></entry>
<entry><literal>7fffffff
ffffffff
</literal></entry>
<entry><literal>to_hex(
214748364
7)</literal></entry>
<entry><literal>7fffffff</literal></entry>
</row>
<row>
...
...
@@ -2111,15 +2111,15 @@ PostgreSQL documentation
<secondary>concatenation</secondary>
</indexterm>
</entry>
<entry><literal>'\\\\Post'::bytea || '\\047gre
SQL
\\000'::bytea</literal></entry>
<entry><literal>\\Post'gre
SQL
\000</literal></entry>
<entry><literal>'\\\\Post'::bytea || '\\047gre
s
\\000'::bytea</literal></entry>
<entry><literal>\\Post'gre
s
\000</literal></entry>
</row>
<row>
<entry><literal><function>octet_length</function>(<parameter>string</parameter>)</literal></entry>
<entry><type>integer</type></entry>
<entry>Number of bytes in binary string</entry>
<entry><literal>octet_length('jo\\000se'::bytea)</literal></entry>
<entry><literal>octet_length(
'jo\\000se'::bytea)</literal></entry>
<entry><literal>5</literal></entry>
</row>
...
...
@@ -2248,7 +2248,7 @@ PostgreSQL documentation
in <parameter>bytes</parameter> from the start and end of
<parameter>string</parameter>.
</entry>
<entry><literal>btrim('\\000trim\\000'::bytea,'\\000'::bytea)</literal></entry>
<entry><literal>btrim('\\000trim\\000'::bytea,
'\\000'::bytea)</literal></entry>
<entry><literal>trim</literal></entry>
</row>
...
...
@@ -6027,10 +6027,10 @@ SELECT TIMESTAMP 'now';
<entry><literal>24</literal></entry>
</row>
<row>
<entry><literal><function>set_masklen</function>(<type>inet</type>,<type>integer</type>)</literal></entry>
<entry><literal><function>set_masklen</function>(<type>inet</type>,
<type>integer</type>)</literal></entry>
<entry><type>inet</type></entry>
<entry>set netmask length for <type>inet</type> value</entry>
<entry><literal>set_masklen('192.168.1.5/24',16)</literal></entry>
<entry><literal>set_masklen('192.168.1.5/24',
16)</literal></entry>
<entry><literal>192.168.1.5/16</literal></entry>
</row>
<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