Helper to box a TableReadState and return a raw pointer.
(state: TableReadState)
| 51 | |
| 52 | // Helper to box a TableReadState and return a raw pointer. |
| 53 | unsafe fn box_table_read_state(state: TableReadState) -> *mut paimon_table_read { |
| 54 | let inner = Box::into_raw(Box::new(state)) as *mut c_void; |
| 55 | Box::into_raw(Box::new(paimon_table_read { inner })) |
| 56 | } |
| 57 | |
| 58 | // ======================= Table =============================== |
| 59 |
no outgoing calls
no test coverage detected