Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
049c3e3f
Commit
049c3e3f
authored
Jun 12, 2006
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/marty/MySQL/mysql-4.1
parents
9ec2be74
b89f1791
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
375 additions
and
44 deletions
+375
-44
mysql-test/r/ndb_lock.result
mysql-test/r/ndb_lock.result
+86
-0
mysql-test/r/ndb_truncate.result
mysql-test/r/ndb_truncate.result
+16
-7
mysql-test/t/ndb_lock.test
mysql-test/t/ndb_lock.test
+111
-0
mysql-test/t/ndb_truncate.test
mysql-test/t/ndb_truncate.test
+14
-9
ndb/include/ndbapi/NdbIndexScanOperation.hpp
ndb/include/ndbapi/NdbIndexScanOperation.hpp
+4
-3
ndb/include/ndbapi/NdbResultSet.hpp
ndb/include/ndbapi/NdbResultSet.hpp
+21
-0
ndb/include/ndbapi/NdbScanOperation.hpp
ndb/include/ndbapi/NdbScanOperation.hpp
+4
-2
ndb/src/ndbapi/NdbResultSet.cpp
ndb/src/ndbapi/NdbResultSet.cpp
+11
-0
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+21
-9
ndb/src/ndbapi/ndberror.c
ndb/src/ndbapi/ndberror.c
+1
-1
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+83
-11
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+2
-0
sql/handler.h
sql/handler.h
+1
-2
No files found.
mysql-test/r/ndb_lock.result
View file @
049c3e3f
...
@@ -63,3 +63,89 @@ pk u o
...
@@ -63,3 +63,89 @@ pk u o
5 5 5
5 5 5
insert into t1 values (1,1,1);
insert into t1 values (1,1,1);
drop table t1;
drop table t1;
create table t1 (x integer not null primary key, y varchar(32), z integer, key(z)) engine = ndb;
insert into t1 values (1,'one',1), (2,'two',2),(3,"three",3);
begin;
select * from t1 where x = 1 for update;
x y z
1 one 1
begin;
select * from t1 where x = 2 for update;
x y z
2 two 2
select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
begin;
select * from t1 where y = 'one' or y = 'three' for update;
x y z
3 three 3
1 one 1
begin;
select * from t1 where x = 2 for update;
x y z
2 two 2
select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
begin;
select * from t1 where z > 1 and z < 3 for update;
x y z
2 two 2
begin;
select * from t1 where x = 1 for update;
x y z
1 one 1
select * from t1 where x = 2 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
begin;
select * from t1 where x = 1 lock in share mode;
x y z
1 one 1
begin;
select * from t1 where x = 1 lock in share mode;
x y z
1 one 1
select * from t1 where x = 2 for update;
x y z
2 two 2
select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
begin;
select * from t1 where y = 'one' or y = 'three' lock in share mode;
x y z
3 three 3
1 one 1
begin;
select * from t1 where y = 'one' lock in share mode;
x y z
1 one 1
select * from t1 where x = 2 for update;
x y z
2 two 2
select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
begin;
select * from t1 where z > 1 and z < 3 lock in share mode;
x y z
2 two 2
begin;
select * from t1 where z = 1 lock in share mode;
x y z
1 one 1
select * from t1 where x = 1 for update;
x y z
1 one 1
select * from t1 where x = 2 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
drop table t1;
mysql-test/r/ndb_truncate.result
View file @
049c3e3f
DROP TABLE IF EXISTS t2;
DROP TABLE IF EXISTS t
1, t
2;
CREATE TABLE t
2
(
CREATE TABLE t
1
(
a bigint unsigned NOT NULL PRIMARY KEY,
a bigint unsigned NOT NULL
AUTO_INCREMENT
PRIMARY KEY,
b int unsigned not null,
b int unsigned not null,
c int unsigned
c int unsigned
) engine=ndbcluster;
) engine=ndbcluster;
select count(*) from t
2
;
select count(*) from t
1
;
count(*)
count(*)
5000
5000
truncate table t2;
select * from t1 order by a limit 2;
select count(*) from t2;
a b c
1 509 2500
2 510 7
truncate table t1;
select count(*) from t1;
count(*)
count(*)
0
0
drop table t2;
insert into t1 values(NULL,1,1),(NULL,2,2);
select * from t1 order by a;
a b c
1 1 1
2 2 2
drop table t1;
mysql-test/t/ndb_lock.test
View file @
049c3e3f
...
@@ -69,4 +69,115 @@ insert into t1 values (1,1,1);
...
@@ -69,4 +69,115 @@ insert into t1 values (1,1,1);
drop
table
t1
;
drop
table
t1
;
# Lock for update
create
table
t1
(
x
integer
not
null
primary
key
,
y
varchar
(
32
),
z
integer
,
key
(
z
))
engine
=
ndb
;
insert
into
t1
values
(
1
,
'one'
,
1
),
(
2
,
'two'
,
2
),(
3
,
"three"
,
3
);
# PK access
connection
con1
;
begin
;
select
*
from
t1
where
x
=
1
for
update
;
connection
con2
;
begin
;
select
*
from
t1
where
x
=
2
for
update
;
--
error
1205
select
*
from
t1
where
x
=
1
for
update
;
rollback
;
connection
con1
;
commit
;
# table scan
connection
con1
;
begin
;
select
*
from
t1
where
y
=
'one'
or
y
=
'three'
for
update
;
connection
con2
;
begin
;
# Have to check with pk access here since scans take locks on
# all rows and then release them in chunks
select
*
from
t1
where
x
=
2
for
update
;
--
error
1205
select
*
from
t1
where
x
=
1
for
update
;
rollback
;
connection
con1
;
commit
;
# index scan
connection
con1
;
begin
;
select
*
from
t1
where
z
>
1
and
z
<
3
for
update
;
connection
con2
;
begin
;
# Have to check with pk access here since scans take locks on
# all rows and then release them in chunks
select
*
from
t1
where
x
=
1
for
update
;
--
error
1205
select
*
from
t1
where
x
=
2
for
update
;
rollback
;
connection
con1
;
commit
;
# share locking
# PK access
connection
con1
;
begin
;
select
*
from
t1
where
x
=
1
lock
in
share
mode
;
connection
con2
;
begin
;
select
*
from
t1
where
x
=
1
lock
in
share
mode
;
select
*
from
t1
where
x
=
2
for
update
;
--
error
1205
select
*
from
t1
where
x
=
1
for
update
;
rollback
;
connection
con1
;
commit
;
# table scan
connection
con1
;
begin
;
select
*
from
t1
where
y
=
'one'
or
y
=
'three'
lock
in
share
mode
;
connection
con2
;
begin
;
select
*
from
t1
where
y
=
'one'
lock
in
share
mode
;
# Have to check with pk access here since scans take locks on
# all rows and then release them in chunks
select
*
from
t1
where
x
=
2
for
update
;
--
error
1205
select
*
from
t1
where
x
=
1
for
update
;
rollback
;
connection
con1
;
commit
;
# index scan
connection
con1
;
begin
;
select
*
from
t1
where
z
>
1
and
z
<
3
lock
in
share
mode
;
connection
con2
;
begin
;
select
*
from
t1
where
z
=
1
lock
in
share
mode
;
# Have to check with pk access here since scans take locks on
# all rows and then release them in chunks
select
*
from
t1
where
x
=
1
for
update
;
--
error
1205
select
*
from
t1
where
x
=
2
for
update
;
rollback
;
connection
con1
;
commit
;
drop
table
t1
;
# End of 4.1 tests
# End of 4.1 tests
mysql-test/t/ndb_truncate.test
View file @
049c3e3f
...
@@ -2,12 +2,11 @@
...
@@ -2,12 +2,11 @@
--
source
include
/
not_embedded
.
inc
--
source
include
/
not_embedded
.
inc
--
disable_warnings
--
disable_warnings
DROP
TABLE
IF
EXISTS
t2
;
DROP
TABLE
IF
EXISTS
t
1
,
t
2
;
--
enable_warnings
--
enable_warnings
CREATE
TABLE
t1
(
CREATE
TABLE
t2
(
a
bigint
unsigned
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
a
bigint
unsigned
NOT
NULL
PRIMARY
KEY
,
b
int
unsigned
not
null
,
b
int
unsigned
not
null
,
c
int
unsigned
c
int
unsigned
)
engine
=
ndbcluster
;
)
engine
=
ndbcluster
;
...
@@ -20,17 +19,23 @@ let $1=500;
...
@@ -20,17 +19,23 @@ let $1=500;
disable_query_log
;
disable_query_log
;
while
(
$
1
)
while
(
$
1
)
{
{
eval
insert
into
t
2
values
(
$
1
*
10
,
$
1
+
9
,
5
*
$
1
),
(
$
1
*
10
+
1
,
$
1
+
10
,
7
),(
$
1
*
10
+
2
,
$
1
+
10
,
7
*
$
1
),
(
$
1
*
10
+
3
,
$
1
+
10
,
10
+
$
1
),
(
$
1
*
10
+
4
,
$
1
+
10
,
70
*
$
1
),
(
$
1
*
10
+
5
,
$
1
+
10
,
7
),
(
$
1
*
10
+
6
,
$
1
+
10
,
9
),
(
$
1
*
10
+
7
,
$
1
+
299
,
899
),
(
$
1
*
10
+
8
,
$
1
+
10
,
12
),
(
$
1
*
10
+
9
,
$
1
+
10
,
14
*
$
1
);
eval
insert
into
t
1
values
(
NULL
,
$
1
+
9
,
5
*
$
1
),
(
NULL
,
$
1
+
10
,
7
),(
NULL
,
$
1
+
10
,
7
*
$
1
),
(
NULL
,
$
1
+
10
,
10
+
$
1
),
(
NULL
,
$
1
+
10
,
70
*
$
1
),
(
NULL
,
$
1
+
10
,
7
),
(
NULL
,
$
1
+
10
,
9
),
(
NULL
,
$
1
+
299
,
899
),
(
NULL
,
$
1
+
10
,
12
),
(
NULL
,
$
1
+
10
,
14
*
$
1
);
dec
$
1
;
dec
$
1
;
}
}
enable_query_log
;
enable_query_log
;
select
count
(
*
)
from
t2
;
select
count
(
*
)
from
t1
;
select
*
from
t1
order
by
a
limit
2
;
truncate
table
t1
;
select
count
(
*
)
from
t1
;
truncate
table
t2
;
insert
into
t1
values
(
NULL
,
1
,
1
),(
NULL
,
2
,
2
)
;
select
count
(
*
)
from
t2
;
select
*
from
t1
order
by
a
;
drop
table
t
2
;
drop
table
t
1
;
# End of 4.1 tests
# End of 4.1 tests
ndb/include/ndbapi/NdbIndexScanOperation.hpp
View file @
049c3e3f
...
@@ -45,14 +45,15 @@ public:
...
@@ -45,14 +45,15 @@ public:
NdbResultSet
*
readTuples
(
LockMode
=
LM_Read
,
NdbResultSet
*
readTuples
(
LockMode
=
LM_Read
,
Uint32
batch
=
0
,
Uint32
batch
=
0
,
Uint32
parallel
=
0
,
Uint32
parallel
=
0
,
bool
order_by
=
false
);
bool
order_by
=
false
,
bool
keyinfo
=
false
);
inline
NdbResultSet
*
readTuples
(
int
parallell
){
inline
NdbResultSet
*
readTuples
(
int
parallell
){
return
readTuples
(
LM_Read
,
0
,
parallell
,
false
);
return
readTuples
(
LM_Read
,
0
,
parallell
);
}
}
inline
NdbResultSet
*
readTuplesExclusive
(
int
parallell
=
0
){
inline
NdbResultSet
*
readTuplesExclusive
(
int
parallell
=
0
){
return
readTuples
(
LM_Exclusive
,
0
,
parallell
,
false
);
return
readTuples
(
LM_Exclusive
,
0
,
parallell
);
}
}
/**
/**
...
...
ndb/include/ndbapi/NdbResultSet.hpp
View file @
049c3e3f
...
@@ -101,6 +101,27 @@ public:
...
@@ -101,6 +101,27 @@ public:
*/
*/
int
restart
(
bool
forceSend
=
false
);
int
restart
(
bool
forceSend
=
false
);
/**
* Lock current row by transfering scan operation to a locking transaction.
* Use this function
* when a scan has found a record that you want to lock.
* 1. Start a new transaction.
* 2. Call the function takeOverForUpdate using your new transaction
* as parameter, all the properties of the found record will be copied
* to the new transaction.
* 3. When you execute the new transaction, the lock held by the scan will
* be transferred to the new transaction(it's taken over).
*
* @note You must have started the scan with openScanExclusive
* or explictly have requested keyinfo to be able to lock
* the found tuple.
*
* @param lockingTrans the locking transaction connection.
* @return an NdbOperation or NULL.
*/
NdbOperation
*
lockTuple
();
NdbOperation
*
lockTuple
(
NdbConnection
*
lockingTrans
);
/**
/**
* Transfer scan operation to an updating transaction. Use this function
* Transfer scan operation to an updating transaction. Use this function
* when a scan has found a record that you want to update.
* when a scan has found a record that you want to update.
...
...
ndb/include/ndbapi/NdbScanOperation.hpp
View file @
049c3e3f
...
@@ -64,14 +64,16 @@ public:
...
@@ -64,14 +64,16 @@ public:
* Tuples are not stored in NdbResultSet until execute(NoCommit)
* Tuples are not stored in NdbResultSet until execute(NoCommit)
* has been executed and nextResult has been called.
* has been executed and nextResult has been called.
*
*
* @param keyinfo Return primary key, needed to be able to call lockTuple
* @param parallel Scan parallelism
* @param parallel Scan parallelism
* @param batch No of rows to fetch from each fragment at a time
* @param batch No of rows to fetch from each fragment at a time
* @param LockMode Scan lock handling
* @param LockMode Scan lock handling
* @returns NdbResultSet.
* @returns NdbResultSet.
* @note specifying 0 for batch and parall
a
ll means max performance
* @note specifying 0 for batch and parall
e
ll means max performance
*/
*/
NdbResultSet
*
readTuples
(
LockMode
=
LM_Read
,
NdbResultSet
*
readTuples
(
LockMode
=
LM_Read
,
Uint32
batch
=
0
,
Uint32
parallel
=
0
);
Uint32
batch
=
0
,
Uint32
parallel
=
0
,
bool
keyinfo
=
false
);
inline
NdbResultSet
*
readTuples
(
int
parallell
){
inline
NdbResultSet
*
readTuples
(
int
parallell
){
return
readTuples
(
LM_Read
,
0
,
parallell
);
return
readTuples
(
LM_Read
,
0
,
parallell
);
...
...
ndb/src/ndbapi/NdbResultSet.cpp
View file @
049c3e3f
...
@@ -72,6 +72,17 @@ void NdbResultSet::close(bool forceSend)
...
@@ -72,6 +72,17 @@ void NdbResultSet::close(bool forceSend)
m_operation
->
closeScan
(
forceSend
,
true
);
m_operation
->
closeScan
(
forceSend
,
true
);
}
}
NdbOperation
*
NdbResultSet
::
lockTuple
(){
return
lockTuple
(
m_operation
->
m_transConnection
);
}
NdbOperation
*
NdbResultSet
::
lockTuple
(
NdbConnection
*
takeOverTrans
){
return
m_operation
->
takeOverScanOp
(
NdbOperation
::
ReadRequest
,
takeOverTrans
);
}
NdbOperation
*
NdbOperation
*
NdbResultSet
::
updateTuple
(){
NdbResultSet
::
updateTuple
(){
return
updateTuple
(
m_operation
->
m_transConnection
);
return
updateTuple
(
m_operation
->
m_transConnection
);
...
...
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
049c3e3f
...
@@ -126,7 +126,8 @@ NdbScanOperation::init(const NdbTableImpl* tab, NdbConnection* myConnection)
...
@@ -126,7 +126,8 @@ NdbScanOperation::init(const NdbTableImpl* tab, NdbConnection* myConnection)
NdbResultSet
*
NdbScanOperation
::
readTuples
(
NdbScanOperation
::
LockMode
lm
,
NdbResultSet
*
NdbScanOperation
::
readTuples
(
NdbScanOperation
::
LockMode
lm
,
Uint32
batch
,
Uint32
batch
,
Uint32
parallel
)
Uint32
parallel
,
bool
keyinfo
)
{
{
m_ordered
=
0
;
m_ordered
=
0
;
...
@@ -170,7 +171,7 @@ NdbResultSet* NdbScanOperation::readTuples(NdbScanOperation::LockMode lm,
...
@@ -170,7 +171,7 @@ NdbResultSet* NdbScanOperation::readTuples(NdbScanOperation::LockMode lm,
return
0
;
return
0
;
}
}
m_keyInfo
=
lockExcl
?
1
:
0
;
m_keyInfo
=
(
keyinfo
||
lockExcl
)
?
1
:
0
;
bool
range
=
false
;
bool
range
=
false
;
if
(
m_accessTable
->
m_indexType
==
NdbDictionary
::
Index
::
OrderedIndex
||
if
(
m_accessTable
->
m_indexType
==
NdbDictionary
::
Index
::
OrderedIndex
||
...
@@ -956,18 +957,28 @@ NdbScanOperation::takeOverScanOp(OperationType opType, NdbConnection* pTrans){
...
@@ -956,18 +957,28 @@ NdbScanOperation::takeOverScanOp(OperationType opType, NdbConnection* pTrans){
if
(
newOp
==
NULL
){
if
(
newOp
==
NULL
){
return
NULL
;
return
NULL
;
}
}
if
(
!
m_keyInfo
)
{
// Cannot take over lock if no keyinfo was requested
setErrorCodeAbort
(
4604
);
return
NULL
;
}
pTrans
->
theSimpleState
=
0
;
pTrans
->
theSimpleState
=
0
;
const
Uint32
len
=
(
tRecAttr
->
attrSize
()
*
tRecAttr
->
arraySize
()
+
3
)
/
4
-
1
;
const
Uint32
len
=
(
tRecAttr
->
attrSize
()
*
tRecAttr
->
arraySize
()
+
3
)
/
4
-
1
;
newOp
->
theTupKeyLen
=
len
;
newOp
->
theTupKeyLen
=
len
;
newOp
->
theOperationType
=
opType
;
newOp
->
theOperationType
=
opType
;
if
(
opType
==
DeleteRequest
)
{
switch
(
opType
)
{
newOp
->
theStatus
=
GetValue
;
case
(
ReadRequest
):
}
else
{
newOp
->
theLockMode
=
theLockMode
;
newOp
->
theStatus
=
SetValue
;
// Fall through
case
(
DeleteRequest
):
newOp
->
theStatus
=
GetValue
;
break
;
default:
newOp
->
theStatus
=
SetValue
;
}
}
const
Uint32
*
src
=
(
Uint32
*
)
tRecAttr
->
aRef
();
const
Uint32
*
src
=
(
Uint32
*
)
tRecAttr
->
aRef
();
const
Uint32
tScanInfo
=
src
[
len
]
&
0x3FFFF
;
const
Uint32
tScanInfo
=
src
[
len
]
&
0x3FFFF
;
const
Uint32
tTakeOverNode
=
src
[
len
]
>>
20
;
const
Uint32
tTakeOverNode
=
src
[
len
]
>>
20
;
...
@@ -1241,8 +1252,9 @@ NdbResultSet*
...
@@ -1241,8 +1252,9 @@ NdbResultSet*
NdbIndexScanOperation
::
readTuples
(
LockMode
lm
,
NdbIndexScanOperation
::
readTuples
(
LockMode
lm
,
Uint32
batch
,
Uint32
batch
,
Uint32
parallel
,
Uint32
parallel
,
bool
order_by
){
bool
order_by
,
NdbResultSet
*
rs
=
NdbScanOperation
::
readTuples
(
lm
,
batch
,
0
);
bool
keyinfo
){
NdbResultSet
*
rs
=
NdbScanOperation
::
readTuples
(
lm
,
batch
,
0
,
keyinfo
);
if
(
rs
&&
order_by
){
if
(
rs
&&
order_by
){
m_ordered
=
1
;
m_ordered
=
1
;
Uint32
cnt
=
m_accessTable
->
getNoOfColumns
()
-
1
;
Uint32
cnt
=
m_accessTable
->
getNoOfColumns
()
-
1
;
...
...
ndb/src/ndbapi/ndberror.c
View file @
049c3e3f
...
@@ -281,7 +281,7 @@ ErrorBundle ErrorCodes[] = {
...
@@ -281,7 +281,7 @@ ErrorBundle ErrorCodes[] = {
{
4601
,
AE
,
"Transaction is not started"
},
{
4601
,
AE
,
"Transaction is not started"
},
{
4602
,
AE
,
"You must call getNdbOperation before executeScan"
},
{
4602
,
AE
,
"You must call getNdbOperation before executeScan"
},
{
4603
,
AE
,
"There can only be ONE operation in a scan transaction"
},
{
4603
,
AE
,
"There can only be ONE operation in a scan transaction"
},
{
4604
,
AE
,
"takeOverScanOp,
opType must be UpdateRequest or DeleteRequest
"
},
{
4604
,
AE
,
"takeOverScanOp,
to take over a scanned row one must explicitly request keyinfo in readTuples call
"
},
{
4605
,
AE
,
"You may only call openScanRead or openScanExclusive once for each operation"
},
{
4605
,
AE
,
"You may only call openScanRead or openScanExclusive once for each operation"
},
{
4607
,
AE
,
"There may only be one operation in a scan transaction"
},
{
4607
,
AE
,
"There may only be one operation in a scan transaction"
},
{
4608
,
AE
,
"You can not takeOverScan unless you have used openScanExclusive"
},
{
4608
,
AE
,
"You can not takeOverScan unless you have used openScanExclusive"
},
...
...
sql/ha_ndbcluster.cc
View file @
049c3e3f
/* Copyright (C) 2000-2003 MySQL AB
/* Copyright (C) 2000-2003 MySQL AB
This program is free software; you can redistribute it and/or modify
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
it under the terms of the GNU General Public License as published by
...
@@ -1043,12 +1043,23 @@ void ha_ndbcluster::release_metadata()
...
@@ -1043,12 +1043,23 @@ void ha_ndbcluster::release_metadata()
int
ha_ndbcluster
::
get_ndb_lock_type
(
enum
thr_lock_type
type
)
int
ha_ndbcluster
::
get_ndb_lock_type
(
enum
thr_lock_type
type
)
{
{
DBUG_ENTER
(
"ha_ndbcluster::get_ndb_lock_type"
);
if
(
type
>=
TL_WRITE_ALLOW_WRITE
)
if
(
type
>=
TL_WRITE_ALLOW_WRITE
)
return
NdbOperation
::
LM_Exclusive
;
{
else
if
(
uses_blob_value
(
m_retrieve_all_fields
))
DBUG_PRINT
(
"info"
,
(
"Using exclusive lock"
));
return
NdbOperation
::
LM_Read
;
DBUG_RETURN
(
NdbOperation
::
LM_Exclusive
);
}
else
if
(
type
==
TL_READ_WITH_SHARED_LOCKS
||
uses_blob_value
(
m_retrieve_all_fields
))
{
DBUG_PRINT
(
"info"
,
(
"Using read lock"
));
DBUG_RETURN
(
NdbOperation
::
LM_Read
);
}
else
else
return
NdbOperation
::
LM_CommittedRead
;
{
DBUG_PRINT
(
"info"
,
(
"Using committed read"
));
DBUG_RETURN
(
NdbOperation
::
LM_CommittedRead
);
}
}
}
static
const
ulong
index_type_flags
[]
=
static
const
ulong
index_type_flags
[]
=
...
@@ -1384,12 +1395,35 @@ inline int ha_ndbcluster::next_result(byte *buf)
...
@@ -1384,12 +1395,35 @@ inline int ha_ndbcluster::next_result(byte *buf)
if
(
!
cursor
)
if
(
!
cursor
)
DBUG_RETURN
(
HA_ERR_END_OF_FILE
);
DBUG_RETURN
(
HA_ERR_END_OF_FILE
);
if
(
m_lock_tuple
)
{
/*
Lock level m_lock.type either TL_WRITE_ALLOW_WRITE
(SELECT FOR UPDATE) or TL_READ_WITH_SHARED_LOCKS (SELECT
LOCK WITH SHARE MODE) and row was not explictly unlocked
with unlock_row() call
*/
NdbConnection
*
trans
=
m_active_trans
;
NdbOperation
*
op
;
// Lock row
DBUG_PRINT
(
"info"
,
(
"Keeping lock on scanned row"
));
if
(
!
(
op
=
m_active_cursor
->
lockTuple
()))
{
m_lock_tuple
=
false
;
ERR_RETURN
(
trans
->
getNdbError
());
}
m_ops_pending
++
;
}
m_lock_tuple
=
false
;
/*
/*
If this an update or delete, call nextResult with false
If this an update or delete, call nextResult with false
to process any records already cached in NdbApi
to process any records already cached in NdbApi
*/
*/
bool
contact_ndb
=
m_lock
.
type
<
TL_WRITE_ALLOW_WRITE
;
bool
contact_ndb
=
m_lock
.
type
<
TL_WRITE_ALLOW_WRITE
&&
m_lock
.
type
!=
TL_READ_WITH_SHARED_LOCKS
;
do
{
do
{
DBUG_PRINT
(
"info"
,
(
"Call nextResult, contact_ndb: %d"
,
contact_ndb
));
DBUG_PRINT
(
"info"
,
(
"Call nextResult, contact_ndb: %d"
,
contact_ndb
));
/*
/*
...
@@ -1407,9 +1441,16 @@ inline int ha_ndbcluster::next_result(byte *buf)
...
@@ -1407,9 +1441,16 @@ inline int ha_ndbcluster::next_result(byte *buf)
{
{
// One more record found
// One more record found
DBUG_PRINT
(
"info"
,
(
"One more record found"
));
DBUG_PRINT
(
"info"
,
(
"One more record found"
));
unpack_record
(
buf
);
unpack_record
(
buf
);
table
->
status
=
0
;
table
->
status
=
0
;
/*
Explicitly lock tuple if "select for update" or
"select lock in share mode"
*/
m_lock_tuple
=
(
m_lock
.
type
==
TL_WRITE_ALLOW_WRITE
||
m_lock
.
type
==
TL_READ_WITH_SHARED_LOCKS
);
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
else
if
(
check
==
1
||
check
==
2
)
else
if
(
check
==
1
||
check
==
2
)
...
@@ -1444,7 +1485,6 @@ inline int ha_ndbcluster::next_result(byte *buf)
...
@@ -1444,7 +1485,6 @@ inline int ha_ndbcluster::next_result(byte *buf)
contact_ndb
=
(
check
==
2
);
contact_ndb
=
(
check
==
2
);
}
}
}
while
(
check
==
2
);
}
while
(
check
==
2
);
table
->
status
=
STATUS_NOT_FOUND
;
table
->
status
=
STATUS_NOT_FOUND
;
if
(
check
==
-
1
)
if
(
check
==
-
1
)
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
...
@@ -1679,10 +1719,11 @@ int ha_ndbcluster::ordered_index_scan(const key_range *start_key,
...
@@ -1679,10 +1719,11 @@ int ha_ndbcluster::ordered_index_scan(const key_range *start_key,
restart
=
false
;
restart
=
false
;
NdbOperation
::
LockMode
lm
=
NdbOperation
::
LockMode
lm
=
(
NdbOperation
::
LockMode
)
get_ndb_lock_type
(
m_lock
.
type
);
(
NdbOperation
::
LockMode
)
get_ndb_lock_type
(
m_lock
.
type
);
bool
need_pk
=
(
lm
==
NdbOperation
::
LM_Read
);
if
(
!
(
op
=
trans
->
getNdbIndexScanOperation
((
NDBINDEX
*
)
if
(
!
(
op
=
trans
->
getNdbIndexScanOperation
((
NDBINDEX
*
)
m_index
[
active_index
].
index
,
m_index
[
active_index
].
index
,
(
const
NDBTAB
*
)
m_table
))
||
(
const
NDBTAB
*
)
m_table
))
||
!
(
cursor
=
op
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
)))
!
(
cursor
=
op
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
,
need_pk
)))
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_active_cursor
=
cursor
;
m_active_cursor
=
cursor
;
}
else
{
}
else
{
...
@@ -1817,8 +1858,9 @@ int ha_ndbcluster::full_table_scan(byte *buf)
...
@@ -1817,8 +1858,9 @@ int ha_ndbcluster::full_table_scan(byte *buf)
NdbOperation
::
LockMode
lm
=
NdbOperation
::
LockMode
lm
=
(
NdbOperation
::
LockMode
)
get_ndb_lock_type
(
m_lock
.
type
);
(
NdbOperation
::
LockMode
)
get_ndb_lock_type
(
m_lock
.
type
);
bool
need_pk
=
(
lm
==
NdbOperation
::
LM_Read
);
if
(
!
(
op
=
trans
->
getNdbScanOperation
((
const
NDBTAB
*
)
m_table
))
||
if
(
!
(
op
=
trans
->
getNdbScanOperation
((
const
NDBTAB
*
)
m_table
))
||
!
(
cursor
=
op
->
readTuples
(
lm
,
0
,
parallelism
)))
!
(
cursor
=
op
->
readTuples
(
lm
,
0
,
parallelism
,
need_pk
)))
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_active_cursor
=
cursor
;
m_active_cursor
=
cursor
;
DBUG_RETURN
(
define_read_attrs
(
buf
,
op
));
DBUG_RETURN
(
define_read_attrs
(
buf
,
op
));
...
@@ -2082,6 +2124,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
...
@@ -2082,6 +2124,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
DBUG_PRINT
(
"info"
,
(
"Calling updateTuple on cursor"
));
DBUG_PRINT
(
"info"
,
(
"Calling updateTuple on cursor"
));
if
(
!
(
op
=
cursor
->
updateTuple
()))
if
(
!
(
op
=
cursor
->
updateTuple
()))
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_lock_tuple
=
false
;
m_ops_pending
++
;
m_ops_pending
++
;
if
(
uses_blob_value
(
FALSE
))
if
(
uses_blob_value
(
FALSE
))
m_blobs_pending
=
TRUE
;
m_blobs_pending
=
TRUE
;
...
@@ -2157,6 +2200,7 @@ int ha_ndbcluster::delete_row(const byte *record)
...
@@ -2157,6 +2200,7 @@ int ha_ndbcluster::delete_row(const byte *record)
DBUG_PRINT
(
"info"
,
(
"Calling deleteTuple on cursor"
));
DBUG_PRINT
(
"info"
,
(
"Calling deleteTuple on cursor"
));
if
(
cursor
->
deleteTuple
()
!=
0
)
if
(
cursor
->
deleteTuple
()
!=
0
)
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_lock_tuple
=
false
;
m_ops_pending
++
;
m_ops_pending
++
;
no_uncommitted_rows_update
(
-
1
);
no_uncommitted_rows_update
(
-
1
);
...
@@ -2439,6 +2483,12 @@ int ha_ndbcluster::index_init(uint index)
...
@@ -2439,6 +2483,12 @@ int ha_ndbcluster::index_init(uint index)
{
{
DBUG_ENTER
(
"index_init"
);
DBUG_ENTER
(
"index_init"
);
DBUG_PRINT
(
"enter"
,
(
"index: %u"
,
index
));
DBUG_PRINT
(
"enter"
,
(
"index: %u"
,
index
));
/*
Locks are are explicitly released in scan
unless m_lock.type == TL_READ_HIGH_PRIORITY
and no sub-sequent call to unlock_row()
*/
m_lock_tuple
=
false
;
DBUG_RETURN
(
handler
::
index_init
(
index
));
DBUG_RETURN
(
handler
::
index_init
(
index
));
}
}
...
@@ -2683,7 +2733,7 @@ int ha_ndbcluster::close_scan()
...
@@ -2683,7 +2733,7 @@ int ha_ndbcluster::close_scan()
if
(
!
cursor
)
if
(
!
cursor
)
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
m_lock_tuple
=
false
;
if
(
m_ops_pending
)
if
(
m_ops_pending
)
{
{
/*
/*
...
@@ -3375,6 +3425,22 @@ int ha_ndbcluster::external_lock(THD *thd, int lock_type)
...
@@ -3375,6 +3425,22 @@ int ha_ndbcluster::external_lock(THD *thd, int lock_type)
DBUG_RETURN
(
error
);
DBUG_RETURN
(
error
);
}
}
/*
Unlock the last row read in an open scan.
Rows are unlocked by default in ndb, but
for SELECT FOR UPDATE and SELECT LOCK WIT SHARE MODE
locks are kept if unlock_row() is not called.
*/
void
ha_ndbcluster
::
unlock_row
()
{
DBUG_ENTER
(
"unlock_row"
);
DBUG_PRINT
(
"info"
,
(
"Unlocking row"
));
m_lock_tuple
=
false
;
DBUG_VOID_RETURN
;
}
/*
/*
Start a transaction for running a statement if one is not
Start a transaction for running a statement if one is not
already running in a transaction. This will be the case in
already running in a transaction. This will be the case in
...
@@ -3767,6 +3833,12 @@ int ha_ndbcluster::create(const char *name,
...
@@ -3767,6 +3833,12 @@ int ha_ndbcluster::create(const char *name,
set_dbname
(
name2
);
set_dbname
(
name2
);
set_tabname
(
name2
);
set_tabname
(
name2
);
if
(
current_thd
->
lex
->
sql_command
==
SQLCOM_TRUNCATE
)
{
DBUG_PRINT
(
"info"
,
(
"Dropping and re-creating table for TRUNCATE"
));
if
((
my_errno
=
delete_table
(
name
)))
DBUG_RETURN
(
my_errno
);
}
if
(
create_from_engine
)
if
(
create_from_engine
)
{
{
/*
/*
...
...
sql/ha_ndbcluster.h
View file @
049c3e3f
...
@@ -120,6 +120,7 @@ class ha_ndbcluster: public handler
...
@@ -120,6 +120,7 @@ class ha_ndbcluster: public handler
int
extra_opt
(
enum
ha_extra_function
operation
,
ulong
cache_size
);
int
extra_opt
(
enum
ha_extra_function
operation
,
ulong
cache_size
);
int
reset
();
int
reset
();
int
external_lock
(
THD
*
thd
,
int
lock_type
);
int
external_lock
(
THD
*
thd
,
int
lock_type
);
void
unlock_row
();
int
start_stmt
(
THD
*
thd
);
int
start_stmt
(
THD
*
thd
);
const
char
*
table_type
()
const
;
const
char
*
table_type
()
const
;
const
char
**
bas_ext
()
const
;
const
char
**
bas_ext
()
const
;
...
@@ -223,6 +224,7 @@ class ha_ndbcluster: public handler
...
@@ -223,6 +224,7 @@ class ha_ndbcluster: public handler
char
m_tabname
[
FN_HEADLEN
];
char
m_tabname
[
FN_HEADLEN
];
ulong
m_table_flags
;
ulong
m_table_flags
;
THR_LOCK_DATA
m_lock
;
THR_LOCK_DATA
m_lock
;
bool
m_lock_tuple
;
NDB_SHARE
*
m_share
;
NDB_SHARE
*
m_share
;
NDB_INDEX_DATA
m_index
[
MAX_KEY
];
NDB_INDEX_DATA
m_index
[
MAX_KEY
];
// NdbRecAttr has no reference to blob
// NdbRecAttr has no reference to blob
...
...
sql/handler.h
View file @
049c3e3f
...
@@ -533,8 +533,7 @@ extern TYPELIB myisam_stats_method_typelib;
...
@@ -533,8 +533,7 @@ extern TYPELIB myisam_stats_method_typelib;
#define ha_supports_generate(T) (T != DB_TYPE_INNODB && \
#define ha_supports_generate(T) (T != DB_TYPE_INNODB && \
T != DB_TYPE_BERKELEY_DB && \
T != DB_TYPE_BERKELEY_DB && \
T != DB_TYPE_ARCHIVE_DB && \
T != DB_TYPE_ARCHIVE_DB && \
T != DB_TYPE_FEDERATED_DB && \
T != DB_TYPE_FEDERATED_DB)
T != DB_TYPE_NDBCLUSTER)
bool
ha_caching_allowed
(
THD
*
thd
,
char
*
table_key
,
bool
ha_caching_allowed
(
THD
*
thd
,
char
*
table_key
,
uint
key_length
,
uint8
cache_type
);
uint
key_length
,
uint8
cache_type
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment