[HACKERS] Code questions

2002-06-23 Thread Christopher Kings-Lynne
Hi All,   Whereabouts in the code is the '*' expanded into the list of valid columns and also where are the columns specified in the select arguments (or whereever) checked for validity?   Chris  

Re: [HACKERS] Code questions

2002-06-23 Thread Gavin Sherry
On Sun, 23 Jun 2002, Christopher Kings-Lynne wrote: > Hi All, > > Whereabouts in the code is the '*' expanded into the list of valid columns See the rule 'target_el' in gram.y. The SelectStmt node is processed further down the parser in analyze.c: see transformStmt(), transformSelectStmt() and