(value: FFI_TableFunction)
| 264 | |
| 265 | impl From<FFI_TableFunction> for Arc<dyn TableFunctionImpl> { |
| 266 | fn from(value: FFI_TableFunction) -> Self { |
| 267 | if (value.library_marker_id)() == crate::get_library_marker_id() { |
| 268 | Arc::clone(value.inner()) |
| 269 | } else { |
| 270 | Arc::new(ForeignTableFunction(value)) |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | impl TableFunctionImpl for ForeignTableFunction { |
nothing calls this directly
no test coverage detected