summaryrefslogtreecommitdiff
path: root/mysql-test/r/log_tables.result
diff options
context:
space:
mode:
authorunknown <petr/cps@mysql.com/owlet.local>2006-09-27 17:48:00 +0400
committerunknown <petr/cps@mysql.com/owlet.local>2006-09-27 17:48:00 +0400
commitac4b66236342910ebfb8aed19ae46113df3465c6 (patch)
tree79853f87274ed5468b1141a716df2d0ac956b9c2 /mysql-test/r/log_tables.result
parent7c59445af08270ae3e34830b1d30a974f0ea4c4c (diff)
downloadmariadb-git-ac4b66236342910ebfb8aed19ae46113df3465c6.tar.gz
Remove unused error messages (no release contains them
at the moment, so we can safely do that). Update an error mesage to make it translateable. mysql-test/r/log_tables.result: update result file sql/share/errmsg.txt: remove unused error messages sql/sql_table.cc: Use name of the statements rather then English words. This way error message is translateable.
Diffstat (limited to 'mysql-test/r/log_tables.result')
-rw-r--r--mysql-test/r/log_tables.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/log_tables.result b/mysql-test/r/log_tables.result
index 59cef29dc8f..33f6c0c7af2 100644
--- a/mysql-test/r/log_tables.result
+++ b/mysql-test/r/log_tables.result
@@ -73,16 +73,16 @@ select * from mysql.slow_log;
start_time user_host query_time lock_time rows_sent rows_examined db last_insert_id insert_id server_id sql_text
TIMESTAMP USER_HOST QUERY_TIME 00:00:00 1 0 test 0 0 1 select sleep(2)
alter table mysql.general_log engine=myisam;
-ERROR HY000: You cannot alter a log table if logging is enabled
+ERROR HY000: You cannot 'ALTER' a log table if logging is enabled
alter table mysql.slow_log engine=myisam;
-ERROR HY000: You cannot alter a log table if logging is enabled
+ERROR HY000: You cannot 'ALTER' a log table if logging is enabled
drop table mysql.general_log;
-ERROR HY000: You cannot drop a log table if logging is enabled
+ERROR HY000: You cannot 'DROP' a log table if logging is enabled
drop table mysql.slow_log;
-ERROR HY000: You cannot drop a log table if logging is enabled
+ERROR HY000: You cannot 'DROP' a log table if logging is enabled
set global general_log='OFF';
alter table mysql.slow_log engine=myisam;
-ERROR HY000: You cannot alter a log table if logging is enabled
+ERROR HY000: You cannot 'ALTER' a log table if logging is enabled
set global slow_query_log='OFF';
show create table mysql.general_log;
Table Create Table