~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_arg.h

  • Committer: Monty Taylor
  • Date: 2011-03-08 23:35:47 UTC
  • mfrom: (2224.2.9 statement2)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: mordred@inaugust.com-20110308233547-w2s3tm5svzv339dp
Merged Olaf - Statement refactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_OPTIMIZER_SEL_ARG_H
21
21
#define DRIZZLED_OPTIMIZER_SEL_ARG_H
22
22
 
23
 
namespace drizzled
24
 
{
25
 
 
26
 
namespace optimizer
27
 
{
 
23
namespace drizzled {
 
24
namespace optimizer {
28
25
 
29
26
class RangeParameter;
30
27
 
260
257
      type(type_arg)
261
258
  {}
262
259
 
 
260
  int size() const
 
261
  {
 
262
    return elements;
 
263
  }
 
264
 
263
265
  inline bool is_same(SEL_ARG *arg)
264
266
  {
265
267
    if (type != arg->type || part != arg->part)