summaryrefslogtreecommitdiff
path: root/storage/ndb/src/old_files/client/odbc/codegen/Code_pred.cpp
blob: fe7cac7606ee0bd97f0f6379cc317ebc50a502a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* Copyright (C) 2003 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

#include "Code_pred.hpp"
#include "Code_pred_op.hpp"
#include "Code_root.hpp"

// Plan_pred

Plan_pred::~Plan_pred()
{
}

bool
Plan_pred::isGroupBy(const Plan_expr_row* row) const
{
    return false;
}

Plan_pred*
Plan_pred::opAnd(Plan_pred* pred2)
{
    Plan_pred_op* predAnd = new Plan_pred_op(m_root, Pred_op::And);
    m_root->saveNode(predAnd);
    predAnd->setPred(1, this);
    predAnd->setPred(2, pred2);
    return predAnd;
}

// Exec_pred

Exec_pred::Code::~Code()
{
}

Exec_pred::Data::~Data()
{
}

Exec_pred::~Exec_pred()
{
}

Pred_value&
Exec_pred::Data::groupValue(unsigned i, bool initFlag)
{
    if (m_groupValue.size() == 0) {
	m_groupValue.resize(1);
    }
    if (initFlag) {
	//unsigned i2 = m_groupValue.size();
	//ctx_assert(i == i2);
	m_groupValue.push_back(Pred_value_unknown);
    }
    ctx_assert(i != 0 && i < m_groupValue.size());
    return m_groupValue[i];
}