~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Monty Taylor
  • Date: 2010-10-30 01:19:00 UTC
  • mto: (1892.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1893.
  • Revision ID: mordred@inaugust.com-20101030011900-2tdt8w9vt7a6pbk0
Fixed things to make things compile with clang

Show diffs side-by-side

added added

removed removed

Lines of Context:
522
522
    the corresponding 'ha_*' method above.
523
523
  */
524
524
 
525
 
  virtual int open(const char *, int , uint32_t ) { assert(0); return -1; };
 
525
  virtual int open(const char *, int , uint32_t ) { assert(0); return -1; }
526
526
  virtual int doOpen(const TableIdentifier &identifier, int mode, uint32_t test_if_locked);
527
527
  virtual int doStartIndexScan(uint32_t idx, bool)
528
528
  { active_index= idx; return 0; }
583
583
  {
584
584
    return 0;
585
585
  }
586
 
  virtual void release_auto_increment(void) { return; };
 
586
  virtual void release_auto_increment(void) { return; }
587
587
  /** admin commands - called from mysql_admin_table */
588
588
  virtual int check(Session *)
589
589
  { return HA_ADMIN_NOT_IMPLEMENTED; }