# HG changeset patch # User Tim Englich # Date 1256033242 0 # Node ID 60c61f323f1650d09c0b448434c821818fbbf998 # Parent 63f65fb9f2106f01b6070c21b2db63747b50de2e Bugfix for TIMESERIESPOINT the first and the last value weren't used in the Query which was integrated from the Prototyp to the Project ussue54 gnv-artifacts/trunk@249 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 63f65fb9f210 -r 60c61f323f16 gnv-artifacts/src/test/ressources/queries.properties --- a/gnv-artifacts/src/test/ressources/queries.properties Mon Oct 19 13:33:36 2009 +0000 +++ b/gnv-artifacts/src/test/ressources/queries.properties Tue Oct 20 10:07:22 2009 +0000 @@ -77,8 +77,8 @@ WHERE tv.TIMESERIESID = t.TIMESERIESID AND \ t.PARAMETERID IN ( ? ) AND \ tv.MEASUREMENTID IN ( ? ) AND \ - tv.TIMEVALUE > ? AND \ - tv.TIMEVALUE < ? \ + tv.TIMEVALUE >= ? AND \ + tv.TIMEVALUE <= ? \ ORDER BY tv.MEASUREMENTID , \ tv.TIMESERIESID , \ t.PARAMETERID , \