We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
245a154
Implement the like operator:
select * from root where name like '%.txt'
select * from root where name like '%folder%'
select * from root where name like 'a-file.%'
21116ab
The release includes next queries:
select * from root where name = 'root.txt'
select * from root where name <> 'root.txt'
ae52fbf
The release supports next queries:
select * from root where isFile = true
select * from root where isFile = false
select * from root where isFile <> true
select * from root where isFile <> false
b9562d3
Support the following queries:
select * from root where isDirectory = true
select * from root where isDirectory = false
select * from root where isDirectory <> true
select * from root where isDirectory <> false
d38b23b
where
select * from root where size > 1000000
select * from root where size < 1000000
select * from root where size = 1000000
select * from root where size <> 1000000
2255c10
59127ec
Initial release