diff options
author | unknown <andrey@lmy004.> | 2006-05-23 13:32:22 +0200 |
---|---|---|
committer | unknown <andrey@lmy004.> | 2006-05-23 13:32:22 +0200 |
commit | 91552f962f2e37831738dd6ba2bf36339559c8af (patch) | |
tree | 1294ba4805f52b38c27d20b005eaef5f44ff4004 /sql/event_scheduler.h | |
parent | 6f1ab9ba48c8980203e555f89691d461c637c524 (diff) | |
download | mariadb-git-91552f962f2e37831738dd6ba2bf36339559c8af.tar.gz |
various fixes after push of fix for bug#17619
mysql-test/r/not_embedded_server.result:
update result
mysql-test/r/sp-threads.result:
update result
sql/event_scheduler.h:
fix build error with SUN compiler
sql/mysqld.cc:
fix problem with --init-file which was expecting to be the only running
thread. nevertheless Events should be started as close as possible to the
place connections are handled.
Diffstat (limited to 'sql/event_scheduler.h')
-rw-r--r-- | sql/event_scheduler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/event_scheduler.h b/sql/event_scheduler.h index 8ac3a3fc08c..247b4481c9f 100644 --- a/sql/event_scheduler.h +++ b/sql/event_scheduler.h @@ -192,7 +192,7 @@ private: */ COND_suspend_or_resume, /* Must be always last */ - COND_LAST, + COND_LAST }; /* Singleton instance */ |