1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

fixed compiler warning

This commit is contained in:
Sergey Glukhov
2010-03-29 18:42:49 +05:00
parent d4d5df0a3e
commit 6eca53f1d3

View File

@@ -695,7 +695,7 @@ public:
void fix_length_and_dec()
{
ulonglong max_result_length= (ulonglong) args[0]->max_length * 2 + 2;
max_length= min(max_result_length, MAX_BLOB_WIDTH);
max_length= (uint32) min(max_result_length, MAX_BLOB_WIDTH);
collation.set(args[0]->collation);
}
};