.load ./libparquet .headers on --select 'creating without enough args'; --create virtual table noargs using parquet; --select 'creating with invalid file'; --create virtual table nonexistent using parquet('nonexistent'); --select 'creating others'; --create virtual table others using parquet('/home/cldellow/src/parquet-vtable/parquet/others.parquet'); --select * from others limit 1; --select 'creating with valid file'; create virtual table parquet using parquet('/home/cldellow/src/csv2parquet/12m.parquet.snappy'); .tables .timer on .echo on --select count(*) from (select * from parquet limit 1); --select rowid,col0,col3,col9 from parquet where rowid > 5 limit 5; --select count(*) from parquet limit 1; --select sum(col0) from parquet limit 1; --select * from parquet limit 10; --select sum(length(col3)) from parquet; select * from parquet where rowid = 123 or (col3 = 'Dawson Creeks') or col9 LIKE '%Bicycqq%' limit 20000;