diff options
Diffstat (limited to 'mysql-test/main/win.result')
-rw-r--r-- | mysql-test/main/win.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/main/win.result b/mysql-test/main/win.result index 6ee6f01ba8d..ce8c1311222 100644 --- a/mysql-test/main/win.result +++ b/mysql-test/main/win.result @@ -3490,3 +3490,14 @@ d x 00:00:01 00:00:02 00:00:02 NULL DROP TABLE t1; +# +# MDEV-16722: Assertion `type() != NULL_ITEM' failed +# +create table t1 (a int); +insert into t1 values (1),(2),(3); +SELECT row_number() OVER (order by a) FROM t1 order by NAME_CONST('myname',NULL); +row_number() OVER (order by a) +1 +2 +3 +drop table t1; |