
xsparql.testcases-dawg-sparql-1.1.aggregates.agg-groupconcat-02.xsparql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xsparql-test-suite Show documentation
Show all versions of xsparql-test-suite Show documentation
XSPARQL compliance test suite
The newest version!
prefix :
{for (count(*) as $c)
from
where {
{select $p (group_concat($o) as $g) where {
[] $p $o
} group by $p}
filter(
($p = :p1 && ($g = "1 22" || $g = "22 1"))
|| ($p = :p2 && ($g = "aaa bb c" || $g = "aaa c bb" || $g = "bb aaa c" || $g = "bb c aaa" || $g = "c aaa bb" || $g = "c bb aaa"))
)
}
return
{$c}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy