deprecated function removed, no need for backup

This commit is contained in:
filipriec
2025-07-13 08:51:47 +02:00
parent 17495c49ac
commit de42bb48aa
4 changed files with 24 additions and 38 deletions

View File

@@ -39,8 +39,13 @@ async fn discover_steel_decimal_output(
script.to_string(),
"STRINGS",
Arc::new(pool.clone()),
context,
).map_err(|e| format!("Script execution failed: {}", e))?;
1,
"test_schema".to_string(),
"test_table".to_string(),
input_data,
)
.await
.map_err(|e| format!("Script execution failed: {}", e))?;
let Value::Strings(mut script_output) = script_result else {
return Err("Script must return string values".to_string());