Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 270969
Collapse All | Expand All

(-)src/org/eclipse/emf/cdo/server/internal/db/jdbc/PreparedStatementJDBCDelegate.java (-5 / +1 lines)
Lines 234-244 Link Here
234
234
235
          for (int result : results)
235
          for (int result : results)
236
          {
236
          {
237
            if (entry.getKey().getElement1() != StmtType.DELETE_REFERENCES
237
            checkState(result != Statement.EXECUTE_FAILED, "Batch execution returned EXECUTE_FAILED!");
238
                && entry.getKey().getElement1() != StmtType.UPDATE_REFERENCE_VERSION)
239
            {
240
              checkState(result == 1, "Batch execution did not return '1' for " + entry.getKey().toString());
241
            }
242
          }
238
          }
243
        }
239
        }
244
        catch (SQLException ex)
240
        catch (SQLException ex)

Return to bug 270969