~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Monty Taylor
  • Date: 2009-02-05 18:47:43 UTC
  • mfrom: (779.8.3 devel)
  • mto: This revision was merged to the branch mainline in revision 840.
  • Revision ID: mordred@inaugust.com-20090205184743-sn55g5b30qvdcy4h
Merged from me again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1857
1857
        break;
1858
1858
      case HA_ERR_TABLE_EXIST:
1859
1859
 
1860
 
        if (create_if_not_exists)
1861
 
          goto warn;
1862
 
        my_error(ER_TABLE_EXISTS_ERROR,MYF(0),table_name);
1863
 
        goto unlock_and_end;
 
1860
      if (create_if_not_exists)
 
1861
        goto warn;
 
1862
      my_error(ER_TABLE_EXISTS_ERROR,MYF(0),table_name);
 
1863
      goto unlock_and_end;
 
1864
        break;
1864
1865
      default:
1865
1866
        my_error(retcode, MYF(0),table_name);
1866
1867
        goto unlock_and_end;
3785
3786
                                      OTM_ALTER);
3786
3787
  return(altered_table);
3787
3788
 
 
3789
  return(NULL);
3788
3790
}
3789
3791
 
3790
3792