~patrick-crews/drizzle/beta-multi-master-tests

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: patrick crews
  • Date: 2011-03-25 21:39:40 UTC
  • mfrom: (2239.3.13 drizzle-ga)
  • Revision ID: gleebix@gmail.com-20110325213940-k1r45sqv2z305tex
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <drizzled/lex_string.h>
36
36
#include <drizzled/table/instance.h>
37
37
#include <drizzled/atomics.h>
38
 
#include <drizzled/query_id.h>
39
38
 
40
39
#include <drizzled/visibility.h>
41
40
 
42
 
namespace drizzled
43
 
{
 
41
namespace drizzled {
44
42
 
45
43
class COND_EQUAL;
46
44
class Field_blob;
55
53
 
56
54
typedef enum enum_table_category TABLE_CATEGORY;
57
55
typedef struct st_columndef MI_COLUMNDEF;
 
56
typedef uint64_t query_id_t;
58
57
 
59
58
/**
60
59
 * Class representing a set of records, either in a temporary, 
469
468
   * @retval
470
469
   *  true when out of memory
471
470
   */
472
 
  bool fill_item_list(List<Item> *item_list) const;
 
471
  void fill_item_list(List<Item>&) const;
473
472
  void clear_column_bitmaps(void);
474
473
  void prepare_for_position(void);
475
474
  void mark_columns_used_by_index_no_reset(uint32_t index, boost::dynamic_bitset<>& bitmap);