|
From: Jeremy C. <jj...@gm...> - 2013-10-08 21:24:43
|
I have done some work on a defect concerning the following SPARQL
SELECT *
WHERE {
BIND ( 1 as $Y ) .
{
BIND ( 2 as $X )
FILTER( BOUND($Y)
# && True
)
}
}
where, the commented out line incorrectly influenced the result set, on the basis that the correct result set should have one entry.
I am now of the belief that the correct result set should have zero entries, and I will review the work I have done on that basis.
(See DAWG test case filter-nested-2)
Jeremy
|