diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-14 08:29:11 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-14 08:29:11 +0200 |
commit | 89e3815b395e29a0e2c282a08ed6326a3330a2aa (patch) | |
tree | 7343733389a1868b516f6ab0a1433998f96642d7 /mysql-test/main/win_sum.test | |
parent | 1f5615360cce22875ae2ab92386704b2ba363d8b (diff) | |
parent | 72ba96a48eb3e99a967e0489cc79f378e865e3fd (diff) | |
download | mariadb-git-89e3815b395e29a0e2c282a08ed6326a3330a2aa.tar.gz |
Merge branch 'bb-10.3-vp-MDEV-27691' into 10.3
Diffstat (limited to 'mysql-test/main/win_sum.test')
-rw-r--r-- | mysql-test/main/win_sum.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/main/win_sum.test b/mysql-test/main/win_sum.test index aa4965bfd5a..d495dc45764 100644 --- a/mysql-test/main/win_sum.test +++ b/mysql-test/main/win_sum.test @@ -35,6 +35,8 @@ insert into t1 values (126 , 6, 1, NULL), (127 , 6, 1, NULL); +#enable after fix MDEV-27871 +--disable_view_protocol --sorted_result select pk, a, b, sum(b) over (partition by a order by pk ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING) @@ -43,5 +45,6 @@ from t1; --sorted_result select pk, a, c, sum(c) over (partition by a order by pk ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING) from t1; +--enable_view_protocol drop table t1; |