mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge remote-tracking branch 'origin/10.2' into bb-10.2-ext
Conflicts: sql/table.cc
This commit is contained in:
@ -3021,7 +3021,8 @@ exit:
|
||||
(entry= (acl_entry*) malloc(sizeof(acl_entry)+key_length)))
|
||||
{
|
||||
entry->access=(db_access & host_access);
|
||||
entry->length=key_length;
|
||||
DBUG_ASSERT(key_length < 0xffff);
|
||||
entry->length=(uint16)key_length;
|
||||
memcpy((uchar*) entry->key,key,key_length);
|
||||
acl_cache->add(entry);
|
||||
}
|
||||
|
Reference in New Issue
Block a user