@@ -41,12 +41,12 @@ use stabby::vec::Vec as StabbyVec;
4141use tokio:: runtime:: Handle ;
4242
4343use super :: execution_plan:: FFI_ExecutionPlan ;
44- use super :: insert_op:: FFI_InsertOp ;
44+ use super :: insert_op:: FFiInsertOp ;
4545use crate :: arrow_wrappers:: WrappedSchema ;
4646use crate :: execution:: FFI_TaskContextProvider ;
4747use crate :: proto:: logical_extension_codec:: FFI_LogicalExtensionCodec ;
4848use crate :: session:: { FFI_SessionRef , ForeignSession } ;
49- use crate :: table_source:: { FFI_TableProviderFilterPushDown , FFI_TableType } ;
49+ use crate :: table_source:: { FfiTableProviderFilterPushDown , FFI_TableType } ;
5050use crate :: util:: { FFIResult , FfiOption , FfiResult } ;
5151use crate :: { df_result, rresult_return} ;
5252
@@ -125,14 +125,14 @@ pub struct FFI_TableProvider {
125125 provider : & FFI_TableProvider ,
126126 filters_serialized : StabbyVec < u8 > ,
127127 )
128- -> FFIResult < StabbyVec < FFI_TableProviderFilterPushDown > > ,
128+ -> FFIResult < StabbyVec < FfiTableProviderFilterPushDown > > ,
129129 > ,
130130
131131 insert_into : unsafe extern "C" fn (
132132 provider : & Self ,
133133 session : FFI_SessionRef ,
134134 input : & FFI_ExecutionPlan ,
135- insert_op : FFI_InsertOp ,
135+ insert_op : FFiInsertOp ,
136136 ) -> FfiFuture < FFIResult < FFI_ExecutionPlan > > ,
137137
138138 pub logical_codec : FFI_LogicalExtensionCodec ,
@@ -192,7 +192,7 @@ fn supports_filters_pushdown_internal(
192192 filters_serialized : & [ u8 ] ,
193193 task_ctx : & Arc < TaskContext > ,
194194 codec : & dyn LogicalExtensionCodec ,
195- ) -> Result < StabbyVec < FFI_TableProviderFilterPushDown > > {
195+ ) -> Result < StabbyVec < FfiTableProviderFilterPushDown > > {
196196 let filters = match filters_serialized. is_empty ( ) {
197197 true => vec ! [ ] ,
198198 false => {
@@ -216,7 +216,7 @@ fn supports_filters_pushdown_internal(
216216unsafe extern "C" fn supports_filters_pushdown_fn_wrapper (
217217 provider : & FFI_TableProvider ,
218218 filters_serialized : StabbyVec < u8 > ,
219- ) -> FFIResult < StabbyVec < FFI_TableProviderFilterPushDown > > {
219+ ) -> FFIResult < StabbyVec < FfiTableProviderFilterPushDown > > {
220220 let logical_codec: Arc < dyn LogicalExtensionCodec > = ( & provider. logical_codec ) . into ( ) ;
221221 let task_ctx = rresult_return ! ( <Arc <TaskContext >>:: try_from(
222222 & provider. logical_codec. task_ctx_provider
@@ -289,7 +289,7 @@ unsafe extern "C" fn insert_into_fn_wrapper(
289289 provider : & FFI_TableProvider ,
290290 session : FFI_SessionRef ,
291291 input : & FFI_ExecutionPlan ,
292- insert_op : FFI_InsertOp ,
292+ insert_op : FFiInsertOp ,
293293) -> FfiFuture < FFIResult < FFI_ExecutionPlan > > {
294294 let runtime = provider. runtime ( ) . clone ( ) ;
295295 let internal_provider = Arc :: clone ( provider. inner ( ) ) ;
@@ -533,7 +533,7 @@ impl TableProvider for ForeignTableProvider {
533533
534534 let rc = Handle :: try_current ( ) . ok ( ) ;
535535 let input = FFI_ExecutionPlan :: new ( input, rc) ;
536- let insert_op: FFI_InsertOp = insert_op. into ( ) ;
536+ let insert_op: FFiInsertOp = insert_op. into ( ) ;
537537
538538 let plan = unsafe {
539539 let maybe_plan =
0 commit comments