fix warnings and some refactoring

This commit is contained in:
Levy A. 2025-06-03 23:14:07 -03:00
parent 1881cd04b5
commit b88cb99ff0
5 changed files with 12 additions and 23 deletions

View file

@ -612,7 +612,7 @@ impl Func {
#[cfg(feature = "json")]
Self::Json(json_func) => json_func.is_deterministic(),
Self::External(external_func) => external_func.is_deterministic(),
Self::AlterTable(alter_func) => true,
Self::AlterTable(_) => true,
}
}
pub fn resolve_function(name: &str, arg_count: usize) -> Result<Self, LimboError> {