diff options
Diffstat (limited to 'mysql-test/t/win.test')
-rw-r--r-- | mysql-test/t/win.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/win.test b/mysql-test/t/win.test index 614c3638f64..753fe5c7693 100644 --- a/mysql-test/t/win.test +++ b/mysql-test/t/win.test @@ -1916,6 +1916,15 @@ from t1; drop table t1; --echo # +--echo # MDEV-13189: Window functions crash when using INTERVAL function +--echo # +create table t1(i int); +insert into t1 values (1),(2),(10),(20),(30); +select sum(i) over (order by i), interval(sum(i) over (order by i), 10, 20) +from t1; +drop table t1; + +--echo # --echo # Start of 10.3 tests --echo # |