mirror of
https://github.com/MariaDB/server.git
synced 2025-05-04 06:05:05 +03:00

New faster list iterators Change list code to be simpler and faster Optimize count(distinct) New error messages for UNION Make create_tmp_table more general to be usable by UNION
12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
#
|
|
# 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;
|