private static boolean isBadNull(ColumnDef columnDef, Object target) {
   return columnDef.is(ColumnAttribute.NOT_NULL) && (target == null);
 }