(&self, args: ScalarFunctionArgs)
| 85 | } |
| 86 | |
| 87 | fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> { |
| 88 | make_scalar_function(character_length, vec![])(&args.args) |
| 89 | } |
| 90 | |
| 91 | fn aliases(&self) -> &[String] { |
| 92 | &self.aliases |
nothing calls this directly
no test coverage detected