~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_mysql.cc

  • Committer: lbieber
  • Date: 2010-10-02 04:02:25 UTC
  • mfrom: (1806.1.1 build)
  • Revision ID: lbieber@orisndriz08-20101002040225-w8mn2h0nh5587a6f
Merge Andrew: fix bug 652966 - Drizzledump migration code doesn't handle YEAR type

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
    convertDateTime= true;
355
355
  }
356
356
 
357
 
  if (old_type.compare("TIME") == 0)
 
357
  if ((old_type.compare("TIME") == 0) or (old_type.compare("YEAR") == 0))
358
358
  {
359
359
    type= "INT";
360
360
    return;