This table matches only n, so it will report that 4 is a wrong value for 2

|Query|SELECT n, n*2 as l  FROM ( select 1 as n union select 2 union select 3 ) x|
|n|l?|
|1|2|
|2|fail[7]|
|3|6|
