diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-17 08:43:55 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-17 08:43:55 +0200 |
commit | 851b31bcc47b742cd3b39ad06176b0e8be591c18 (patch) | |
tree | 93da42af4bd22fc448df71777bedb0a4690478ba /mysql-test/main/win_std.test | |
parent | 618d82064618bda06bcd080af5b664b3d173dbe3 (diff) | |
parent | a4234f0410008e14aa2ad7ad56973127f3046d5c (diff) | |
download | mariadb-git-851b31bcc47b742cd3b39ad06176b0e8be591c18.tar.gz |
Merge branch 'bb-10.8-vp-MDEV-27691' into 10.8
Diffstat (limited to 'mysql-test/main/win_std.test')
-rw-r--r-- | mysql-test/main/win_std.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/main/win_std.test b/mysql-test/main/win_std.test index c1964ecac98..e7986e2cf84 100644 --- a/mysql-test/main/win_std.test +++ b/mysql-test/main/win_std.test @@ -25,6 +25,9 @@ select std(c) over (order by a) from t2; --enable_warnings +#enable after fix MDEV-27871 +--disable_view_protocol + --echo # Empty frame. select std(b) over (order by a rows between 2 following and 1 following) from t2; @@ -135,6 +138,7 @@ from t2; --sorted_result select pk, a, b, std(b) over (order by a range between 0 following and 1 following) from t2; +--enable_view_protocol drop table t1; drop table t2; |