~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.h

  • Committer: Brian Aker
  • Date: 2010-03-31 19:14:14 UTC
  • Revision ID: brian@gaz-20100331191414-9yv44mmpvf0tb7l1
Updated to use show schemas specific table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
class TableProtoTesterCursor: public drizzled::Cursor
25
25
{
26
26
public:
27
 
  TableProtoTesterCursor(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
 
27
  TableProtoTesterCursor(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
28
28
  ~TableProtoTesterCursor()
29
29
  {}
30
30
 
36
36
  uint32_t index_flags(uint32_t inx) const;
37
37
  int open(const char *name, int mode, uint32_t test_if_locked);
38
38
  int close(void);
39
 
  int doInsertRecord(unsigned char * buf);
40
 
  int doStartTableScan(bool scan);
 
39
  int write_row(unsigned char * buf);
 
40
  int rnd_init(bool scan);
41
41
  int rnd_next(unsigned char *buf);
42
42
  int rnd_pos(unsigned char * buf, unsigned char *pos);
43
43
 
53
53
  int index_last(unsigned char * buf);
54
54
  void position(const unsigned char *record);
55
55
  int info(uint32_t flag);
56
 
 
57
 
  void get_auto_increment(uint64_t, uint64_t,
58
 
                          uint64_t,
59
 
                          uint64_t *,
60
 
                          uint64_t *)
61
 
  {}
62
56
};
63
57
 
64
58
#endif /* PLUGIN_TABLEPROTOTESTER_TABLEPROTOTESTER_H */