~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/explain_plan.h

  • Committer: Brian Aker
  • Date: 2009-12-18 23:28:10 UTC
  • mfrom: (1240.7.8 explain-plan)
  • Revision ID: brian@gaz-20091218232810-8u72it1739fprbfm
MergeĀ fromĀ Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef DRIZZLED_OPTIMIZER_EXPLAIN_PLAN_H
 
21
#define DRIZZLED_OPTIMIZER_EXPLAIN_PLAN_H
 
22
 
 
23
class Session;
 
24
class Select_Lex_Unit;
 
25
class select_result;
 
26
 
 
27
namespace drizzled
 
28
{
 
29
 
 
30
namespace optimizer
 
31
{
 
32
 
 
33
class ExplainPlan
 
34
{
 
35
public:
 
36
 
 
37
  ExplainPlan()
 
38
    :
 
39
      join(NULL),
 
40
      need_tmp_table(false),
 
41
      need_order(false),
 
42
      distinct(false),
 
43
      message(NULL)
 
44
  {}
 
45
 
 
46
  ExplainPlan(JOIN *in_join,
 
47
              bool in_need_tmp_table,
 
48
              bool in_need_order,
 
49
              bool in_distinct,
 
50
              const char *in_message)
 
51
    :
 
52
      join(in_join),
 
53
      need_tmp_table(in_need_tmp_table),
 
54
      need_order(in_need_order),
 
55
      distinct(in_distinct),
 
56
      message(in_message)
 
57
  {}
 
58
 
 
59
  void printPlan();
 
60
 
 
61
  bool explainUnion(Session *session,
 
62
                    Select_Lex_Unit *unit,
 
63
                    select_result *result);
 
64
 
 
65
private:
 
66
 
 
67
  JOIN *join;
 
68
 
 
69
  bool need_tmp_table;
 
70
 
 
71
  bool need_order;
 
72
 
 
73
  bool distinct;
 
74
 
 
75
  const char *message;
 
76
};
 
77
 
 
78
} /* namespace optimizer */
 
79
 
 
80
} /* namespace drizzled */
 
81
 
 
82
#endif /* DRIZZLED_OPTIMIZER_EXPLAIN_PLAN_H */