~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.cc

  • Committer: Andrew Hutchings
  • Date: 2010-12-06 12:15:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1981.
  • Revision ID: andrew@linuxjedi.co.uk-20101206121506-4870yam6809gewnz
Add field level comments back in to drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
    os << " DEFAULT NULL";
176
176
  }
177
177
 
 
178
  if (not obj.comment.empty())
 
179
  {
 
180
    os << " COMMENT '" << DrizzleDumpData::escape(obj.comment.c_str(), obj.comment.length()) << "'";
 
181
  }
 
182
 
178
183
  return os;
179
184
}
180
185