You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature/306 use arrow schema instead of parquet schema in gql and cli (#555)
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: draft
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: formatting
* Use Arrow schema instead of Parquet schema in GQL and CLI #306
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: updated Cargo.lock
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: updated Cargo.lock + corrections
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: removed unused dependency
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: changes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: changes after running clippy and tests
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes for tests
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: updated test group
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixing cargo files
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixing cargo files part 2
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixing cargo files part 3
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixing cargo files part 4
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixing cargo files part 5
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Use Arrow schema instead of Parquet schema in GQL and CLI #306: fixes after code review
* Final tweaks
* Restore schema default format to parquet-json, speed up block iteration
---------
Co-authored-by: Sergii Mikhtoniuk <mikhtoniuk@gmail.com>
Copy file name to clipboardExpand all lines: src/adapter/graphql/Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ async-graphql = { version = "6", features = ["chrono", "url", "apollo_tracing"]
36
36
async-trait = { version = "0.1", default-features = false }
37
37
cron = { version = "0.12.0", default-features = false }
38
38
chrono = "0.4"
39
-
datafusion = { version = "36", default-features = false } # TODO: Currently needed for type conversions but ideally should be encapsulated by kamu-core
39
+
datafusion = { version = "36", default-features = false, features = ["serde"] } # TODO: Currently needed for type conversions but ideally should be encapsulated by kamu-core
0 commit comments