summaryrefslogtreecommitdiff
path: root/mysql-test/r/events_microsec.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/events_microsec.result')
-rw-r--r--mysql-test/r/events_microsec.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/events_microsec.result b/mysql-test/r/events_microsec.result
index b96bd551511..2a9f3587706 100644
--- a/mysql-test/r/events_microsec.result
+++ b/mysql-test/r/events_microsec.result
@@ -1,13 +1,13 @@
create database if not exists events_test;
use events_test;
CREATE EVENT micro_test ON SCHEDULE EVERY 100 MICROSECOND DO SELECT 1;
-ERROR 42000: This version of MySQL doesn't yet support 'MICROSECOND'
+ERROR 42000: This version of MariaDB doesn't yet support 'MICROSECOND'
CREATE EVENT micro_test ON SCHEDULE EVERY 100 DAY_MICROSECOND DO SELECT 1;
-ERROR 42000: This version of MySQL doesn't yet support 'MICROSECOND'
+ERROR 42000: This version of MariaDB doesn't yet support 'MICROSECOND'
CREATE EVENT micro_test ON SCHEDULE EVERY 100 HOUR_MICROSECOND DO SELECT 1;
-ERROR 42000: This version of MySQL doesn't yet support 'MICROSECOND'
+ERROR 42000: This version of MariaDB doesn't yet support 'MICROSECOND'
CREATE EVENT micro_test ON SCHEDULE EVERY 100 MINUTE_MICROSECOND DO SELECT 1;
-ERROR 42000: This version of MySQL doesn't yet support 'MICROSECOND'
+ERROR 42000: This version of MariaDB doesn't yet support 'MICROSECOND'
CREATE EVENT micro_test ON SCHEDULE EVERY 100 SECOND_MICROSECOND DO SELECT 1;
-ERROR 42000: This version of MySQL doesn't yet support 'MICROSECOND'
+ERROR 42000: This version of MariaDB doesn't yet support 'MICROSECOND'
drop database events_test;