~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-05-06 06:59:53 UTC
  • mfrom: (1003.1.20 merge)
  • Revision ID: brian@gaz-20090506065953-4mrfmaty42e0ixpq
Merge handler cleanup (and ALTER TABLE cleanup) We go from 1 and 2 half
thought out systems... to just 1.

This should all be changed when we finish the StorageEngine rewrite

Show diffs side-by-side

added added

removed removed

Lines of Context:
1929
1929
  }
1930
1930
}
1931
1931
 
1932
 
bool Field::isRead() 
 
1932
bool Field::isReadSet() 
1933
1933
1934
 
  return table->read_set->test(field_index); 
 
1934
  return table->isReadSet(field_index); 
1935
1935
}
1936
1936
 
1937
1937
 
1938
 
bool Field::isWrite()
 
1938
bool Field::isWriteSet()
1939
1939
1940
 
  return table->write_set->test(field_index); 
 
1940
  return table->isWriteSet(field_index); 
1941
1941
}
1942
1942