sqlite-parquet-vtable/parquet/cmds.txt

25 lines
921 B
Plaintext
Raw Normal View History

.load ./libparquet
2018-03-04 01:00:50 +00:00
.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;
2018-03-04 01:00:50 +00:00
--select 'creating with valid file';
create virtual table parquet using parquet('/home/cldellow/src/csv2parquet/12m.parquet.snappy');
.tables
.timer on
.echo on
2018-03-04 01:00:50 +00:00
--select count(*) from (select * from parquet limit 1);
--select rowid,col0,col3,col9 from parquet where rowid > 5 limit 5;
2018-03-04 01:00:50 +00:00
--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 (col3 = 'Dawson Creeks') or col9 LIKE '%Bicycqq%' limit 20000;