Expand description
Shared JSON value operations: comparison, coercion, truthiness.
Used by both expression evaluation (computed projections) and scan filters
(WHERE predicate evaluation). Pure functions on serde_json::Value.
Functions§
- coerced_
eq - Check equality with type coercion.
- compare_
json - Compare two JSON values with type coercion.
- compare_
json_ optional - Compare two optional JSON values (for scan_filter compatibility).
- is_
truthy - Check if a JSON value is truthy (for boolean contexts).
- json_
to_ display_ string - Convert a JSON value to a display string.
- json_
to_ f64 - Coerce a JSON value to f64.
- to_
json_ number - Convert a f64 to a JSON number, preferring integer representation.