~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.cc

  • Committer: Andrew Hutchings
  • Date: 2010-11-02 10:28:05 UTC
  • mto: (1897.2.5 merge)
  • mto: This revision was merged to the branch mainline in revision 1899.
  • Revision ID: andrew@linuxjedi.co.uk-20101102102805-zokxxuee22bzwbkk
drizzledump MySQL migration fixes:
Fix 'TIME default NULL' killing drizzledump
Fix empty binary/blob column output
Fix force accept NULL on date/time types to work again

Show diffs side-by-side

added added

removed removed

Lines of Context:
379
379
  std::ostringstream output;
380
380
  if (from_size > 0)
381
381
    output << "0x";
 
382
  else
 
383
    output << "''";
 
384
 
382
385
  while (from_size > 0)
383
386
  {
384
387
    /* Would be nice if std::hex liked uint8_t, ah well */