summaryrefslogtreecommitdiff
path: root/sql/event_queue.cc
diff options
context:
space:
mode:
authorunknown <msvensson@pilot.blaudden>2007-02-27 16:58:40 +0100
committerunknown <msvensson@pilot.blaudden>2007-02-27 16:58:40 +0100
commitf1476f439557384fae199af8e5652c7d13a8e47c (patch)
tree270aa57ce88cbfd733d77e2afdf10f1a400fb49f /sql/event_queue.cc
parent4131465ee5bf922e716d9e5d97663d5a3cde9ab4 (diff)
downloadmariadb-git-f1476f439557384fae199af8e5652c7d13a8e47c.tar.gz
Bug#26536 func_time failure on vm-win2003-64-b, occurs every time
- my_time_t is defined as long which means it will not always be the same size as time_t. See explanation in include/my_time.h sql/event_queue.cc: No need to require that "sizeof(time_t) == sizeof(my_time_t)"
Diffstat (limited to 'sql/event_queue.cc')
-rw-r--r--sql/event_queue.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/sql/event_queue.cc b/sql/event_queue.cc
index 068abbe3408..e67eac4125c 100644
--- a/sql/event_queue.cc
+++ b/sql/event_queue.cc
@@ -153,13 +153,6 @@ Event_queue::init_queue(THD *thd, Event_db_repository *db_repo)
goto err;
}
- if (sizeof(my_time_t) != sizeof(time_t))
- {
- sql_print_error("SCHEDULER: sizeof(my_time_t) != sizeof(time_t) ."
- "The scheduler may not work correctly. Stopping");
- goto err;
- }
-
res= load_events_from_db(thd);
UNLOCK_QUEUE_DATA();
if (res)