~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/get_locks.cc

  • Committer: Patrick Crews
  • Date: 2010-12-07 20:02:50 UTC
  • Revision ID: gleebix@gmail.com-20101207200250-6a27jgqalgw5bsb5
Added disabled.def file to disable drizzleslap due to Bug#684269.  Need to skip for tarball release this round

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
    if (res && res->length())
38
38
    {
39
 
      list_of_locks.insert(Key(*getSession().user(), res->c_str()));
 
39
      list_of_locks.insert(Key(getSession().getSecurityContext(), res->c_str()));
40
40
    }
41
41
    else
42
42
    {
45
45
    }
46
46
  }
47
47
 
48
 
  bool result;
 
48
  boost::tribool result;
49
49
  {
50
50
    boost::this_thread::restore_interruption dl(getSession().getThreadInterupt());
51
51
 
61
61
    }
62
62
  }
63
63
 
 
64
  if (boost::indeterminate(result))
 
65
    null_value= true;
 
66
 
64
67
  if (result)
65
68
  {
66
69
    user_locks::Storable *list= static_cast<user_locks::Storable *>(getSession().getProperty("user_locks"));