diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-10-10 00:18:52 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-10-10 00:18:52 +0000 |
commit | ca5f6dba0ff247939e85551b9c867e70c9a1ac24 (patch) | |
tree | 38208e339c73e0521fd9e2bdb7929802d163e51b /src/backend/executor/execQual.c | |
parent | 9b1e61b7e946c333f26ceff9e251c8faa6413e5d (diff) | |
download | postgresql-ca5f6dba0ff247939e85551b9c867e70c9a1ac24.tar.gz postgresql-ca5f6dba0ff247939e85551b9c867e70c9a1ac24.zip |
Comment cleanup.
Diffstat (limited to 'src/backend/executor/execQual.c')
-rw-r--r-- | src/backend/executor/execQual.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c index ad59d28d926..c10c61a574d 100644 --- a/src/backend/executor/execQual.c +++ b/src/backend/executor/execQual.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.5 1996/10/07 19:53:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.6 1996/10/10 00:18:52 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -236,10 +236,6 @@ ExecEvalVar(Var *variable, ExprContext *econtext, bool *isNull) tuple_type->attrs[attnum-1] != NULL && variable->vartype == tuple_type->attrs[attnum-1]->atttypid)) - /* - * If the attribute number is invalid, then we are supposed to - variable->vartype == tuple_type->attrs[attnum-1]->atttypid) - /* * If the attribute number is invalid, then we are supposed to * return the entire tuple, we give back a whole slot so that |