~aglenyoung/+junk/postgres-9.3-dtrace

« back to all changes in this revision

Viewing changes to src/backend/parser/parse_target.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Christoph Berg, Martin Pitt
  • Date: 2013-06-26 15:13:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130626151332-p34yjpn0txbdsdzd
Tags: 9.3~beta2-1
[ Christoph Berg ]
* hurd-i386: Ignore testsuite failures so we have a working libpq5 (they
  don't implement semaphores so the server won't even start).
* Mark postgresql-9.3 as beta in the description, suggested by Joshua D.
  Drake.

[ Martin Pitt ]
* New upstream release 9.3 beta2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 *
77
77
 * node         the (untransformed) parse tree for the value expression.
78
78
 * expr         the transformed expression, or NULL if caller didn't do it yet.
79
 
 * exprKind     expression kind (EXPR_KIND_SELECT_TARGET, etc)
 
79
 * exprKind expression kind (EXPR_KIND_SELECT_TARGET, etc)
80
80
 * colname      the column name to be assigned, or NULL if none yet set.
81
81
 * resjunk      true if the target should be marked resjunk, ie, it is not
82
82
 *                      wanted in the final projected tuple.
1130
1130
 *              Transforms '*' (in the target list) into a list of targetlist entries.
1131
1131
 *
1132
1132
 * tlist entries are generated for each relation visible for unqualified
1133
 
 * column name access.  We do not consider qualified-name-only entries because
 
1133
 * column name access.  We do not consider qualified-name-only entries because
1134
1134
 * that would include input tables of aliasless JOINs, NEW/OLD pseudo-entries,
1135
1135
 * etc.
1136
1136
 *