~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/table.h

  • Committer: Brian Aker
  • Date: 2008-07-11 00:33:12 UTC
  • mfrom: (51.1.83 remove-dbug)
  • Revision ID: brian@tangent.org-20080711003312-f4sf5n2z3obor1u8
Comming Jay's merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
  plugin_ref db_plugin;                 /* storage engine plugin */
237
237
  inline handlerton *db_type() const    /* table_type for handler */
238
238
  { 
239
 
    // DBUG_ASSERT(db_plugin);
 
239
    // assert(db_plugin);
240
240
    return db_plugin ? plugin_data(db_plugin, handlerton*) : NULL;
241
241
  }
242
242
  enum row_type row_type;               /* How rows are stored */
437
437
  query_id_t    query_id;
438
438
 
439
439
  /* 
440
 
    For each key that has quick_keys.is_set(key) == TRUE: estimate of #records
 
440
    For each key that has quick_keys.is_set(key) == true: estimate of #records
441
441
    and max #key parts that range access would use.
442
442
  */
443
443
  ha_rows       quick_rows[MAX_KEY];
852
852
    an operand of such a join.
853
853
  */
854
854
  List<Natural_join_column> *join_columns;
855
 
  /* TRUE if join_columns contains all columns of this table reference. */
 
855
  /* true if join_columns contains all columns of this table reference. */
856
856
  bool is_join_columns_complete;
857
857
 
858
858
  /*
949
949
  int           lock_timeout;           /* NOWAIT or WAIT [X]               */
950
950
  bool          lock_transactional;     /* If transactional lock requested. */
951
951
  bool          internal_tmp_table;
952
 
  /** TRUE if an alias for this table was specified in the SQL. */
 
952
  /** true if an alias for this table was specified in the SQL. */
953
953
  bool          is_alias;
954
 
  /** TRUE if the table is referred to in the statement using a fully
 
954
  /** true if the table is referred to in the statement using a fully
955
955
      qualified name (<db_name>.<table_name>).
956
956
  */
957
957
  bool          is_fqtn;