~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_arg.cc

  • Committer: Monty Taylor
  • Date: 2010-03-03 19:27:30 UTC
  • mto: (1308.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 1278.
  • Revision ID: mordred@inaugust.com-20100303192730-o2o3nmp0lzhuatbe
Tags: upstream-2010.03.1317
ImportĀ upstreamĀ versionĀ 2010.03.1317

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include "drizzled/optimizer/range_param.h"
23
23
#include "drizzled/optimizer/sel_arg.h"
24
24
 
25
 
using namespace drizzled;
26
 
 
 
25
namespace drizzled
 
26
{
27
27
 
28
28
/* Functions to fix up the tree after insert and delete */
29
29
static void left_rotate(optimizer::SEL_ARG **root, optimizer::SEL_ARG *leaf)
254
254
 
255
255
optimizer::SEL_ARG::SEL_ARG(optimizer::SEL_ARG &arg)
256
256
  :
257
 
    drizzled::memory::SqlAlloc()
 
257
    memory::SqlAlloc()
258
258
{
259
259
  type= arg.type;
260
260
  min_flag= arg.min_flag;
719
719
}
720
720
 
721
721
 
 
722
} /* namespace drizzled */