You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by ti...@apache.org on 2014/03/14 23:09:46 UTC

[25/25] git commit: Fixed a non ascii character.

Fixed a non ascii character.


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/04ac20d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/04ac20d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/04ac20d1

Branch: refs/heads/westmann/prettyprint
Commit: 04ac20d126df5baaf0a3937e531c8ff74557a185
Parents: dcce8f7
Author: Preston Carman <pr...@apache.org>
Authored: Fri Feb 21 17:08:07 2014 -0800
Committer: Preston Carman <pr...@apache.org>
Committed: Fri Feb 21 17:08:07 2014 -0800

----------------------------------------------------------------------
 .../src/main/resources/noaa-ghcn-daily/queries/q05.xq              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/04ac20d1/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/queries/q05.xq
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/queries/q05.xq b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/queries/q05.xq
index fe455d1..3348d04 100644
--- a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/queries/q05.xq
+++ b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/queries/q05.xq
@@ -10,7 +10,7 @@ fn:min(
     
     let $date := xs:date(fn:substring(xs:string(fn:data($r/date)), 0, 11))
     where $s/id eq $r/station
-        and (some $x in $s/locationLabels satisfies ($x/type eq "ST" and $x/displayName eq "Oregon”))
+        and (some $x in $s/locationLabels satisfies ($x/type eq "ST" and $x/displayName eq "Oregon"))
         and $r/dataType eq "TMIN" 
         and fn:year-from-date($date) eq 2001
     return $r/value