(table: *mut paimon_table)
| 63 | /// Only call with a table returned from `paimon_catalog_get_table`. |
| 64 | #[no_mangle] |
| 65 | pub unsafe extern "C" fn paimon_table_free(table: *mut paimon_table) { |
| 66 | free_table_wrapper(table, |t| t.inner); |
| 67 | } |
| 68 | |
| 69 | /// Create a new ReadBuilder from a Table. |
| 70 | /// |
nothing calls this directly
no test coverage detected