Commit f99dcd6d authored by Bruce Momjian's avatar Bruce Momjian

Fix for AS name quotation problem.

parent 976b3862
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.37 1998/07/09 14:59:27 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.38 1998/07/13 21:27:58 momjian Exp $
* *
* NOTES * NOTES
* Every (plan) node in POSTGRES has an associated "out" routine which * Every (plan) node in POSTGRES has an associated "out" routine which
...@@ -660,7 +660,10 @@ _outResdom(StringInfo str, Resdom *node) ...@@ -660,7 +660,10 @@ _outResdom(StringInfo str, Resdom *node)
sprintf(buf, " :restypmod %d ", node->restypmod); sprintf(buf, " :restypmod %d ", node->restypmod);
appendStringInfo(str, buf); appendStringInfo(str, buf);
appendStringInfo(str, " :resname "); appendStringInfo(str, " :resname ");
sprintf(buf,"\"%s\"", node->resname); /* fix for SELECT col AS "my name" */ if (*node->resname)
sprintf(buf,"\"%s\"", node->resname); /* fix for SELECT col AS "my name" */
else
buf[0] = '\0';
appendStringInfo(str, buf); appendStringInfo(str, buf);
sprintf(buf, " :reskey %d ", node->reskey); sprintf(buf, " :reskey %d ", node->reskey);
appendStringInfo(str, buf); appendStringInfo(str, buf);
......
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