virtuoso-opensource icon indicating copy to clipboard operation
virtuoso-opensource copied to clipboard

UNION results in intersection rather than union

Open retog opened this issue 3 years ago • 2 comments

The query

SELECT ?seq WHERE {
  {
    VALUES ?seq {5 6 7 8 9 }
  } UNION {
    VALUES ?seq { 3 4 5 6 }
  }
} 

should result in

seq
3
4
5
6
7
8
9

but instead results in

seq
5
6

I'm using the following version:

name version build_date git_head thread opsys
OpenLink Virtuoso Server 07.20.3233 Jun 22 2021 111d17e5b -pthreads Linux

retog avatar Mar 20 '22 14:03 retog

Same result on dbpedia

retog avatar Mar 20 '22 14:03 retog

We are looking to this issue and fix ...

HughWilliams avatar Mar 21 '22 13:03 HughWilliams