diff options
| author | Peter Eisentraut | 2009-06-18 10:22:09 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2009-06-18 10:22:09 +0000 |
| commit | 12bc87e09b2388bb13c9e38e3211e87a3e3c63e0 (patch) | |
| tree | f0b1ca6800b759aa7c4733f001ce1c72aeb1ad5d /src/pl | |
| parent | efa8544fd55e408dc5a8a5a2b7722dc376d7d843 (diff) | |
Refine the use of terminology around bound and unbound cursors and cursor
variables. Remove the confusing term "reference cursor".
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpgsql/src/gram.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpgsql/src/gram.y b/src/pl/plpgsql/src/gram.y index 0fd9a697915..90369ead08f 100644 --- a/src/pl/plpgsql/src/gram.y +++ b/src/pl/plpgsql/src/gram.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.124 2009/05/01 23:57:34 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.125 2009/06/18 10:22:09 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1585,7 +1585,7 @@ stmt_open : K_OPEN lno cursor_variable (errcode(ERRCODE_SYNTAX_ERROR), errmsg("syntax error at \"%s\"", yytext), - errdetail("Expected \"FOR\", to open a reference cursor."))); + errdetail("Expected \"FOR\", to open a cursor for an unbound cursor variable."))); } tok = yylex(); |
