~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2010-06-21 00:20:07 UTC
  • mto: (1633.4.1 rollup)
  • mto: This revision was merged to the branch mainline in revision 1635.
  • Revision ID: brian@gir-2.local-20100621002007-rnuo9shkr02gra3h
Adding in TableIdentifier for ha_open; (first pass)

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
 
231
231
  /* ha_ methods: pubilc wrappers for private virtual API */
232
232
 
233
 
  int ha_open(Table *table, const char *name, int mode, int test_if_locked);
 
233
  int ha_open(const TableIdentifier &identifier, Table *table, const char *name, int mode, int test_if_locked);
234
234
  int startIndexScan(uint32_t idx, bool sorted);
235
235
  int endIndexScan();
236
236
  int startTableScan(bool scan);