~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Zimin
  • Date: 2010-06-30 06:36:56 UTC
  • mto: (1643.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1644.
  • Revision ID: ziminq@gmail.com-20100630063656-5oa531u1mfyn6ybl
move the comment of 'create' in TableList as well

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
  bool force_index; ///< prefer index over table scan
166
166
  bool ignore_leaves; ///< preload only non-leaf nodes
167
167
 
168
 
  /**
169
 
   * This TableList object corresponds to the table to be created
170
 
   * so it is possible that it does not exist (used in CREATE TABLE
171
 
   * ... SELECT implementation).
172
 
   */
173
 
 
174
168
  /*
175
169
    is the table a cartesian join, assumption is yes unless "solved"
176
170
  */
534
528
   * qualified name (<db_name>.<table_name>).
535
529
   */
536
530
  bool is_fqtn;
 
531
  /**
 
532
   * This TableList object corresponds to the table to be created
 
533
   * so it is possible that it does not exist (used in CREATE TABLE
 
534
   * ... SELECT implementation).
 
535
   */
537
536
  bool create;
538
537
 
539
538
};