~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.h

  • Committer: Monty Taylor
  • Date: 2009-06-08 16:27:18 UTC
  • mto: This revision was merged to the branch mainline in revision 1056.
  • Revision ID: mordred@inaugust.com-20090608162718-41unm3ienvzy15a2
Fixed Solaris build problem. Removde unused new/delete opeartors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
253
253
  item->marker should be 0 for all items on entry
254
254
  Return in cond_value false if condition is impossible (1 = 2)
255
255
*****************************************************************************/
256
 
class COND_CMP {
257
 
public:
258
 
  static void *operator new(size_t size)
259
 
  {
260
 
    return (void*) sql_alloc((uint32_t) size);
261
 
  }
262
 
  static void operator delete(void *, size_t)
263
 
  { TRASH(ptr, size); }
264
 
 
 
256
struct COND_CMP {
265
257
  Item *and_level;
266
258
  Item_func *cmp_func;
267
259
  COND_CMP(Item *a,Item_func *b) :and_level(a),cmp_func(b) {}