summaryrefslogtreecommitdiff
path: root/mysql-test/suite/encryption/r/tempfiles_encrypted.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/encryption/r/tempfiles_encrypted.result')
-rw-r--r--mysql-test/suite/encryption/r/tempfiles_encrypted.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/encryption/r/tempfiles_encrypted.result b/mysql-test/suite/encryption/r/tempfiles_encrypted.result
index 077b770b9d2..eeecf3f2a4f 100644
--- a/mysql-test/suite/encryption/r/tempfiles_encrypted.result
+++ b/mysql-test/suite/encryption/r/tempfiles_encrypted.result
@@ -3398,7 +3398,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;
@@ -3669,7 +3669,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