mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fixing a typo: UINT32_MAX -> UINT_MAX32 (introduced by the patch for MDEV-9217)
Note, some platforms have definitions for UINT32_MAX, so compiled without problems on FC.
This commit is contained in:
@ -7368,7 +7368,7 @@ blob_length_by_type(enum_field_types type)
|
||||
case MYSQL_TYPE_MEDIUM_BLOB:
|
||||
return 16777215;
|
||||
case MYSQL_TYPE_LONG_BLOB:
|
||||
return (uint) UINT32_MAX;
|
||||
return (uint) UINT_MAX32;
|
||||
default:
|
||||
DBUG_ASSERT(0); // we should never go here
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user