seafowl icon indicating copy to clipboard operation
seafowl copied to clipboard

Analytical database for data-driven Web applications 🪶

Results 99 seafowl issues
Sort by recently updated
recently updated
newest added

Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 0.40.1 to 2.0.2. Commits a528e03 Release Wasmtime 2.0.2 (#5218) 087d9d7 Merge pull request from GHSA-h84q-m8rr-3v9q e60c374 Merge pull request from GHSA-44mr-8vmm-wjhg 2614f2e Merge pull request from GHSA-wh6w-3828-g9qf...

dependencies
rust

Bumps [clap](https://github.com/clap-rs/clap) from 3.2.23 to 4.0.22. Release notes Sourced from clap's releases. v4.0.22 [4.0.22] - 2022-11-07 Fixes (help) Don't overflow into next-line-help early due to stale (pre-v4) padding calculations v4.0.21...

dependencies
rust

curl -i -XPOST -H "Content-Type: application/json" \ -H "Authorization: Bearer $SEAFOWL_PASSWORD" \ https://demo.seafowl.io/q -d@-

ConnectorX: SQL-query-to-Arrow support for a bunch of databases (https://github.com/sfu-db/connector-x/blob/main/connectorx/src/sources/mod.rs) Used by ROAPI roo (https://github.com/roapi/roapi/blob/main/columnq/src/table/database.rs#L28-L43) but it seems to load the whole query result into memory. We want to use the...

```sql WITH old AS (SELECT * FROM socrata.dataset_history WHERE sg_image_tag = '20221024-120115'), new AS (SELECT * FROM socrata.dataset_history WHERE sg_image_tag = '20221031-000137') SELECT COALESCE(old.domain, new.domain) AS domain, COALESCE(old.id, new.id) AS...

Write an adapter that lets people run dbt models against Seafowl: https://docs.getdbt.com/guides/advanced/adapter-development/1-what-are-adapters#what-needs-to-be-adapted (probably two parts, a `seafowl-client` Python package + a `dbt-seafowl` adapter that uses it).

enhancement

This only happens on Fly.io (I think I tested this with the same Docker image locally and didn't get the issue): ```bash $ curl -iH "Content-Type: application/json" https://seafowl/q -d '{"query":...

https://github.com/splitgraph/seafowl/actions/runs/3338326864/attempts/1

bug

Support for querying / writing JSON values, similar to SQLite's support (https://www.sqlite.org/json1.html) and PG's support (https://www.postgresql.org/docs/14/functions-json.html). Ideally should be built as a separate crate (e.g. datafusion-json / seafowl-datafusion-json) that defines...

enhancement