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
46c93bd5
Commit
46c93bd5
authored
May 08, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further cleanup of RAISE discussion; in particular, remove example
that doesn't actually work.
parent
24baa1d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
doc/src/sgml/plsql.sgml
doc/src/sgml/plsql.sgml
+18
-9
No files found.
doc/src/sgml/plsql.sgml
View file @
46c93bd5
<
!--
$
Header
:
/
cvsroot
/
pgsql
/
doc
/
src
/
sgml
/
Attic
/
plsql
.
sgml
,
v
2.2
8
2001
/
05
/
08
02
:
26
:
09
momjian
Exp
$
$
Header
:
/
cvsroot
/
pgsql
/
doc
/
src
/
sgml
/
Attic
/
plsql
.
sgml
,
v
2.2
9
2001
/
05
/
08
02
:
53
:
24
tgl
Exp
$
-->
<
chapter
id
=
"plpgsql"
>
...
...
@@ -1309,20 +1309,29 @@ END LOOP;
RAISE <replaceable class="parameter">level</replaceable> '
<
replaceable
class
=
"parameter"
>
format
</
replaceable
>
' <optional>, <replaceable class="parameter">variable</replaceable> <optional>...</optional></optional>;
</synopsis>
Inside the format, <literal>%</literal> is replaced by the next argument'
s
external
representation
.
Double
<
literal
>%</
literal
>
's are output as <literal>%</literal>.
Possible levels are DEBUG (silently suppressed in production
running databases), NOTICE (written into the database log and forwarded to
the client application) and EXCEPTION (written into the database log and
Possible levels are DEBUG (write the message into the postmaster log),
NOTICE (write the message into the postmaster log and forward it to
the client application) and EXCEPTION (raise an error,
aborting the transaction).
Inside the format string, <literal>%</literal> is replaced by the next
optional argument'
s
external
representation
.
Write
<
literal
>%%</
literal
>
to
emit
a
literal
<
literal
>%</
literal
>.
Note
that
the
optional
arguments
must
presently
be
simple
variables
,
not
expressions
,
and
the
format
must
be
a
simple
string
literal
.
</
para
>
<
!--
This
example
should
work
,
but
does
not
:
RAISE
NOTICE
''
Id
number
''
||
key
||
''
not
found
!'';
Put
it
back
when
we
allow
non
-
string
-
literal
formats
.
-->
<
para
>
<
programlisting
>
RAISE NOTICE ''Id number '' || key || '' not found!'';
RAISE
NOTICE
''
Calling
cs_create_job
(%)
''
,
v_job_id
;
</
programlisting
>
In this
last example,
v_job_id will replace the % in the
In
this
example
,
the
value
of
v_job_id
will
replace
the
%
in
the
string
.
</
para
>
...
...
@@ -1330,7 +1339,7 @@ RAISE NOTICE ''Calling cs_create_job(%)'',v_job_id;
<
programlisting
>
RAISE
EXCEPTION
''
Inexistent
ID
-->
%
''
,
user_id
;
</
programlisting
>
This will abort the transaction
and write to the database log
.
This
will
abort
the
transaction
with
the
given
error
message
.
</
para
>
</
sect2
>
...
...
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