mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
fix: wrong error msg in pipeline (#5937)
This commit is contained in:
@@ -436,7 +436,8 @@ fn coerce_string_value(s: &String, transform: &Transform) -> Result<Option<Value
|
||||
None => CoerceUnsupportedEpochTypeSnafu { ty: "String" }.fail(),
|
||||
},
|
||||
|
||||
Value::Array(_) | Value::Map(_) => CoerceJsonTypeToSnafu {
|
||||
Value::Array(_) | Value::Map(_) => CoerceStringToTypeSnafu {
|
||||
s,
|
||||
ty: transform.type_.to_str_type(),
|
||||
}
|
||||
.fail(),
|
||||
|
||||
Reference in New Issue
Block a user