~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-10-09 17:14:15 UTC
  • mfrom: (1827.1.3 trunk-drizzle)
  • Revision ID: brian@tangent.org-20101009171415-tw1rjj8s3k2mrqps
Merge of tdavies (align numbers in trunk).

Show diffs side-by-side

added added

removed removed

Lines of Context:
355
355
    return mem_root.strmake_root(str_arg, len_arg);
356
356
  }
357
357
 
358
 
  filesort_info_st sort;
 
358
  filesort_info sort;
359
359
 
360
360
  Table();
361
361
  virtual ~Table() { };
823
823
class select_union;
824
824
class Tmp_Table_Param;
825
825
 
826
 
struct open_table_list_st
827
 
{
828
 
  std::string   db;
829
 
  std::string   table;
830
 
  uint32_t in_use;
831
 
  uint32_t locked;
832
 
 
833
 
  open_table_list_st() :
834
 
    in_use(0),
835
 
    locked(0)
836
 
  { }
837
 
 
838
 
};
839
 
 
840
826
void free_blobs(Table *table);
841
827
int set_zone(int nr,int min_zone,int max_zone);
842
828
uint32_t convert_period_to_month(uint32_t period);