Open ithinkihaveacat opened 11 years ago
It's not possible to select ... where foo = true or select ... where foo = false.
select ... where foo = true
select ... where foo = false
That is,
data = [ { "id": 1, "foo": true }, { "id": 2, "foo": false } ]; return select * from data where foo = true;
does not return any results.
Replacing the expression with id = 1 returns a single result, as expected.
id = 1
(Pull request #592 will fix this.)
Is anyone still working on ql.io? The http://ql.io/ domain doesn't even resolve right now.
@s3u @hochang
It's not possible to
select ... where foo = true
orselect ... where foo = false
.That is,
does not return any results.
Replacing the expression with
id = 1
returns a single result, as expected.