diff options
author | Tom Lane | 2003-07-22 19:00:12 +0000 |
---|---|---|
committer | Tom Lane | 2003-07-22 19:00:12 +0000 |
commit | b05d3ae1edf557e174f80624219854767963dc66 (patch) | |
tree | 204def9d6f61d82a5816275df9384d209ad12d55 /src/test/regress/expected/portals.out | |
parent | 277dbb0c34791fe2f6192d02ea577d3738666c2f (diff) |
Error message editing in backend/libpq, backend/postmaster, backend/tcop.
Along the way, fix some logic problems in pgstat_initstats, notably the
bogus assumption that malloc returns zeroed memory.
Diffstat (limited to 'src/test/regress/expected/portals.out')
-rw-r--r-- | src/test/regress/expected/portals.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/portals.out b/src/test/regress/expected/portals.out index 5122f098431..245edffe543 100644 --- a/src/test/regress/expected/portals.out +++ b/src/test/regress/expected/portals.out @@ -689,8 +689,8 @@ FETCH 1 FROM foo24; (1 row) FETCH BACKWARD 1 FROM foo24; -- should fail -ERROR: Cursor can only scan forward - Declare it with SCROLL option to enable backward scan +ERROR: cursor can only scan forward +HINT: Declare it with SCROLL option to enable backward scan. END; -- -- Cursors outside transaction blocks |