~mordred/drizzle/fix-bell-bugs

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
  must be set to 0.
162
162
*/
163
163
 
164
 
class Cursor :public Sql_alloc
 
164
class Cursor :public drizzled::memory::SqlAlloc
165
165
{
166
166
protected:
167
167
  TableShare *table_share;   /* The table definition */
238
238
 
239
239
  Cursor(drizzled::plugin::StorageEngine &engine_arg, TableShare &share_arg);
240
240
  virtual ~Cursor(void);
241
 
  virtual Cursor *clone(MEM_ROOT *mem_root);
 
241
  virtual Cursor *clone(drizzled::memory::Root *mem_root);
242
242
 
243
243
  /* ha_ methods: pubilc wrappers for private virtual API */
244
244