pub unsafe fn create_raw(
    registry: &FunctionRegistry,
    arguments: *const i8,
    named_arguments: *const i8,
    timezone: *const i8,
) -> Result<Box<dyn TableFunction>>Expand description
ยงSAFETY
This function is unsafe because it dereferences raw pointers.
For arguments, it expects a null-terminated UTF-8 string, it may be nullptr.
For named_arguments, it expects a null-terminated UTF-8 string, it may be nullptr.
For timezone, it expects a null-terminated UTF-8 string, it must be valid.