~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to sql/event_scheduler.cc

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
 
1
/* Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
2
2
 
3
3
   This program is free software; you can redistribute it and/or modify
4
4
   it under the terms of the GNU General Public License as published by
301
301
  Event_job_data job_data;
302
302
  bool res;
303
303
 
 
304
  DBUG_ASSERT(thd->m_digest == NULL);
 
305
  DBUG_ASSERT(thd->m_statement_psi == NULL);
 
306
 
 
307
 
304
308
  thd->thread_stack= &my_stack;                // remember where our stack is
305
309
  res= post_init_event_thread(thd);
306
310
 
329
333
                          job_data.definer.str,
330
334
                          job_data.dbname.str, job_data.name.str);
331
335
end:
 
336
  DBUG_ASSERT(thd->m_statement_psi == NULL);
 
337
  DBUG_ASSERT(thd->m_digest == NULL);
 
338
 
332
339
  DBUG_PRINT("info", ("Done with Event %s.%s", event->dbname.str,
333
340
             event->name.str));
334
341