summaryrefslogtreecommitdiff
path: root/mysql-test/main/win.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/win.result')
-rw-r--r--mysql-test/main/win.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/win.result b/mysql-test/main/win.result
index c9a651c7e5e..73c9dec0f08 100644
--- a/mysql-test/main/win.result
+++ b/mysql-test/main/win.result
@@ -3392,7 +3392,7 @@ create table t1 (a int);
explain
select distinct 1, row_number() over (order by 1) from t1 where a=0 group by a with rollup;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
+1 SIMPLE NULL NULL NULL NULL NULL NULL NULL no matching row in const table
select distinct 1, row_number() over (order by 1) from t1 where a=0 group by a with rollup;
1 row_number() over (order by 1)
drop table t1;
@@ -3663,7 +3663,7 @@ CREATE TABLE t1 (a INT);
explain
SELECT row_number() over(), sum(1) FROM t1;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 system NULL NULL NULL NULL 0 Const row not found; Using temporary
+1 SIMPLE NULL NULL NULL NULL NULL NULL NULL no matching row in const table
SELECT row_number() over(), sum(1) FROM t1;
row_number() over() sum(1)
1 NULL