From 1a7bf932edda8d0be59ed61b886b35138bbd9e39 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Mon, 27 Jul 2026 08:26:27 -0700 Subject: [PATCH] fix: crash in new parser handling partitioned table DDL --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 662b1f8ee..b06d2f593 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "pg_raw_parse" version = "0.1.0" -source = "git+https://github.com/pgdogdev/pg_raw_parse.git?rev=457b7c9#457b7c91b72b2d4b55be991707dbdf0e784127a4" +source = "git+https://github.com/pgdogdev/pg_raw_parse.git?rev=4843f8bb01c1b7f844d2b8c43de551d3a493d333#4843f8bb01c1b7f844d2b8c43de551d3a493d333" dependencies = [ "bindgen 0.72.1", "cc", diff --git a/Cargo.toml b/Cargo.toml index 4ef0e72f3..203003d9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ edition = "2024" pgdog-plugin = { path = "./pgdog-plugin", version = "0.4.0", default-features = false } pgdog-config = { path = "./pgdog-config", version = "0.1.0" } pgdog-postgres-types = { path = "./pgdog-postgres-types"} -pg_raw_parse = { git = "https://github.com/pgdogdev/pg_raw_parse.git", rev = "457b7c9" } +pg_raw_parse = { git = "https://github.com/pgdogdev/pg_raw_parse.git", rev = "4843f8bb01c1b7f844d2b8c43de551d3a493d333" } bon = "3.9" schemars = { version = "1.2.1", features = ["uuid1"] } serde_json = "1.0"