diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-04-26 10:37:05 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-26 10:37:05 +0400 |
commit | 852f2305b972d6b7e0160d1c6454807d346048b7 (patch) | |
tree | 654a26f75a66f0d281e11e8c3f5de15ff69cf08b /sql/sql_table.cc | |
parent | 61a771df00c8d4266cc8f76c3e3e9d1565c7e2fa (diff) | |
download | mariadb-git-852f2305b972d6b7e0160d1c6454807d346048b7.tar.gz |
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.
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |