~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2010-09-09 18:27:05 UTC
  • mto: (1756.1.2 build) (1768.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1757.
  • Revision ID: brian@tangent.org-20100909182705-pnzlmg2yuz2o5wdt
Remove table name from ha_open (we modified this a while ago to just use
identifier)

Show diffs side-by-side

added added

removed removed

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