diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-05-29 13:39:30 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-05-29 13:39:30 +0000 |
commit | 62222925826cea2f75c62c348ac284bc462e74e0 (patch) | |
tree | 43a626cea7328089aef5e0bb18fb4f94360d58fc /src | |
parent | 3984f0eeb243f0ae3eaceef3a8dcf2ee238d732e (diff) | |
download | postgresql-62222925826cea2f75c62c348ac284bc462e74e0.tar.gz postgresql-62222925826cea2f75c62c348ac284bc462e74e0.zip |
Fix up a couple of comments broken by the automatic indenting process.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/parser/analyze.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index 0038c397b43..95e19e8cb59 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.75 1998/05/09 23:29:52 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.76 1998/05/29 13:39:30 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -315,8 +315,8 @@ transformInsertStmt(ParseState *pstate, InsertStmt *stmt) te = makeNode(TargetEntry); te->resdom = makeResdom(defval[ndef].adnum, att[defval[ndef].adnum - 1]->atttypid, - att[defval[ndef].adnum - 1]->atttypmod, - pstrdup(nameout(&(att[defval[ndef].adnum - 1]->attname))), + att[defval[ndef].adnum - 1]->atttypmod, + pstrdup(nameout(&(att[defval[ndef].adnum - 1]->attname))), 0, 0, 0); te->fjoin = NULL; te->expr = (Node *) stringToNode(defval[ndef].adbin); @@ -350,9 +350,10 @@ transformInsertStmt(ParseState *pstate, InsertStmt *stmt) if (pstate->p_hasAggs) parseCheckAggregates(pstate, qry); - /* The INSERT INTO ... SELECT ... could have a UNION */ - qry->unionall = stmt->unionall; /* in child, so unionClause may be - * false */ + /* The INSERT INTO ... SELECT ... could have a UNION + * in child, so unionClause may be false + */ + qry->unionall = stmt->unionall; qry->unionClause = transformUnionClause(stmt->unionClause, qry->targetList); return (Query *) qry; @@ -813,8 +814,10 @@ transformSelectStmt(ParseState *pstate, SelectStmt *stmt) if (pstate->p_hasAggs) parseCheckAggregates(pstate, qry); - qry->unionall = stmt->unionall; /* in child, so unionClause may be - * false */ + /* The INSERT INTO ... SELECT ... could have a UNION + * in child, so unionClause may be false + */ + qry->unionall = stmt->unionall; qry->unionClause = transformUnionClause(stmt->unionClause, qry->targetList); return (Query *) qry; |