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/master Commit: 04ac20d126df5baaf0a3937e531c8ff74557a185 Parents: dcce8f7 Author: Preston Carman <[email protected]> Authored: Fri Feb 21 17:08:07 2014 -0800 Committer: Preston Carman <[email protected]> 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
