Mercurial > dive4elements > framework
changeset 43:b8516aa3d8a1
Time delta calculation in SQL statement to figure out outdated artifacts
in H2 database was broken.
artifacts/trunk@122 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 24 Sep 2009 09:15:56 +0000 |
parents | 5fbd8e65bdf5 |
children | 86d2a843e588 |
files | Changelog artifact-database/src/main/resources/sql/org-h2-driver.properties |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Changelog Thu Sep 24 08:45:23 2009 +0000 +++ b/Changelog Thu Sep 24 09:15:56 2009 +0000 @@ -1,3 +1,9 @@ +2009-09-24 Sascha L. Teichmann <sascha.teichmann@intevation.de> + + * artifact-database/src/main/resources/sql/org-h2-driver.properties: + Time delta calculation in SQL statement to figure out outdated artifacts + was broken. + 2009-09-24 Sascha L. Teichmann <sascha.teichmann@intevation.de> * artifact-database/src/main/java/de/intevation/artifactdatabase/DefaultArtifact.java:
--- a/artifact-database/src/main/resources/sql/org-h2-driver.properties Thu Sep 24 08:45:23 2009 +0000 +++ b/artifact-database/src/main/resources/sql/org-h2-driver.properties Thu Sep 24 09:15:56 2009 +0000 @@ -10,7 +10,7 @@ artifacts.touch=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP WHERE id = ? artifacts.outdated=SELECT id, factory, data FROM artifacts WHERE ttl IS NOT NULL \ - AND CURRENT_TIMESTAMP - last_access > ttl LIMIT 50 + AND DATEDIFF('MILLISECOND', last_access, CURRENT_TIMESTAMP) > ttl LIMIT 50 artifacts.select.gid=SELECT id, last_access, ttl, factory, data FROM artifacts WHERE gid = ?