]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-520: To maintain backward compatibility for now, removed ORDER BY directive...
authorAron Roberts <aron@socrates.berkeley.edu>
Thu, 15 Oct 2009 20:28:18 +0000 (20:28 +0000)
committerAron Roberts <aron@socrates.berkeley.edu>
Thu, 15 Oct 2009 20:28:18 +0000 (20:28 +0000)
services/id/service/src/main/java/org/collectionspace/services/id/IDServiceJdbcImpl.java

index 3e33dc06a0b7368efe55d80ac562cc887ab650be..e42f01afe722279924bd7e598d53bf3ce5de806f 100644 (file)
@@ -640,7 +640,7 @@ public class IDServiceJdbcImpl implements IDService {
                        ResultSet rs = stmt.executeQuery(
                          "SELECT csid, displayname, description, " +
               "id_generator_state FROM id_generators " +
-              "ORDER BY displayname ASC, priority ASC");
+              "ORDER BY displayname ASC"); // , priority ASC");
 
                        boolean moreRows = rs.next();
                        if (! moreRows) {