mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 08:04:25 +00:00
fix(postgres): add uuid support as input
This commit is contained in:
@@ -114,7 +114,6 @@ pub async fn do_postgresql(
|
||||
.as_ref()
|
||||
.ok_or_else(|| anyhow::anyhow!("Missing otyp for pg arg"))?
|
||||
.to_owned();
|
||||
tracing::info!("arg_t: {}", arg_t);
|
||||
let boxed: windmill_common::error::Result<Box<dyn ToSql + Sync + Send>> = match value {
|
||||
Value::Null => Ok(Box::new(None::<bool>)),
|
||||
Value::Bool(b) => Ok(Box::new(b.clone())),
|
||||
|
||||
Reference in New Issue
Block a user