Skip to content

Commit 4a3f6c3

Browse files
authored
refactor: extract standalone pg-catalog module (#196)
* refactor: extract standalone pg-catalog module * chore: format fix
1 parent 8e67d65 commit 4a3f6c3

File tree

97 files changed

+87
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+87
-29
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
members = ["datafusion-postgres", "datafusion-postgres-cli", "arrow-pg"]
3+
members = ["datafusion-postgres", "datafusion-postgres-cli", "arrow-pg", "datafusion-pg-catalog"]
44

55
[workspace.package]
66
version = "0.10.2"

datafusion-pg-catalog/Cargo.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[package]
2+
name = "datafusion-pg-catalog"
3+
description = "pg_catalog compatibility for datafusion"
4+
version.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
8+
keywords.workspace = true
9+
homepage.workspace = true
10+
repository.workspace = true
11+
documentation.workspace = true
12+
readme = "../README.md"
13+
rust-version.workspace = true
14+
include = [
15+
"src/**/*",
16+
"pg_catalog_arrow_exports/**/*",
17+
"Cargo.toml"
18+
]
19+
20+
[dependencies]
21+
async-trait = "0.1"
22+
datafusion.workspace = true
23+
futures.workspace = true
24+
log = "0.4"
25+
postgres-types.workspace = true
26+
tokio = { version = "1.47", features = ["sync"] }
27+
28+
[dev-dependencies]
29+
env_logger = "0.11"

0 commit comments

Comments
 (0)