~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Monty Taylor
  • Date: 2009-12-30 18:44:00 UTC
  • mfrom: (1258 build)
  • mto: This revision was merged to the branch mainline in revision 1259.
  • Revision ID: mordred@inaugust.com-20091230184400-li96wztn438f0myn
Merged up with trunk.

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