From 23acccdf3054c65b6567affb157a9be8e50e9ba9 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 9 Sep 2025 14:31:04 +0000 Subject: [PATCH] chore: deprecate execute since it's too simplistic From the stream wheee Signed-off-by: R. Tyler Croy --- kernel/src/table_changes/scan.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kernel/src/table_changes/scan.rs b/kernel/src/table_changes/scan.rs index fa3b5d42c..bbe44d4cf 100644 --- a/kernel/src/table_changes/scan.rs +++ b/kernel/src/table_changes/scan.rs @@ -236,6 +236,10 @@ impl TableChangesScan { /// to read and process all the data for the query. Each [`ScanResult`] in the resultant iterator /// encapsulates the raw data and an optional boolean vector built from the deletion vector if it /// was present. See the documentation for [`ScanResult`] for more details. + #[deprecated( + since = "0.15.3", + note = "execute is a good example, but is too naive and will be removed in the near future" + )] pub fn execute( &self, engine: Arc,