mariadb/mysql-test/main/win_i_s.test
Lena Startseva 9854fb6fa7 MDEV-31003: Second execution for ps-protocol
This patch adds for "--ps-protocol" second execution
of queries "SELECT".
Also in this patch it is added ability to disable/enable
(--disable_ps2_protocol/--enable_ps2_protocol) second
execution for "--ps-prototocol" in testcases.
2023-07-26 17:15:00 +07:00

20 lines
554 B
Text

--disable_ps2_protocol
show status like '%window%';
create table t1 (a int, b int);
insert into t1 values (1, 10), (2, 20), (3, 30);
select a, b, rank() over (order by a) from t1;
show status like '%window%';
select a, b, rank() over (order by a), sum(a) over (order by a) from t1;
show status like '%window%';
--sorted_result
select t_a.r1, t_b.r2
from (select a, b, rank() over (order by a) as r1 from t1) t_a,
(select a, b, row_number() over (order by a) as r2 from t1) t_b;
show status like '%window%';
drop table t1;
--enable_ps2_protocol