summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/events_microsec.result
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 18:15:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 18:15:00 +0000
commita2a2e32c02643a0cec111511220227703fda1cd5 (patch)
tree69cc2b631234c2a8e026b9cd4d72676c61c594df /mysql-test/main/events_microsec.result
parentReleasing progress-linux version 1:10.11.8-1~progress7.99u1. (diff)
downloadmariadb-a2a2e32c02643a0cec111511220227703fda1cd5.tar.xz
mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.zip
Merging upstream version 1:11.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/events_microsec.result')
-rw-r--r--mysql-test/main/events_microsec.result13
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/main/events_microsec.result b/mysql-test/main/events_microsec.result
deleted file mode 100644
index 2a9f3587..00000000
--- a/mysql-test/main/events_microsec.result
+++ /dev/null
@@ -1,13 +0,0 @@
-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 MariaDB doesn't yet support 'MICROSECOND'
-CREATE EVENT micro_test ON SCHEDULE EVERY 100 DAY_MICROSECOND DO SELECT 1;
-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 MariaDB doesn't yet support 'MICROSECOND'
-CREATE EVENT micro_test ON SCHEDULE EVERY 100 MINUTE_MICROSECOND DO SELECT 1;
-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 MariaDB doesn't yet support 'MICROSECOND'
-drop database events_test;