Commit afa111c2 authored by unknown's avatar unknown

ha_innodb.cc:

  Add a big fat warning for future programmers that MySQL may call ::store_lock() also with lock 'type' TL_IGNORE; my ignorance of this caused bug 9670


sql/ha_innodb.cc:
  Add a big fat warning for future programmers that MySQL may call ::store_lock() also with lock 'type' TL_IGNORE; my ignorance of this caused bug 9670
parent ef78d3ce
...@@ -6128,10 +6128,15 @@ ha_innobase::store_lock( ...@@ -6128,10 +6128,15 @@ ha_innobase::store_lock(
of current handle is stored of current handle is stored
next to this array */ next to this array */
enum thr_lock_type lock_type) /* in: lock type to store in enum thr_lock_type lock_type) /* in: lock type to store in
'lock' */ 'lock'; this may also be
TL_IGNORE */
{ {
row_prebuilt_t* prebuilt = (row_prebuilt_t*) innobase_prebuilt; row_prebuilt_t* prebuilt = (row_prebuilt_t*) innobase_prebuilt;
/* NOTE: MySQL can call this function with lock 'type' TL_IGNORE!
Be careful to ignore TL_IGNORE if we are going to do something with
only 'real' locks! */
if ((lock_type == TL_READ && thd->in_lock_tables) || if ((lock_type == TL_READ && thd->in_lock_tables) ||
(lock_type == TL_READ_HIGH_PRIORITY && thd->in_lock_tables) || (lock_type == TL_READ_HIGH_PRIORITY && thd->in_lock_tables) ||
lock_type == TL_READ_WITH_SHARED_LOCKS || lock_type == TL_READ_WITH_SHARED_LOCKS ||
...@@ -6180,10 +6185,6 @@ ha_innobase::store_lock( ...@@ -6180,10 +6185,6 @@ ha_innobase::store_lock(
} else if (lock_type != TL_IGNORE) { } else if (lock_type != TL_IGNORE) {
/* In ha_berkeley.cc there is a comment that MySQL
may in exceptional cases call this with TL_IGNORE also
when it is NOT going to release the lock. */
/* We set possible LOCK_X value in external_lock, not yet /* We set possible LOCK_X value in external_lock, not yet
here even if this would be SELECT ... FOR UPDATE */ here even if this would be SELECT ... FOR UPDATE */
...@@ -6214,7 +6215,7 @@ ha_innobase::store_lock( ...@@ -6214,7 +6215,7 @@ ha_innobase::store_lock(
lock_type = TL_READ; lock_type = TL_READ;
} }
lock.type=lock_type; lock.type = lock_type;
} }
*to++= &lock; *to++= &lock;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment