gpt4 book ai didi

sparql - Sesame 2.8.4 子查询限制错误修复?

转载 作者:行者123 更新时间:2023-12-02 11:31:04 26 4
gpt4 key购买 nike

芝麻2.8.4好像有bug。

如果我有以下数据集:

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix : <http://example.org/>.

:a rdf:type :AClass .
:a :hasName "a"^^xsd:string .
:a :hasProperty :xa .
:a :hasProperty :ya .
:a :hasProperty :za .

:b rdf:type :AClass .
:b :hasName "b"^^xsd:string .
:b :hasProperty :xb .
:b :hasProperty :yb .

:c rdf:type :AClass .
:c :hasName "c"^^xsd:string .
:c :hasProperty :xc .

并对其运行以下查询:

prefix : <http://example.org/> 
select ?s ?p ?o {
#-- first, select two instance of :AClass
{ select ?s { ?s a :AClass } limit 2 }

#-- then, select all the triples of
#-- which they are subjects
?s ?p ?o
}

我得到的结果是这样的:

--------------------------------------------------------------------
| s | p | o |
====================================================================
| :a | <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> | :AClass |
| :a | :hasName | "a" |
--------------------------------------------------------------------

正确的结果是:

--------------------------------------------------------------------
| s | p | o |
====================================================================
| :a | <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> | :AClass |
| :a | :hasName | "a" |
| :a | :hasProperty | :xa |
| :a | :hasProperty | :ya |
| :a | :hasProperty | :za |
| :b | <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> | :AClass |
| :b | :hasName | "b" |
| :b | :hasProperty | :xb |
| :b | :hasProperty | :yb |
--------------------------------------------------------------------

有人知道这个错误吗?有人遇到过同样的问题吗?或者是否有其他版本的 Sesame 修复了此错误?

回答我的问题后添加了下一行:

为了避免任何混淆:该错误存在于工作台中,而不是查询引擎中。查询引擎运行良好。

最佳答案

您看到的问题不是查询引擎中的错误,而是工作台客户端应用程序中的错误(这也解释了为什么我无法之前重现它,因为我使用的是命令行客户端)。由于某种原因,Workbench 错误地呈现结果,仅显示 2 行(尽管标题中指出要显示 9 个结果):

该问题与工作台中的结果分页功能有关,因为当您更改该设置时,它会突然显示完整的结果:

此问题现已在 Sesame 的问题跟踪器中记录为错误:SES-2307

关于sparql - Sesame 2.8.4 子查询限制错误修复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32346595/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com