diff options
author | Monty <monty@mariadb.org> | 2017-12-01 12:34:37 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-12-02 12:04:54 +0200 |
commit | 666070852384c2f5c40685a1ae0702e7d8cee85e (patch) | |
tree | 8eaffb03083a444f1e127ed652faa9c8b86af028 /mysql-test/r/partition_pruning.result | |
parent | c24d1d665c907c8f8c98fc0e7ec986145b9fc757 (diff) | |
download | mariadb-git-666070852384c2f5c40685a1ae0702e7d8cee85e.tar.gz |
Changed "const row not found" to "Const row not found"
Also changed Unique row not found to use uppercase first.
This was done to make these messages consistent with the rest
Diffstat (limited to 'mysql-test/r/partition_pruning.result')
-rw-r--r-- | mysql-test/r/partition_pruning.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/partition_pruning.result b/mysql-test/r/partition_pruning.result index 0fb24b74218..dc5221a9245 100644 --- a/mysql-test/r/partition_pruning.result +++ b/mysql-test/r/partition_pruning.result @@ -3136,7 +3136,7 @@ drop table t2; create table t1 (s1 int); explain partitions select 1 from t1 union all select 2; id select_type table partitions type possible_keys key key_len ref rows Extra -1 PRIMARY t1 NULL system NULL NULL NULL NULL 0 const row not found +1 PRIMARY t1 NULL system NULL NULL NULL NULL 0 Const row not found 2 UNION NULL NULL NULL NULL NULL NULL NULL NULL No tables used drop table t1; create table t1 (a bigint unsigned not null) partition by range(a) ( |