~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.cc

  • Committer: Brian Aker
  • Date: 2010-11-06 15:43:10 UTC
  • mfrom: (1908.1.1 merge)
  • Revision ID: brian@tangent.org-20101106154310-g1jpjzwbc53pfc4f
Filesort encapsulation, plus modification to copy contructor

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
  return MATCH_SIMPLE;
211
211
}
212
212
 
213
 
#if 0
214
 
std::ostream& operator<<(std::ostream& output, const message::Transaction &message)
215
 
216
 
    std::string buffer;
217
 
 
218
 
    google::protobuf::TextFormat::PrintToString(message, &buffer);
219
 
    output << buffer;
220
 
 
221
 
    return output;
222
 
}
223
 
 
224
 
std::ostream& operator<<(std::ostream& output, const message::Table &message)
225
 
226
 
  std::string buffer;
227
 
 
228
 
  google::protobuf::TextFormat::PrintToString(message, &buffer);
229
 
  output << buffer;
230
 
 
231
 
  return output;
232
 
}
233
 
#endif
234
 
 
235
 
 
236
213
} /* namespace message */
237
214
} /* namespace drizzled */