diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-21 18:42:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-21 18:42:08 +0000 |
commit | 66e9ee79c75e2b684d47fd791a4a08f777eb731a (patch) | |
tree | bb0c4e7aa9ef0eeeeaebed72194b9dc6695f2177 /src/include/nodes/parsenodes.h | |
parent | 984bf07a65a8753a2538aad68de7342a0619523e (diff) | |
download | postgresql-66e9ee79c75e2b684d47fd791a4a08f777eb731a.tar.gz postgresql-66e9ee79c75e2b684d47fd791a4a08f777eb731a.zip |
Print error on SELECT tab FROM tab:
You can't use relation names alone in the target list, try relation.*
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index cfea5222965..ff4cc278312 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.128 2001/05/20 20:28:20 tgl Exp $ + * $Id: parsenodes.h,v 1.129 2001/05/21 18:42:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1081,8 +1081,7 @@ typedef struct Ident NodeTag type; char *name; /* its name */ List *indirection; /* array references */ - bool isRel; /* is a relation - filled in by - * transformExpr() */ + bool isRel; /* is this a relation or a column? */ } Ident; /* |