Cynthia-77 opened a new issue, #1750:
URL: https://github.com/apache/jena/issues/1750

   ### Version
   
   3.3.0
   
   ### What happened?
   
   Write the following RDF data into Jena:
   
   ```turtle
   @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
   <http://John> <http://have> 10 .
   <http://Peter> <http://have> "10"^^xsd:double .
   ```
   
   Then execute the following query:
   
   ```
   SELECT *
   WHERE { ?s ?p 10. }
   ```
   
   The query result is:
   
   | ?s                  | ?p                  |
   | ------------------- | ------------------- |
   | ```<http://John>``` | ```<http://have>``` |
   
   ```"10"^^xsd:double``` has the value 10 as well. Why can't I obtain it 
through the query?
   
   The expected query result is:
   
   | ?s                   | ?p                  |
   | -------------------- | ------------------- |
   | ```<http://John>```  | ```<http://have>``` |
   | ```<http://Peter>``` | ```<http://have>``` |
   
   
   
   ### Relevant output and stacktrace
   
   _No response_
   
   ### Are you interested in making a pull request?
   
   None


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to