1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Engine abstraction layer for query execution
use Result;
use RecordBatch;
use async_trait;
/// Core trait for query execution engines
///
/// The `Engine` trait provides a unified interface for executing SQL queries
/// and returning results as Arrow RecordBatch objects. This abstraction allows
/// the pipeline system to work with different execution engines while maintaining
/// a consistent interface.