1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00

Move source files to a more conventional layout

This commit is contained in:
Addie Morrison 2019-12-08 12:24:18 -06:00
parent e3a2837599
commit 226dc0b905
10 changed files with 0 additions and 39 deletions

View File

@ -1,25 +0,0 @@
.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;
select * from parquet limit 1;

View File

@ -1,14 +0,0 @@
#!/bin/bash
set -euo pipefail
cd "$(dirname ${BASH_SOURCE[0]})"
make
if [ ! -v DEBUG ]; then
../sqlite/sqlite3 -init ./cmds.txt < /dev/null
else
gdb -ex run --args ../sqlite/sqlite3 -init ./cmds.txt
fi