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 /sql/sql_explain.cc | |
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 'sql/sql_explain.cc')
-rw-r--r-- | sql/sql_explain.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_explain.cc b/sql/sql_explain.cc index 660d68427d1..fed38a5f4f4 100644 --- a/sql/sql_explain.cc +++ b/sql/sql_explain.cc @@ -1813,9 +1813,9 @@ const char * extra_tag_text[]= "Using join buffer", // special handling - "const row not found", - "unique row not found", - "Impossible ON condition" + "Const row not found", + "Unique row not found", + "Impossible ON condition", }; |