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
0c88e38e
Commit
0c88e38e
authored
Oct 05, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more documentation about CURRENT_TIMESTAMP.
Also, code < and > as </> for cleaner SGML.
parent
82df2dd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
11 deletions
+16
-11
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+16
-11
No files found.
doc/src/sgml/func.sgml
View file @
0c88e38e
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.12
6 2002/09/24 20:14:58 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.12
7 2002/10/05 19:03:16 momjian
Exp $
PostgreSQL documentation
-->
...
...
@@ -491,11 +491,11 @@ PostgreSQL documentation
<entry>01110</entry>
</row>
<row>
<entry>B'10001'
<<
3</entry>
<entry>B'10001'
<<
3</entry>
<entry>01000</entry>
</row>
<row>
<entry>B'10001'
>>
2</entry>
<entry>B'10001'
>>
2</entry>
<entry>00100</entry>
</row>
</tbody>
...
...
@@ -2726,7 +2726,7 @@ SUBSTRING('foobar' FROM 'o(.)b') <lineannotation>o</lineannotation>
<para>
There are two special cases of bracket expressions: the bracket
expressions <literal>[[:
<
:]]</literal> and
expressions <literal>[[:
<
:]]</literal> and
<literal>[[:>:]]</literal> match the null string at the beginning
and end of a word respectively. A word is defined as a sequence
of word characters which is neither preceded nor followed by word
...
...
@@ -3277,11 +3277,11 @@ SUBSTRING('foobar' FROM 'o(.)b') <lineannotation>o</lineannotation>
</row>
<row>
<entry><literal>MI</literal></entry>
<entry>minus sign in specified position (if number
<
0)</entry>
<entry>minus sign in specified position (if number
<
0)</entry>
</row>
<row>
<entry><literal>PL</literal></entry>
<entry>plus sign in specified position (if number
>
0)</entry>
<entry>plus sign in specified position (if number
>
0)</entry>
</row>
<row>
<entry><literal>SG</literal></entry>
...
...
@@ -4293,13 +4293,18 @@ SELECT timeofday();
</informalexample>
<para>
It is
quite
important to realize that
<function>CURRENT_TIMESTAMP</function> and related functions
all
return
the
time as of the start
of the current transaction; their values do not
increment while a transaction is running. But
<function>timeofday()</function> returns the actual current time
.
It is important to realize that
<function>CURRENT_TIMESTAMP</function> and related functions return
the
start time
of the current transaction; their values do not
change during the transaction. <function>timeofday()</function>
returns the wall clock time and does advance during transactions
.
</para>
<note>
Many other database systems advance these values more
frequently.
</note>
<para>
All the date/time data types also accept the special literal value
<literal>now</literal> to specify the current date and time. Thus,
...
...
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