~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/drop_schema.cc

  • Committer: Brian Aker
  • Date: 2010-12-30 15:50:18 UTC
  • mto: This revision was merged to the branch mainline in revision 2041.
  • Revision ID: brian@tangent.org-20101230155018-bacjzhn8vfd57his
Update support since we support this syntax now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
 
 
21
#include "config.h"
23
22
#include <drizzled/show.h>
24
23
#include <drizzled/session.h>
25
24
#include <drizzled/statement/drop_schema.h>
 
25
#include <drizzled/db.h>
26
26
#include <drizzled/plugin/event_observer.h>
27
27
 
28
 
#include <drizzled/schema.h>
29
 
 
30
28
#include <string>
31
29
 
32
30
using namespace std;
36
34
 
37
35
bool statement::DropSchema::execute()
38
36
{
39
 
  if (getSession()->inTransaction())
 
37
  if (! session->endActiveTransaction())
40
38
  {
41
 
    my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
42
39
    return true;
43
40
  }
44
 
 
45
 
  identifier::Schema schema_identifier(std::string(getSession()->getLex()->name.str, getSession()->getLex()->name.length));
46
 
 
47
 
  if (not schema::check(*getSession(), schema_identifier))
 
41
  SchemaIdentifier schema_identifier(string(session->lex->name.str, session->lex->name.length));
 
42
  if (not check_db_name(session, schema_identifier))
48
43
  {
49
 
    my_error(ER_WRONG_DB_NAME, schema_identifier);
 
44
    std::string path;
 
45
    schema_identifier.getSQLPath(path);
50
46
 
 
47
    my_error(ER_WRONG_DB_NAME, MYF(0), path.c_str());
51
48
    return false;
52
49
  }
53
 
 
54
 
  if (getSession()->inTransaction())
 
50
  if (session->inTransaction())
55
51
  {
56
52
    my_message(ER_LOCK_OR_ACTIVE_TRANSACTION, 
57
53
        ER(ER_LOCK_OR_ACTIVE_TRANSACTION), 
62
58
  bool res = true;
63
59
  std::string path;
64
60
  schema_identifier.getSQLPath(path);
65
 
  if (unlikely(plugin::EventObserver::beforeDropDatabase(*getSession(), path))) 
 
61
  if (unlikely(plugin::EventObserver::beforeDropDatabase(*session, path))) 
66
62
  {
67
 
    my_error(ER_EVENT_OBSERVER_PLUGIN, schema_identifier);
 
63
    my_error(ER_EVENT_OBSERVER_PLUGIN, MYF(0), path.c_str());
68
64
  }
69
65
  else
70
66
  {
71
 
    res= schema::drop(*getSession(), schema_identifier, drop_if_exists);
72
 
    if (unlikely(plugin::EventObserver::afterDropDatabase(*getSession(), path, res)))
 
67
    res= rm_db(session, schema_identifier, drop_if_exists);
 
68
    if (unlikely(plugin::EventObserver::afterDropDatabase(*session, path, res)))
73
69
    {
74
70
      my_error(ER_EVENT_OBSERVER_PLUGIN, MYF(0), path.c_str());
75
71
      res = false;