From 852f2305b972d6b7e0160d1c6454807d346048b7 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Wed, 26 Apr 2017 10:37:05 +0400 Subject: [PATCH] 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. --- sql/sql_table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 5fed57fbb0d..76755a028ed 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -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;