~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/filesystem_engine.h

  • Committer: Monty Taylor
  • Date: 2010-09-28 07:45:44 UTC
  • mto: (1799.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1800.
  • Revision ID: mordred@inaugust.com-20100928074544-s3ujnv6s8wro74l2
Added BSD copying file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  std::vector< std::pair<off_t, off_t> > slots;
68
68
 
69
69
public:
70
 
  FilesystemCursor(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
 
70
  FilesystemCursor(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
71
71
  ~FilesystemCursor()
72
72
  {
73
73
  }
101
101
  virtual void get_auto_increment(uint64_t offset, uint64_t increment,
102
102
                                  uint64_t nb_desired_values,
103
103
                                  uint64_t *first_value,
104
 
                                  uint64_t *nb_reserved_values) { (void)offset; (void)increment; (void)nb_desired_values; (void)first_value; (void)nb_reserved_values; }
 
104
                                  uint64_t *nb_reserved_values) { (void)offset; (void)increment; (void)nb_desired_values; (void)first_value; (void)nb_reserved_values; };
105
105
  FilesystemTableShare *get_share(const char *table_name);
106
106
  void free_share();
107
107
  void critical_section_enter();