~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Brian Aker
  • Date: 2010-07-08 01:02:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1647.
  • Revision ID: brian@gaz-20100708010222-ed5eubeqorb9map2
Column support, clean up of IS/DD for NULL type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
   * only inside of val_*() and store() members (e.g. you can't use it in cons)
98
98
   */
99
99
  Table *table;
 
100
  Table *getTable()
 
101
  {
 
102
    assert(table);
 
103
    return table;
 
104
  }
 
105
 
100
106
  Table *orig_table; /**< Pointer to the original Table. @TODO What is "the original table"? */
101
107
  const char **table_name; /**< Pointer to the name of the table. @TODO This is redundant with Table::table_name. */
102
108
  const char *field_name; /**< Name of the field */