Use E, not e, for escaping in example docs

From the Department of Nitpicking, be consistent with other escaping
and use 'E' instead of 'e' to escape the string in the example docs
for GET DISAGNOSTICS stack = PG_CONTEXT.

Noticed by Department Chief Magnus Hagander.
This commit is contained in:
Stephen Frost 2014-01-26 09:40:34 -05:00
parent 89774b58b0
commit 00ba97365d
1 changed files with 1 additions and 1 deletions

View File

@ -2804,7 +2804,7 @@ DECLARE
stack text;
BEGIN
GET DIAGNOSTICS stack = PG_CONTEXT;
RAISE NOTICE e'--- Call Stack ---\n%', stack;
RAISE NOTICE E'--- Call Stack ---\n%', stack;
RETURN 1;
END;
$$ LANGUAGE plpgsql;