Package org.sonar.core.persistence.migration.v44

Examples of org.sonar.core.persistence.migration.v44.Migration44Mapper.selectMeasuresOnDeletedQualityProfiles()


  @Override
  public void execute() {
    DbSession session = db.openSession(false);
    try {
      Migration44Mapper mapper = session.getMapper(Migration44Mapper.class);
      for (Long measureId : mapper.selectMeasuresOnDeletedQualityProfiles()) {
        mapper.deleteProfileMeasure(measureId);
      }
      session.commit();

    } finally {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.