Commit b61318d1 authored by Peter Eisentraut's avatar Peter Eisentraut

Better descriptions in pg_get_keywords(), consistent with the documentation

appendix on key words.  catdesc was originally intended as computer-readable,
but since we ended up adding catcode, we can have more elaborate descriptions.
parent 455dffbb
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/misc.c,v 1.65 2008/11/03 17:51:13 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/misc.c,v 1.66 2008/12/05 13:41:20 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -344,19 +344,19 @@ pg_get_keywords(PG_FUNCTION_ARGS) ...@@ -344,19 +344,19 @@ pg_get_keywords(PG_FUNCTION_ARGS)
{ {
case UNRESERVED_KEYWORD: case UNRESERVED_KEYWORD:
values[1] = "U"; values[1] = "U";
values[2] = _("Unreserved"); values[2] = _("unreserved");
break; break;
case COL_NAME_KEYWORD: case COL_NAME_KEYWORD:
values[1] = "C"; values[1] = "C";
values[2] = _("Column name"); values[2] = _("unreserved (cannot be function or type name)");
break; break;
case TYPE_FUNC_NAME_KEYWORD: case TYPE_FUNC_NAME_KEYWORD:
values[1] = "T"; values[1] = "T";
values[2] = _("Type or function name"); values[2] = _("reserved (can be function or type name)");
break; break;
case RESERVED_KEYWORD: case RESERVED_KEYWORD:
values[1] = "R"; values[1] = "R";
values[2] = _("Reserved"); values[2] = _("reserved");
break; break;
default: /* shouldn't be possible */ default: /* shouldn't be possible */
values[1] = NULL; values[1] = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment