diff options
author | unknown <bell@sanja.is.com.ua> | 2005-11-15 18:14:53 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-11-15 18:14:53 +0200 |
commit | 69fae29c589e92233cf63ae32bffb9c6023d3780 (patch) | |
tree | 538f3499cc6345d63ebcd819cd4b7b02d842a87f /mysql-test/r/analyze.result | |
parent | dc44851352f68e240074ecc571216a8c2503ae0b (diff) | |
download | mariadb-git-69fae29c589e92233cf63ae32bffb9c6023d3780.tar.gz |
Test suite for BUG#13673 (the bug was fixed in the bugfix for BUG#14138)
mysql-test/r/analyze.result:
Test suite for BUG#13673
mysql-test/t/analyze.test:
Test suite for BUG#13673
Diffstat (limited to 'mysql-test/r/analyze.result')
-rw-r--r-- | mysql-test/r/analyze.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/analyze.result b/mysql-test/r/analyze.result index 0b44a502b13..796b382f5d6 100644 --- a/mysql-test/r/analyze.result +++ b/mysql-test/r/analyze.result @@ -30,3 +30,10 @@ check table t1; Table Op Msg_type Msg_text test.t1 check status OK drop table t1; +CREATE TABLE t1 (a int); +prepare stmt1 from "SELECT * FROM t1 PROCEDURE ANALYSE()"; +execute stmt1; +Field_name Min_value Max_value Min_length Max_length Empties_or_zeros Nulls Avg_value_or_avg_length Std Optimal_fieldtype +execute stmt1; +Field_name Min_value Max_value Min_length Max_length Empties_or_zeros Nulls Avg_value_or_avg_length Std Optimal_fieldtype +deallocate prepare stmt1; |