Commit 12acf650 authored by Chris Graham's avatar Chris Graham
Browse files

Fixed MANTIS-4400 (Optimise possible MySQL perf issue in casting)

parent 60de1b6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -399,7 +399,7 @@ class Database_super_mysql
    {
        switch ($type) {
            case 'CHAR':
                $_type = $type . '(65535)';
                $_type = $type . '(20)';
                break;

            case 'INT':