File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ pub enum KernelError {
263
263
InvalidTableLocationError ,
264
264
InvalidDecimalError ,
265
265
InvalidStructDataError ,
266
+ InternalError ,
266
267
}
267
268
268
269
impl From < Error > for KernelError {
@@ -303,6 +304,7 @@ impl From<Error> for KernelError {
303
304
Error :: InvalidTableLocation ( _) => KernelError :: InvalidTableLocationError ,
304
305
Error :: InvalidDecimal ( _) => KernelError :: InvalidDecimalError ,
305
306
Error :: InvalidStructData ( _) => KernelError :: InvalidStructDataError ,
307
+ Error :: InternalError ( _) => KernelError :: InternalError ,
306
308
Error :: Backtraced {
307
309
source,
308
310
backtrace : _,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use std::ffi::c_void;
5
5
use std:: sync:: { Arc , Mutex } ;
6
6
7
7
use delta_kernel:: scan:: state:: { visit_scan_files, DvInfo , GlobalScanState } ;
8
- use delta_kernel:: scan:: { Scan , ScanBuilder , ScanData } ;
8
+ use delta_kernel:: scan:: { Scan , ScanData } ;
9
9
use delta_kernel:: schema:: Schema ;
10
10
use delta_kernel:: snapshot:: Snapshot ;
11
11
use delta_kernel:: { DeltaResult , EngineData , Error } ;
You can’t perform that action at this time.
0 commit comments