~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:27:09 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032709-oyvfrc6eb8fzj0mr
fix docs warning: docs/unlock.rst:2: (WARNING/2) Title underline too short.

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::TableShare &table_arg);
 
27
  TableProtoTesterCursor(drizzled::plugin::StorageEngine &engine, drizzled::Table &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 write_row(unsigned char * buf);
40
 
  int rnd_init(bool scan);
 
39
  int doInsertRecord(unsigned char * buf);
 
40
  int doStartTableScan(bool scan);
41
41
  int rnd_next(unsigned char *buf);
42
42
  int rnd_pos(unsigned char * buf, unsigned char *pos);
43
43