From 94601f6d88bb3b76969ce1f19072cf33e2e69ac9 Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Mon, 4 Nov 2024 12:56:08 +0100 Subject: [PATCH] Remove deprecated and unused FileSinkExec type It was deprecated since 38.0.0, which was released 6 months ago. --- datafusion/physical-plan/src/insert.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/datafusion/physical-plan/src/insert.rs b/datafusion/physical-plan/src/insert.rs index e478cecb7ffc..ae8a2acce696 100644 --- a/datafusion/physical-plan/src/insert.rs +++ b/datafusion/physical-plan/src/insert.rs @@ -73,9 +73,6 @@ pub trait DataSink: DisplayAs + Debug + Send + Sync { ) -> Result; } -#[deprecated(since = "38.0.0", note = "Use [`DataSinkExec`] instead")] -pub type FileSinkExec = DataSinkExec; - /// Execution plan for writing record batches to a [`DataSink`] /// /// Returns a single row with the number of values written