~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

Merge Stewart - fix bug 587772: READ COMMITTED isolation level doesn't work (at least with InnoDB)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
namespace util
47
47
{
48
48
 
49
 
 
50
 
namespace string {
51
 
typedef boost::shared_ptr<std::string> shared_ptr;
52
 
typedef boost::shared_ptr<const std::string> const_shared_ptr;
53
 
}
54
 
 
55
49
struct insensitive_equal_to : std::binary_function<std::string, std::string, bool>
56
50
{
57
51
  bool operator()(std::string const& x, std::string const& y) const