(&mut self, _argc: i32, name: &str)
| 60 | |
| 61 | impl<'vtab> VTabFind<'vtab> for FindTable { |
| 62 | fn find_function(&mut self, _argc: i32, name: &str) -> Option<FindResult> { |
| 63 | if name == "wrapped" { |
| 64 | let (f, p) = scalar_function_raw(wrapped); |
| 65 | return Some((f, None, Some(p.cast()))); |
| 66 | } |
| 67 | None |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | fn wrapped(context: *mut sqlite3_context, values: &[*mut sqlite3_value]) -> Result<()> { |
no test coverage detected