working on #26, got column insertion working

This commit is contained in:
2025-11-13 17:24:13 -07:00
parent 755dbc70f1
commit 7c383028a3
6 changed files with 122 additions and 17 deletions

View File

@@ -280,8 +280,9 @@ impl Context for ExtractionContext {
fn get_value(&self, identifier: &str) -> Option<Value<Self::NumericTypes>> {
if let Ok(mut registry) = self.var_registry.write() {
registry.push(identifier.to_owned());
}
None
} else { panic!("The RwLock should always be write-able") }
Some(Value::Int(1))
}
fn call_function(
@@ -292,8 +293,9 @@ impl Context for ExtractionContext {
let _ = argument;
if let Ok(mut registry) = self.fn_registry.write() {
registry.push(identifier.to_owned())
}
Ok(Value::Empty)
} else { panic!("The RwLock should always be write-able") }
// Ok(Value::Int(1))
todo!();
}
fn are_builtin_functions_disabled(&self) -> bool {