summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mysql-test/t/analyse.test9
-rw-r--r--sql/sql_analyse.cc15
2 files changed, 19 insertions, 5 deletions
diff --git a/mysql-test/t/analyse.test b/mysql-test/t/analyse.test
index 2003feee163..101101fdda4 100644
--- a/mysql-test/t/analyse.test
+++ b/mysql-test/t/analyse.test
@@ -48,6 +48,15 @@ insert into t1 values ('abc'),('abc\'def\\hij\"klm\0opq'),('\''),('\"'),('\\'),(
select * from t1 procedure analyse();
drop table t1;
+#
+# Bug#10716 - Procedure Analyse results in wrong values for optimal field type
+#
+
+create table t1 (d double);
+insert into t1 values (100000);
+select * from t1 procedure analyse (1,1);
+drop table t1;
+
# End of 4.1 tests
#decimal-related test
diff --git a/sql/sql_analyse.cc b/sql/sql_analyse.cc
index 6706cee8e9d..86a94cdf997 100644
--- a/sql/sql_analyse.cc
+++ b/sql/sql_analyse.cc
@@ -880,18 +880,23 @@ void field_real::get_opt_type(String *answer,
if (!max_notzero_dec_len)
{
if (min_arg >= -128 && max_arg <= (min_arg >= 0 ? 255 : 127))
- sprintf(buff, "TINYINT(%d)", (int) max_length - (item->decimals + 1));
+ sprintf(buff, "TINYINT(%d)", (int) max_length -
+ ((item->decimals == NOT_FIXED_DEC) ? 0 : (item->decimals + 1)));
else if (min_arg >= INT_MIN16 && max_arg <= (min_arg >= 0 ?
UINT_MAX16 : INT_MAX16))
- sprintf(buff, "SMALLINT(%d)", (int) max_length - (item->decimals + 1));
+ sprintf(buff, "SMALLINT(%d)", (int) max_length -
+ ((item->decimals == NOT_FIXED_DEC) ? 0 : (item->decimals + 1)));
else if (min_arg >= INT_MIN24 && max_arg <= (min_arg >= 0 ?
UINT_MAX24 : INT_MAX24))
- sprintf(buff, "MEDIUMINT(%d)", (int) max_length - (item->decimals + 1));
+ sprintf(buff, "MEDIUMINT(%d)", (int) max_length -
+ ((item->decimals == NOT_FIXED_DEC) ? 0 : (item->decimals + 1)));
else if (min_arg >= INT_MIN32 && max_arg <= (min_arg >= 0 ?
UINT_MAX32 : INT_MAX32))
- sprintf(buff, "INT(%d)", (int) max_length - (item->decimals + 1));
+ sprintf(buff, "INT(%d)", (int) max_length -
+ ((item->decimals == NOT_FIXED_DEC) ? 0 : (item->decimals + 1)));
else
- sprintf(buff, "BIGINT(%d)", (int) max_length - (item->decimals + 1));
+ sprintf(buff, "BIGINT(%d)", (int) max_length -
+ ((item->decimals == NOT_FIXED_DEC) ? 0 : (item->decimals + 1)));
answer->append(buff, (uint) strlen(buff));
if (min_arg >= 0)
answer->append(" UNSIGNED");