Recently we moved most drivers in kino_db that already relied on ADBC to use only ADBC, and no longer depend on Explorer. The exceptions are req_ch and req_athena, which still use Explorer. We have three options:
- Continue using Explorer
- Use ADBC + DuckDB with read_parquet (we probably start a database and connection on the fly)
- Introduce a
%ReqCh.Result{} kind of structure that implements Table.Reader (so we probably decode JSON and then parse it)
Recently we moved most drivers in
kino_dbthat already relied on ADBC to use only ADBC, and no longer depend on Explorer. The exceptions arereq_chandreq_athena, which still use Explorer. We have three options:%ReqCh.Result{}kind of structure that implements Table.Reader (so we probably decode JSON and then parse it)