1
0
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:
Alexander Barkov
2017-04-26 10:37:05 +04:00
parent 61a771df00
commit 852f2305b9

View File

@ -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;