Skip to content

Commit 914f3f3

Browse files
committed
graph: Remove debug prefix from Timestamp value parse errors
The TIMESTAMP_SCALAR branch accidentally formatted parse failures as "xxx{value}". Report the invalid input string directly, consistent with other ValueParseError paths.
1 parent f031138 commit 914f3f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

graph/src/data/store/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ impl Value {
371371
Value::Timestamp(scalar::Timestamp::parse_timestamp(s).map_err(|_| {
372372
QueryExecutionError::ValueParseError(
373373
"Timestamp".to_string(),
374-
format!("xxx{}", s),
374+
format!("{}", s),
375375
)
376376
})?)
377377
}

0 commit comments

Comments
 (0)