~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2010-05-19 00:35:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1542.
  • Revision ID: brian@gaz-20100519003541-7ecxcuwv9klvzi8l
JOIN -> Join rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
*/
306
306
class Session;
307
307
class select_result;
308
 
class JOIN;
 
308
class Join;
309
309
class select_union;
310
310
class Select_Lex_Unit: public Select_Lex_Node {
311
311
protected:
422
422
  List<Item> item_list;  /* list of fields & expressions */
423
423
  List<String> interval_list;
424
424
  bool is_item_list_lookup;
425
 
  JOIN *join; /* after JOIN::prepare it is pointer to corresponding JOIN */
 
425
  Join *join; /* after Join::prepare it is pointer to corresponding JOIN */
426
426
  List<TableList> top_join_list; /* join list of the top level          */
427
427
  List<TableList> *join_list;    /* list for the currently parsed join  */
428
428
  TableList *embedding;          /* table embedding to the above list   */