Commit 7efd71f8 authored by Itagaki Takahiro's avatar Itagaki Takahiro

Fix command tag for ALTER LARGE OBJECT.

parent 8d827f6b
......@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.330 2010/01/17 22:56:22 tgl Exp $
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.331 2010/01/29 06:03:15 itagaki Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -1687,7 +1687,7 @@ CreateCommandTag(Node *parsetree)
tag = "ALTER LANGUAGE";
break;
case OBJECT_LARGEOBJECT:
tag = "ALTER LARGEOBJECT";
tag = "ALTER LARGE OBJECT";
break;
case OBJECT_OPERATOR:
tag = "ALTER OPERATOR";
......
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