~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Monty Taylor
  • Date: 2009-02-04 00:41:52 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 832.
  • Revision ID: mordred@inaugust.com-20090204004152-70g4vjo2aa9ypj3f
More solaris warning fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1541
1541
    case Item::PARAM_ITEM:
1542
1542
         my_error(ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED, MYF(0), field_name);
1543
1543
         return true;
1544
 
         break;
1545
1544
    default:
1546
1545
      // Continue with the field creation
1547
1546
      break;
1767
1766
  case DRIZZLE_TYPE_BLOB:               return 4+portable_sizeof_char_ptr;
1768
1767
  case DRIZZLE_TYPE_ENUM:
1769
1768
  case DRIZZLE_TYPE_NEWDECIMAL:
1770
 
    abort(); return 0;                          // This shouldn't happen
1771
 
  default:
1772
 
    return 0;
 
1769
    abort();
1773
1770
  }
1774
1771
}
1775
1772