~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: brian
  • Date: 2009-11-11 19:42:27 UTC
  • mfrom: (1211 staging)
  • mto: (1211.1.4 staging)
  • mto: This revision was merged to the branch mainline in revision 1212.
  • Revision ID: brian@orisndriz04-20091111194227-mky4am3ym0dlosaa
Update for Cursor renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  TableShare *s; /**< Pointer to the shared metadata about the table */
68
68
  Field **field; /**< Pointer to fields collection */
69
69
 
70
 
  Cursor *file; /**< Pointer to the storage engine's Cursor managing this table */
 
70
  Cursor *cursor; /**< Pointer to the storage engine's Cursor managing this table */
71
71
  Table *next;
72
72
  Table *prev;
73
73
 
75
75
  MyBitmap *write_set; /* Active column sets */
76
76
 
77
77
  uint32_t tablenr;
78
 
  uint32_t db_stat; /**< information about the file as in Cursor.h */
 
78
  uint32_t db_stat; /**< information about the cursor as in Cursor.h */
79
79
 
80
80
  MyBitmap def_read_set; /**< Default read set of columns */
81
81
  MyBitmap def_write_set; /**< Default write set of columns */
172
172
 
173
173
  /**
174
174
   * Estimate of number of records that satisfy SARGable part of the table
175
 
   * condition, or table->file->records if no SARGable condition could be
 
175
   * condition, or table->cursor->records if no SARGable condition could be
176
176
   * constructed.
177
177
   * This value is used by join optimizer as an estimate of number of records
178
178
   * that will pass the table condition (condition that depends on fields of
240
240
  Table() : 
241
241
    s(NULL), 
242
242
    field(NULL),
243
 
    file(NULL),
 
243
    cursor(NULL),
244
244
    next(NULL),
245
245
    prev(NULL),
246
246
    read_set(NULL),
318
318
    s= share;
319
319
    field= NULL;
320
320
 
321
 
    file= NULL;
 
321
    cursor= NULL;
322
322
    next= NULL;
323
323
    prev= NULL;
324
324