summaryrefslogtreecommitdiff
path: root/mysql-test/t/analyse.test
blob: 3f56b3e47cef1e75f94a418a0bcc4071a280e888 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# Test of procedure analyse
#

drop table if exists t1,t2;
create table t1 (i int, j int);
insert into t1 values (1,2), (3,4), (5,6), (7,8);
select * from t1 procedure analyse();
create table t2 select * from t1 procedure analyse();
select * from t2;
drop table t1,t2;