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
42
43
44
45
46
47
48
//! Error types for the `rhei-core` crate.
//!
//! All fallible operations in this crate return [`CoreError`]. Concrete engine
//! crates define their own error types but map into `CoreError` when crossing
//! the shared trait boundary.
use Error;
/// Top-level error type for `rhei-core` operations.
///
/// Variants cover schema-registry operations and Arrow type conversions.
/// Concrete engine errors (OLTP/OLAP) are defined in their respective crates
/// and do **not** flow through this type unless explicitly wrapped.