From fa213903badeed7930059b432f479ccbdb112b62 Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:48:36 +0000 Subject: [PATCH 1/2] fix: replace exposed API key with placeholder in SQL example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6c3d70..2335de3 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Connect to orb using your credentials: create server my_orb_server foreign data wrapper orb_wrapper options ( - api_key '') + api_key '') ``` Create Foreign Table: From dac107b8f12821adba6baca92ad5317f2f1c6c7c Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:51:53 +0000 Subject: [PATCH 2/2] fix: add missing object crate features for pgrx dependency --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a871338..9c0c7d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17", "supabase-wrappers/pg17"] pg_test = [] [dependencies] -pgrx = "=0.12.6" +pgrx = { version = "=0.12.6", features = ["object-macho", "object-read-core"] } orb-billing = "0.11.0" supabase-wrappers = { version = "0.1.20", default-features = false } tokio = { version = "1", features = ["full"] }