Commit 852f2305 authored by Alexander Barkov's avatar Alexander Barkov

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.
parent 61a771df
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment