summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorPeter Eisentraut2009-06-18 10:22:09 +0000
committerPeter Eisentraut2009-06-18 10:22:09 +0000
commit12bc87e09b2388bb13c9e38e3211e87a3e3c63e0 (patch)
treef0b1ca6800b759aa7c4733f001ce1c72aeb1ad5d /src/pl
parentefa8544fd55e408dc5a8a5a2b7722dc376d7d843 (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.y4
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();