~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

Collection of patches/bug fixes from new-cleanup tree (none of the
Table/other fixes are included).

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#define DATETIME_DEC                     6
39
39
#define DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE FLOATING_POINT_BUFFER
 
40
#define ASSERT_COLUMN_MARKED_FOR_READ assert(!table || (table->read_set == NULL || isReadSet()))
 
41
#define ASSERT_COLUMN_MARKED_FOR_WRITE assert(!table || (table->write_set == NULL || isWriteSet()))
40
42
 
41
43
const uint32_t max_field_size= (uint32_t) 4294967295U;
42
44
 
741
743
 
742
744
  bool isReadSet();
743
745
  bool isWriteSet();
 
746
  void setReadSet(bool arg= true);
 
747
  void setWriteSet(bool arg= true);
744
748
 
745
749
private:
746
750