[jira] [Commented] (JENA-286) Windows Batch scripts don't handle paths with spaces correctly

2012-07-30 Thread Rob Vesse (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-286?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13424904#comment-13424904
 ] 

Rob Vesse commented on JENA-286:


I didn't realise the scripts were generated from a template, I will check the 
changes

> Windows Batch scripts don't handle paths with spaces correctly
> --
>
> Key: JENA-286
> URL: https://issues.apache.org/jira/browse/JENA-286
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ, Jena, RIOT, TDB
>Affects Versions: Jena 2.7.2
> Environment: Windows
>Reporter: Rob Vesse
>Assignee: Rob Vesse
> Fix For: Jena 2.7.3
>
>
> In tracking down the error reported by a user on the mailing list with 
> running the scripts on Windows I discovered they don't appropriately handle 
> spaces.
> While someone clearly wrote them with this in mind as written it doesn't 
> work.  For example consider sparql.bat which is written like so currently:
> set JVM_ARGS=-Xmx1024M
> set JENA_CP="%JENAROOT%\lib\*;"
> set LOGGING=-Dlog4j.configuration=file:%JENAROOT%/jena-log4j.properties
> java %JVM_ARGS% %LOGGING% -cp %JENA_CP% arq.sparql %*
> exit /B
> In order to work correctly it must actually be written like this:
> set JVM_ARGS=-Xmx1024M
> set JENA_CP=%JENAROOT%\lib\*;
> java %JVM_ARGS% -Dlog4j.configuration="file:%JENAROOT%/jena-log4j.properties" 
> -cp "%JENA_CP%" arq.sparql %*
> exit /B
> The cause of the error is that quotes used when setting a variable do not 
> actually carry through when that variable is accessed
> Issue will be closed when all batch scripts are appropriately updated

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Created] (JENA-288) QueryIterAssignVarValue: Null iterator

2012-07-30 Thread Andy Seaborne (JIRA)
Andy Seaborne created JENA-288:
--

 Summary:  QueryIterAssignVarValue: Null iterator
 Key: JENA-288
 URL: https://issues.apache.org/jira/browse/JENA-288
 Project: Apache Jena
  Issue Type: Bug
  Components: ARQ
Affects Versions: ARQ 2.9.2
Reporter: Andy Seaborne
Assignee: Andy Seaborne


Test case:

PREFIX : 

SELECT *
{
   BIND ( :g AS ?G )
   GRAPH ?G { ?s ?p ?o }
}

and :g is not a graph in the data.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Resolved] (JENA-288) QueryIterAssignVarValue: Null iterator

2012-07-30 Thread Andy Seaborne (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Seaborne resolved JENA-288.


Resolution: Fixed

Fixed in SVN.

>  QueryIterAssignVarValue: Null iterator
> ---
>
> Key: JENA-288
> URL: https://issues.apache.org/jira/browse/JENA-288
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ
>Affects Versions: ARQ 2.9.2
>Reporter: Andy Seaborne
>Assignee: Andy Seaborne
>
> Test case:
> PREFIX : 
> SELECT *
> {
>BIND ( :g AS ?G )
>GRAPH ?G { ?s ?p ?o }
> }
> and :g is not a graph in the data.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (JENA-288) QueryIterAssignVarValue: Null iterator

2012-07-30 Thread Andy Seaborne (JIRA)

 [ 
https://issues.apache.org/jira/browse/JENA-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Seaborne closed JENA-288.
--


>  QueryIterAssignVarValue: Null iterator
> ---
>
> Key: JENA-288
> URL: https://issues.apache.org/jira/browse/JENA-288
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ
>Affects Versions: ARQ 2.9.2
>Reporter: Andy Seaborne
>Assignee: Andy Seaborne
>
> Test case:
> PREFIX : 
> SELECT *
> {
>BIND ( :g AS ?G )
>GRAPH ?G { ?s ?p ?o }
> }
> and :g is not a graph in the data.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (JENA-288) QueryIterAssignVarValue: Null iterator

2012-07-30 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13425061#comment-13425061
 ] 

Hudson commented on JENA-288:
-

Integrated in Jena_ARQ #750 (See [https://builds.apache.org/job/Jena_ARQ/750/])
JENA-288

Fix for known not-to-exist graph and a constrained variable. (Revision 1367190)

 Result = SUCCESS
andy : 
Files : 
* 
/jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/sparql/engine/main/iterator/QueryIterGraph.java


>  QueryIterAssignVarValue: Null iterator
> ---
>
> Key: JENA-288
> URL: https://issues.apache.org/jira/browse/JENA-288
> Project: Apache Jena
>  Issue Type: Bug
>  Components: ARQ
>Affects Versions: ARQ 2.9.2
>Reporter: Andy Seaborne
>Assignee: Andy Seaborne
>
> Test case:
> PREFIX : 
> SELECT *
> {
>BIND ( :g AS ?G )
>GRAPH ?G { ?s ?p ?o }
> }
> and :g is not a graph in the data.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira