diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-08-03 18:47:50 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-08-03 18:47:50 +0300 |
commit | 076c375ab5342979518585d17c731bc3ba874f15 (patch) | |
tree | abce2fb3760c5b84e001445b1d65f25d0d5f3e29 | |
parent | 43b1710c51b685bc52df43622529d1dcfb86bc1e (diff) | |
download | mariadb-git-076c375ab5342979518585d17c731bc3ba874f15.tar.gz |
ha_innodb.cc:
Fix compilation error in previous commit
sql/ha_innodb.cc:
Fix compilation error in previous commit
-rw-r--r-- | sql/ha_innodb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index 31c26f774a6..bcd07198f5c 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -4928,7 +4928,7 @@ ha_innobase::store_lock( (lock_type == TL_READ_HIGH_PRIORITY && thd->in_lock_tables) || lock_type == TL_READ_WITH_SHARED_LOCKS || lock_type == TL_READ_NO_INSERT || - (thd->lex->sql_command != SQLCOM_SELECT + (thd->lex.sql_command != SQLCOM_SELECT && lock_type != TL_IGNORE)) { /* The OR cases above are in this order: |