mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
c0f40d14cc
A lot of new tests to mysqltest Fixed bug with BDB tables and autocommit
10 lines
243 B
Text
10 lines
243 B
Text
#
|
|
# Test of procedure analyse
|
|
#
|
|
|
|
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;
|