Skip to content

Commit c3c98c3

Browse files
authored
Merge branch 'master' into refactor/cleanup-information-schema
2 parents d653059 + ad15769 commit c3c98c3

File tree

13 files changed

+1363
-643
lines changed

13 files changed

+1363
-643
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
.direnv
33
.envrc
4+
.vscode

Cargo.lock

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

datafusion-postgres/Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ 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 }
19+
async-trait = "0.1"
20+
bytes = "1.10.1"
21+
chrono = { version = "0.4", features = ["std"] }
2022
datafusion = { workspace = true }
21-
tokio = { version = "1.45", features = ["sync"] }
2223
futures = "0.3"
23-
async-trait = "0.1"
2424
log = "0.4"
25-
chrono = { version = "0.4", features = ["std"] }
25+
pgwire = { workspace = true }
26+
postgres-types = "0.2"
2627
rust_decimal = { version = "1.37", features = ["db-postgres"] }
28+
tokio = { version = "1.45", features = ["sync"] }

0 commit comments

Comments
 (0)