summaryrefslogtreecommitdiff
path: root/storage/ndb/src/old_files/client/odbc/executor/Exec_insert.cpp
blob: c2612c6aaabe1c777751a56ffc6410f18aeee73a (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* 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 <NdbApi.hpp>
#include <common/StmtArea.hpp>
#include <common/ResultArea.hpp>
#include <codegen/Code_insert.hpp>
#include <codegen/Code_query.hpp>

#ifdef NDB_WIN32
#define FMT_I64		"%I64d"
#else
#define FMT_I64		"%lld"
#endif

void
Exec_insert::execImpl(Ctx& ctx, Ctl& ctl)
{
    const Code& code = getCode();
    Data& data = getData();
    Ndb* const ndb = ndbObject();
    NdbConnection* const tcon = ndbConnection();
    // execute subquery
    ctx_assert(m_query != 0);
    m_query->execute(ctx, ctl);
    if (! ctx.ok())
	return;
    // insert each row from query
    data.setCount(0);
    while (m_query->fetch(ctx, ctl)) {
	NdbOperation* op = tcon->getNdbOperation(code.m_tableName);
	if (op == 0) {
	    ctx.pushStatus(ndb, tcon, 0, "getNdbOperation");
	    return;
	}
	if (code.m_insertOp == Insert_op_insert) {
	    if (op->insertTuple() == -1) {
		ctx.pushStatus(ndb, tcon, op, "insertTuple");
		return;
	    }
	} else if (code.m_insertOp == Insert_op_write) {
	    if (op->writeTuple() == -1) {
		ctx.pushStatus(ndb, tcon, op, "writeTuple");
		return;
	    }
	} else {
	    ctx_assert(false);
	}
	const SqlRow& sqlRow = m_query->getData().sqlRow();
	if (code.m_tupleId != 0) {
	    Uint64 tid = op->setTupleId();
	    if (tid == 0) {
		ctx.pushStatus(ndb, tcon, op, "setTupleId attrId=%u", (unsigned)code.m_tupleId);
		return;
	    }
	    ctx_log3(("generated TupleId " FMT_I64, tid));
	} else if (code.m_autoIncrement != 0) {
	    // XXX use cache size 1 for birdies and fishies
	    Uint64 tupleId = ndb->getAutoIncrementValue(code.m_tableName, 1);
	    if (tupleId == 0) {
		ctx.pushStatus(ndb, "getTupleIdFromNdb");
		return;
	    }
	    NdbAttrId attrId = code.m_autoIncrement - 1;
	    SqlSmallint sqlSmallint = 0;
	    SqlInteger sqlInteger = 0;
	    SqlBigint sqlBigint = 0;
	    const char* value = 0;
	    if (code.m_idType.type() == SqlType::Smallint) {
		sqlSmallint = tupleId;
		value = (const char*)&sqlSmallint;
	    } else if (code.m_idType.type() == SqlType::Integer) {
		sqlInteger = tupleId;
		value = (const char*)&sqlInteger;
	    } else if (code.m_idType.type() == SqlType::Bigint) {
		sqlBigint = tupleId;
		value = (const char*)&sqlBigint;
	    } else {
		ctx_assert(false);
	    }
	    if (op->equal(attrId, value) == -1) {
		ctx.pushStatus(ndb, tcon, op, "equal attrId=%u", (unsigned)attrId);
		return;
	    }
	} else {
	    // normal key attributes
	    for (unsigned i = 1; i <= sqlRow.count(); i++) {
		if (! code.m_isKey[i])
		    continue;
		NdbAttrId attrId = code.m_attrId[i];
		const SqlField& f = sqlRow.getEntry(i);
		const void* addr = f.sqlNull() ? 0 : f.addr();
		const char* value = static_cast<const char*>(addr);
		if (op->equal(attrId, value) == -1) {
		    ctx.pushStatus(ndb, tcon, op, "equal attrId=%u", (unsigned)attrId);
		    return;
		}
	    }
	}
	// non-key attributes
	for (unsigned i = 1; i <= sqlRow.count(); i++) {
	    if (code.m_isKey[i])
		continue;
	    NdbAttrId attrId = code.m_attrId[i];
	    const SqlField& f = sqlRow.getEntry(i);
	    const void* addr = f.sqlNull() ? 0 : f.addr();
	    const char* value = static_cast<const char*>(addr);
	    if (op->setValue(attrId, value) == -1) {
		ctx.pushStatus(ndb, tcon, op, "setValue attrId=%u", (unsigned)attrId);
		return;
	    }
	}
	// default non-key values
	for (unsigned i = 1; i <= code.m_defaultCount; i++) {
	    NdbAttrId attrId = code.m_defaultId[i];
	    const SqlField& f = code.m_defaultValue->getEntry(i);
	    const void* addr = f.sqlNull() ? 0 : f.addr();
	    const char* value = static_cast<const char*>(addr);
	    if (op->setValue(attrId, value) == -1) {
		ctx.pushStatus(ndb, tcon, op, "setValue attrId=%u", (unsigned)attrId);
		return;
	    }
	}
	if (tcon->execute(NoCommit) == -1) {
	    ctx.pushStatus(ndb, tcon, op, "execute without commit");
	    return;
	}
	data.addCount();
    }
    stmtArea().setRowCount(ctx, data.getCount());
}