~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/binary_log.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-09 19:18:36 UTC
  • mfrom: (923 drizzle)
  • mto: (934.3.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: osullivan.padraig@gmail.com-20090309191836-ixiam3xa55off3do
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
         ii != event->variable().end() ;
118
118
         ++ii)
119
119
    {
120
 
      out << "set @" << ii->name() << " = '" << ii->value() << "'\n";
 
120
      out << "set @" << ii->name() << " = '" << ii->val() << "'\n";
121
121
    }
122
122
    out << event->query() << std::endl;
123
123
    break;