From e4c1a8d56067f0ca3c4a0ed1d9ee9ac7db4bfc64 Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Mon, 2 Mar 2026 18:06:06 +0800 Subject: [PATCH] chore: switch to released version of datafusion-pg-catalog --- Cargo.lock | 9 +++++---- Cargo.toml | 3 +-- flake.nix | 2 ++ 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 61be3bbcd4..593c37fbad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -643,9 +643,9 @@ dependencies = [ [[package]] name = "arrow-pg" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "648178d89ddfc58dec82298e8b419ad201a6807190cf92b324ea2b17a9a668d9" +checksum = "87077429e1f81c2a024d0a62eaec0bbc101913c0ba7ce676bf90d21a4dbc79f0" dependencies = [ "arrow 57.3.0", "arrow-schema 57.3.0", @@ -4036,8 +4036,9 @@ dependencies = [ [[package]] name = "datafusion-pg-catalog" -version = "0.15.0" -source = "git+https://github.com/GreptimeTeam/datafusion-postgres.git?rev=284cb351c02210dc60162b0ec70a71d35f33803d#284cb351c02210dc60162b0ec70a71d35f33803d" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69e170232116b48e2445e29127bd4834a694d68256c338749d7362421509e889" dependencies = [ "async-trait", "datafusion", diff --git a/Cargo.toml b/Cargo.toml index 801f95f1b9..8be4bd230e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -136,7 +136,7 @@ datafusion-functions-aggregate-common = "52.1" datafusion-functions-window-common = "52.1" datafusion-optimizer = "52.1" datafusion-orc = "0.7" -datafusion-pg-catalog = "0.15" +datafusion-pg-catalog = "0.15.1" datafusion-physical-expr = "52.1" datafusion-physical-plan = "52.1" datafusion-sql = "52.1" @@ -341,7 +341,6 @@ datafusion-optimizer = { git = "https://github.com/GreptimeTeam/datafusion.git", datafusion-physical-expr = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } datafusion-physical-expr-common = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } datafusion-physical-plan = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } -datafusion-pg-catalog = { git = "https://github.com/GreptimeTeam/datafusion-postgres.git", rev = "284cb351c02210dc60162b0ec70a71d35f33803d" } datafusion-datasource = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } datafusion-sql = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } datafusion-substrait = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" } diff --git a/flake.nix b/flake.nix index 0b43f46c5f..6a02f4f05f 100644 --- a/flake.nix +++ b/flake.nix @@ -15,6 +15,7 @@ let pkgs = nixpkgs.legacyPackages.${system}; buildInputs = with pkgs; [ + libz.out ]; lib = nixpkgs.lib; rustToolchain = fenix.packages.${system}.fromToolchainName { @@ -53,6 +54,7 @@ NIX_HARDENING_ENABLE = ""; LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ stdenv.cc.cc.lib + libz ]; }; });