Skip to content

Commit 99866b4

Browse files
committed
Refactor and encode struct types
1 parent 372a7cb commit 99866b4

File tree

9 files changed

+991
-646
lines changed

9 files changed

+991
-646
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ members = ["datafusion-postgres", "datafusion-postgres-cli"]
44

55
[workspace.dependencies]
66
pgwire = "0.28"
7-
postgres-types = "0.2"
87
datafusion = { version = "46", default-features = false }
98
tokio = { version = "1", default-features = false }
109

datafusion-postgres/Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ readme = "../README.md"
1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1717

1818
[dependencies]
19-
pgwire = { workspace = true }
20-
postgres-types = { workspace = true }
21-
datafusion = { workspace = true }
22-
tokio = { version = "1.45", features = ["sync"] }
2319
arrow = "54.2.0"
24-
futures = "0.3"
2520
async-trait = "0.1"
26-
log = "0.4"
21+
bytes = "1.10.1"
2722
chrono = { version = "0.4", features = ["std"] }
23+
datafusion = { workspace = true }
24+
futures = "0.3"
25+
log = "0.4"
26+
pgwire = { workspace = true }
27+
postgres-types = "0.2"
2828
rust_decimal = { version = "1.37", features = ["db-postgres"] }
29+
tokio = { version = "1.45", features = ["sync"] }

0 commit comments

Comments
 (0)