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
e3a975c5
Commit
e3a975c5
authored
Jun 12, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for Bug #18184 SELECT ... FOR UPDATE does not work..: Adapted to 5.0 code changes
parent
b2d3ac1b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
117 additions
and
15 deletions
+117
-15
ndb/include/ndbapi/NdbIndexScanOperation.hpp
ndb/include/ndbapi/NdbIndexScanOperation.hpp
+5
-2
ndb/include/ndbapi/NdbScanOperation.hpp
ndb/include/ndbapi/NdbScanOperation.hpp
+30
-2
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+1
-1
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+81
-10
No files found.
ndb/include/ndbapi/NdbIndexScanOperation.hpp
View file @
e3a975c5
...
@@ -61,11 +61,14 @@ public:
...
@@ -61,11 +61,14 @@ public:
Uint32
parallel
,
Uint32
parallel
,
bool
order_by
,
bool
order_by
,
bool
order_desc
=
false
,
bool
order_desc
=
false
,
bool
read_range_no
=
false
)
{
bool
read_range_no
=
false
,
bool
keyinfo
=
false
)
{
Uint32
scan_flags
=
Uint32
scan_flags
=
(
SF_OrderBy
&
-
(
Int32
)
order_by
)
|
(
SF_OrderBy
&
-
(
Int32
)
order_by
)
|
(
SF_Descending
&
-
(
Int32
)
order_desc
)
|
(
SF_Descending
&
-
(
Int32
)
order_desc
)
|
(
SF_ReadRangeNo
&
-
(
Int32
)
read_range_no
);
(
SF_ReadRangeNo
&
-
(
Int32
)
read_range_no
)
|
(
SF_KeyInfo
&
-
(
Int32
)
keyinfo
);
return
readTuples
(
lock_mode
,
scan_flags
,
parallel
);
return
readTuples
(
lock_mode
,
scan_flags
,
parallel
);
}
}
#endif
#endif
...
...
ndb/include/ndbapi/NdbScanOperation.hpp
View file @
e3a975c5
...
@@ -44,7 +44,8 @@ public:
...
@@ -44,7 +44,8 @@ public:
SF_TupScan
=
(
1
<<
16
),
// scan TUP - only LM_CommittedRead
SF_TupScan
=
(
1
<<
16
),
// scan TUP - only LM_CommittedRead
SF_OrderBy
=
(
1
<<
24
),
// index scan in order
SF_OrderBy
=
(
1
<<
24
),
// index scan in order
SF_Descending
=
(
2
<<
24
),
// index scan in descending order
SF_Descending
=
(
2
<<
24
),
// index scan in descending order
SF_ReadRangeNo
=
(
4
<<
24
)
// enable @ref get_range_no
SF_ReadRangeNo
=
(
4
<<
24
),
// enable @ref get_range_no
SF_KeyInfo
=
1
// request KeyInfo to be sent back
};
};
/**
/**
...
@@ -68,7 +69,7 @@ public:
...
@@ -68,7 +69,7 @@ public:
*/
*/
#ifdef ndb_readtuples_impossible_overload
#ifdef ndb_readtuples_impossible_overload
int
readTuples
(
LockMode
lock_mode
=
LM_Read
,
int
readTuples
(
LockMode
lock_mode
=
LM_Read
,
Uint32
batch
=
0
,
Uint32
parallel
=
0
);
Uint32
batch
=
0
,
Uint32
parallel
=
0
,
bool
keyinfo
=
false
);
#endif
#endif
inline
int
readTuples
(
int
parallell
){
inline
int
readTuples
(
int
parallell
){
...
@@ -140,6 +141,20 @@ public:
...
@@ -140,6 +141,20 @@ public:
*/
*/
void
close
(
bool
forceSend
=
false
,
bool
releaseOp
=
false
);
void
close
(
bool
forceSend
=
false
,
bool
releaseOp
=
false
);
/**
* Lock current tuple
*
* @return an NdbOperation or NULL.
*/
NdbOperation
*
lockCurrentTuple
();
/**
* Lock current tuple
*
* @param lockTrans Transaction that should perform the lock
*
* @return an NdbOperation or NULL.
*/
NdbOperation
*
lockCurrentTuple
(
NdbTransaction
*
lockTrans
);
/**
/**
* Update current tuple
* Update current tuple
*
*
...
@@ -248,6 +263,19 @@ protected:
...
@@ -248,6 +263,19 @@ protected:
NdbRecAttr
*
m_curr_row
;
// Pointer to last returned row
NdbRecAttr
*
m_curr_row
;
// Pointer to last returned row
};
};
inline
NdbOperation
*
NdbScanOperation
::
lockCurrentTuple
(){
return
lockCurrentTuple
(
m_transConnection
);
}
inline
NdbOperation
*
NdbScanOperation
::
lockCurrentTuple
(
NdbTransaction
*
takeOverTrans
){
return
takeOverScanOp
(
NdbOperation
::
ReadRequest
,
takeOverTrans
);
}
inline
inline
NdbOperation
*
NdbOperation
*
NdbScanOperation
::
updateCurrentTuple
(){
NdbScanOperation
::
updateCurrentTuple
(){
...
...
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
e3a975c5
...
@@ -160,7 +160,7 @@ NdbScanOperation::readTuples(NdbScanOperation::LockMode lm,
...
@@ -160,7 +160,7 @@ NdbScanOperation::readTuples(NdbScanOperation::LockMode lm,
return
-
1
;
return
-
1
;
}
}
m_keyInfo
=
(
keyinfo
||
lockExcl
)
?
1
:
0
;
m_keyInfo
=
(
(
scan_flags
&
SF_KeyInfo
)
||
lockExcl
)
?
1
:
0
;
bool
rangeScan
=
false
;
bool
rangeScan
=
false
;
if
(
m_accessTable
->
m_indexType
==
NdbDictionary
::
Index
::
OrderedIndex
)
if
(
m_accessTable
->
m_indexType
==
NdbDictionary
::
Index
::
OrderedIndex
)
...
...
sql/ha_ndbcluster.cc
View file @
e3a975c5
...
@@ -1174,12 +1174,23 @@ void ha_ndbcluster::release_metadata()
...
@@ -1174,12 +1174,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
[]
=
...
@@ -1679,7 +1690,30 @@ inline int ha_ndbcluster::fetch_next(NdbScanOperation* cursor)
...
@@ -1679,7 +1690,30 @@ inline int ha_ndbcluster::fetch_next(NdbScanOperation* cursor)
int
check
;
int
check
;
NdbTransaction
*
trans
=
m_active_trans
;
NdbTransaction
*
trans
=
m_active_trans
;
bool
contact_ndb
=
m_lock
.
type
<
TL_WRITE_ALLOW_WRITE
;
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
->
lockCurrentTuple
()))
{
m_lock_tuple
=
false
;
ERR_RETURN
(
trans
->
getNdbError
());
}
m_ops_pending
++
;
}
m_lock_tuple
=
false
;
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
));
/*
/*
...
@@ -1695,6 +1729,13 @@ inline int ha_ndbcluster::fetch_next(NdbScanOperation* cursor)
...
@@ -1695,6 +1729,13 @@ inline int ha_ndbcluster::fetch_next(NdbScanOperation* cursor)
if
((
check
=
cursor
->
nextResult
(
contact_ndb
,
m_force_send
))
==
0
)
if
((
check
=
cursor
->
nextResult
(
contact_ndb
,
m_force_send
))
==
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
)
...
@@ -1983,10 +2024,11 @@ int ha_ndbcluster::ordered_index_scan(const key_range *start_key,
...
@@ -1983,10 +2024,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
))
||
op
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
,
descending
))
op
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
,
descending
,
need_pk
))
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_active_cursor
=
op
;
m_active_cursor
=
op
;
}
else
{
}
else
{
...
@@ -2036,8 +2078,11 @@ int ha_ndbcluster::full_table_scan(byte *buf)
...
@@ -2036,8 +2078,11 @@ 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
))
||
op
->
readTuples
(
lm
,
0
,
parallelism
))
op
->
readTuples
(
lm
,
(
need_pk
)
?
NdbScanOperation
::
SF_KeyInfo
:
0
,
parallelism
))
ERR_RETURN
(
trans
->
getNdbError
());
ERR_RETURN
(
trans
->
getNdbError
());
m_active_cursor
=
op
;
m_active_cursor
=
op
;
if
(
generate_scan_filter
(
m_cond_stack
,
op
))
if
(
generate_scan_filter
(
m_cond_stack
,
op
))
...
@@ -2327,6 +2372,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
...
@@ -2327,6 +2372,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
->
updateCurrentTuple
()))
if
(
!
(
op
=
cursor
->
updateCurrentTuple
()))
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
;
...
@@ -2406,6 +2452,7 @@ int ha_ndbcluster::delete_row(const byte *record)
...
@@ -2406,6 +2452,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
->
deleteCurrentTuple
()
!=
0
)
if
(
cursor
->
deleteCurrentTuple
()
!=
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
);
...
@@ -2531,7 +2578,7 @@ void ha_ndbcluster::unpack_record(byte* buf)
...
@@ -2531,7 +2578,7 @@ void ha_ndbcluster::unpack_record(byte* buf)
DBUG_PRINT
(
"hidden"
,
(
"%d: %s
\"
%llu
\"
"
,
hidden_no
,
DBUG_PRINT
(
"hidden"
,
(
"%d: %s
\"
%llu
\"
"
,
hidden_no
,
hidden_col
->
getName
(),
rec
->
u_64_value
()));
hidden_col
->
getName
(),
rec
->
u_64_value
()));
}
}
//
print_results();
print_results
();
#endif
#endif
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
}
...
@@ -2605,6 +2652,12 @@ int ha_ndbcluster::index_init(uint index)
...
@@ -2605,6 +2652,12 @@ int ha_ndbcluster::index_init(uint index)
{
{
DBUG_ENTER
(
"ha_ndbcluster::index_init"
);
DBUG_ENTER
(
"ha_ndbcluster::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
));
}
}
...
@@ -3613,6 +3666,22 @@ int ha_ndbcluster::external_lock(THD *thd, int lock_type)
...
@@ -3613,6 +3666,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
...
@@ -5897,6 +5966,7 @@ ha_ndbcluster::read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
...
@@ -5897,6 +5966,7 @@ ha_ndbcluster::read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
byte
*
end_of_buffer
=
(
byte
*
)
buffer
->
buffer_end
;
byte
*
end_of_buffer
=
(
byte
*
)
buffer
->
buffer_end
;
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
);
const
NDBTAB
*
tab
=
(
const
NDBTAB
*
)
m_table
;
const
NDBTAB
*
tab
=
(
const
NDBTAB
*
)
m_table
;
const
NDBINDEX
*
unique_idx
=
(
NDBINDEX
*
)
m_index
[
active_index
].
unique_index
;
const
NDBINDEX
*
unique_idx
=
(
NDBINDEX
*
)
m_index
[
active_index
].
unique_index
;
const
NDBINDEX
*
idx
=
(
NDBINDEX
*
)
m_index
[
active_index
].
index
;
const
NDBINDEX
*
idx
=
(
NDBINDEX
*
)
m_index
[
active_index
].
index
;
...
@@ -5963,7 +6033,8 @@ ha_ndbcluster::read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
...
@@ -5963,7 +6033,8 @@ ha_ndbcluster::read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
end_of_buffer
-=
reclength
;
end_of_buffer
-=
reclength
;
}
}
else
if
((
scanOp
=
m_active_trans
->
getNdbIndexScanOperation
(
idx
,
tab
))
else
if
((
scanOp
=
m_active_trans
->
getNdbIndexScanOperation
(
idx
,
tab
))
&&!
scanOp
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
,
FALSE
,
TRUE
)
&&!
scanOp
->
readTuples
(
lm
,
0
,
parallelism
,
sorted
,
FALSE
,
TRUE
,
need_pk
)
&&!
generate_scan_filter
(
m_cond_stack
,
scanOp
)
&&!
generate_scan_filter
(
m_cond_stack
,
scanOp
)
&&!
define_read_attrs
(
end_of_buffer
-
reclength
,
scanOp
))
&&!
define_read_attrs
(
end_of_buffer
-
reclength
,
scanOp
))
{
{
...
...
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