Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
# set SDKROOT for C dependencies
export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
cd roapi && \
cargo build --bin roapi --features database --target aarch64-apple-darwin
cargo build --bin roapi --features database-sqlite,database-mysql --target aarch64-apple-darwin
- name: Trim cache
run: |
which cargo-cache || cargo install cargo-cache
Expand Down
91 changes: 85 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Data layer:
- [x] Google spreadsheet
- [x] MySQL
- [x] SQLite
- [ ] Postgres
- [x] Postgres
- [ ] Airtable
- Data format
- [x] CSV
Expand Down
7 changes: 5 additions & 2 deletions columnq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "src/lib.rs"
[dependencies]
# pulling arrow-schema manually to enable the serde feature.
# TODO: add serde feature in datafusion to avoid this workaround
arrow-schema = { version ="37.0.0", features = ["serde"] }
arrow-schema = { version = "37.0.0", features = ["serde"] }

datafusion = "23"
object_store = { version = "0.5.6", features = ["aws_profile", "gcp", "azure"] }
Expand All @@ -24,7 +24,7 @@ log = "0"
regex = "1"
lazy_static = "1"
graphql-parser = "0"
sqlparser = "0.33" # version need to be in sync with convergence
sqlparser = "0.33" # version need to be in sync with convergence
yup-oauth2 = { version = "6.2", default-features = false, features = [
"service_account",
] }
Expand All @@ -44,6 +44,7 @@ tokio = { version = "1", features = ["rt-multi-thread"] }
futures = "0.3"
hyper-tls = { version = "0.5.0", default-features = false, optional = true }
hyper-rustls = { version = "0.23.2", default-features = false, optional = true }
tokio-postgres = { version = "0.7.8", optional = true }

[dependencies.deltalake]
default-features = false
Expand Down Expand Up @@ -92,7 +93,9 @@ native-tls = [
simd = ["datafusion/simd"]
database-sqlite = ["connectorx/src_sqlite"]
database-mysql = ["connectorx/src_mysql"]
database-postgres = ["connectorx/src_postgres", "dep:tokio-postgres"]
database = [
"database-sqlite",
"database-mysql",
"database-postgres"
]
Loading