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
d98039d8
Commit
d98039d8
authored
Feb 25, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document that after triggers that need to see changed rows should not be
marked stable.
parent
99419d36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
doc/src/sgml/ref/create_function.sgml
doc/src/sgml/ref/create_function.sgml
+4
-2
No files found.
doc/src/sgml/ref/create_function.sgml
View file @
d98039d8
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.9
0 2010/02/14 01:01:35 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.9
1 2010/02/25 22:24:00 momjian
Exp $
-->
<refentry id="SQL-CREATEFUNCTION">
...
...
@@ -289,7 +289,9 @@ CREATE [ OR REPLACE ] FUNCTION
return the same result for the same argument values, but that its
result could change across SQL statements. This is the appropriate
selection for functions whose results depend on database lookups,
parameter variables (such as the current time zone), etc. Also note
parameter variables (such as the current time zone), etc. (It is
inappropriate for <literal>AFTER</> triggers that wish to
query rows modified by the current command.) Also note
that the <function>current_timestamp</> family of functions qualify
as stable, since their values do not change within a transaction.
</para>
...
...
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