mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.0 into 10.1
This commit is contained in:
@ -25230,6 +25230,12 @@ void st_select_lex::print(THD *thd, String *str, enum_query_type query_type)
|
||||
// limit
|
||||
print_limit(thd, str, query_type);
|
||||
|
||||
// lock type
|
||||
if (lock_type == TL_READ_WITH_SHARED_LOCKS)
|
||||
str->append(" lock in share mode");
|
||||
else if (lock_type == TL_WRITE)
|
||||
str->append(" for update");
|
||||
|
||||
// PROCEDURE unsupported here
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user