docker run --rm -p 5432:5432 pipelinedb/pipelinedb-postgresql-11
psql 'host=0 user=postgres' < schema.sql
This uses chromium's sqlite history. sqlite will fail to open this file if chromium is open.
sqlite3 ~/.config/chromium/Default/History \
"select url from urls where url like '%twitter.com/%status/%'" \
| psql 'host=0 user=postgres' -c '\copy input_stream(url) from stdin'
psql 'host=0 user=postgres' -c \
"select url from resources where indexed @@ websearch_to_tsquery('en', 'some words')"