branch develop updated (54d5596 -> 9ce64eb)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from 54d5596 Remove some fixes new 9ce64eb Prefer to add specific order in sql clause The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 9ce64ebca6723da93756017e53cec6335d23ac2f Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Sep 7 18:16:15 2016 +0200 Prefer to add specific order in sql clause Summary of changes: .../ird/observe/services/topia/service/LastUpdateDateServiceTopia.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 9ce64ebca6723da93756017e53cec6335d23ac2f Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Sep 7 18:16:15 2016 +0200 Prefer to add specific order in sql clause --- .../ird/observe/services/topia/service/LastUpdateDateServiceTopia.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services-topia/src/main/java/fr/ird/observe/services/topia/service/LastUpdateDateServiceTopia.java b/services-topia/src/main/java/fr/ird/observe/services/topia/service/LastUpdateDateServiceTopia.java index d6707eb..f1ac97d 100644 --- a/services-topia/src/main/java/fr/ird/observe/services/topia/service/LastUpdateDateServiceTopia.java +++ b/services-topia/src/main/java/fr/ird/observe/services/topia/service/LastUpdateDateServiceTopia.java @@ -49,7 +49,7 @@ public class LastUpdateDateServiceTopia extends ObserveServiceTopia implements L Optional<LastUpdateDate> optionalLastUpdateDate = getTopiaPersistenceContext().getLastUpdateDateDao() .forTypeEquals(entityType.getName()) - .setOrderByArguments(LastUpdateDate.PROPERTY_LAST_UPDATE_DATE) + .setOrderByArguments(LastUpdateDate.PROPERTY_LAST_UPDATE_DATE + " DESC") .tryFindFirst(); if (!optionalLastUpdateDate.isPresent()) { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm