diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-02-18 11:33:04 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-02-18 11:33:04 +0000 |
commit | b9a366933d730b5ae350979f64a731af56c0445f (patch) | |
tree | 36610cfae02ffa7fe36a24a4024aa0268440e149 /src/test | |
parent | 5c89839ab24fe7f9a83f394a0d2245ea3281ab21 (diff) | |
download | postgresql-b9a366933d730b5ae350979f64a731af56c0445f.tar.gz postgresql-b9a366933d730b5ae350979f64a731af56c0445f.zip |
Message wordsmithing
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/expected/plpgsql.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/plpgsql.out b/src/test/regress/expected/plpgsql.out index 0fe279493f2..66bd895f705 100644 --- a/src/test/regress/expected/plpgsql.out +++ b/src/test/regress/expected/plpgsql.out @@ -2700,7 +2700,7 @@ begin end loop flbl1; end; $$ language plpgsql; -ERROR: no such label at or near "flbl1" +ERROR: label does not exist at or near "flbl1" LINE 5: end loop flbl1; ^ -- should fail: end label does not match start label @@ -2714,7 +2714,7 @@ begin end; $$ language plpgsql; ERROR: end label "outer_label" differs from block's label "inner_label" -CONTEXT: compile of PL/pgSQL function "end_label3" near line 6 +CONTEXT: compilation of PL/pgSQL function "end_label3" near line 6 -- should fail: end label on a block without a start label create function end_label4() returns void as $$ <<outer_label>> @@ -2725,7 +2725,7 @@ begin end; $$ language plpgsql; ERROR: end label "outer_label" specified for unlabelled block -CONTEXT: compile of PL/pgSQL function "end_label4" near line 5 +CONTEXT: compilation of PL/pgSQL function "end_label4" near line 5 -- using list of scalars in fori and fore stmts create function for_vect() returns void as $proc$ <<lbl>>declare a integer; b varchar; c varchar; r record; @@ -3266,7 +3266,7 @@ begin end; $$ language plpgsql; ERROR: cursor FOR loop must use a bound cursor variable -CONTEXT: compile of PL/pgSQL function "forc_bad" near line 4 +CONTEXT: compilation of PL/pgSQL function "forc_bad" near line 4 -- test RETURN QUERY EXECUTE create or replace function return_dquery() returns setof int as $$ |