~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/constants/user.cc

  • Committer: Mark Atwood
  • Date: 2011-10-21 14:25:19 UTC
  • mfrom: (2440.2.28 rf)
  • Revision ID: me@mark.atwood.name-20111021142519-bqnyqrkthibv70rc
Tags: 2011.10.28
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
} /* namespace constants */
48
48
 
 
49
static drizzled::identifier::User g_su(str_ref("SYSTEM"));
 
50
 
49
51
const identifier::User& system_user()
50
52
{
51
 
  static drizzled::identifier::User _tmp("SYSTEM");
52
 
 
53
 
  return _tmp;
 
53
  return g_su;
54
54
}
55
55
 
56
56
} /* namespace identifier */