Merge branch 'QA_3_3'

This commit is contained in:
Dieter Adriaenssens
2010-09-11 11:03:15 +02:00

View File

@@ -739,7 +739,7 @@ function PMA_detectType($last_cumulative_type, &$cell) {
if ($cell == (string)(float)$cell && strpos($cell, ".") !== false && substr_count($cell, ".") == 1) {
return DECIMAL;
} else {
if ($cell > 2147483647) {
if (abs($cell) > 2147483647) {
return BIGINT;
} else {
return INT;