From 751da00d0ea8759b80b5a7eb3daeb7e972714af6 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 12 Sep 2000 17:46:37 -0600 Subject: [PATCH] fixed random exec times for connect stage of the slave thread sql/slave.cc: fixed random exec times for connect stage of the slave thread --- sql/slave.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/slave.cc b/sql/slave.cc index 13b9acf1e78..3206aab40f2 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -812,6 +812,7 @@ pthread_handler_decl(handle_slave,arg __attribute__((unused))) my_thread_init(); // needs to be up here, otherwise we get a coredump // trying to use DBUG_ stuff thd = new THD; // note that contructor of THD uses DBUG_ ! + thd->set_time(); DBUG_ENTER("handle_slave"); pthread_detach_this_thread();