(
a: JsonbRef<'a>,
b: Array<'a>,
temp_storage: &'a RowArena,
)
| 1728 | |
| 1729 | #[sqlfunc(sqlname = "#>>", is_infix_op = true)] |
| 1730 | fn jsonb_get_path_stringify<'a>( |
| 1731 | a: JsonbRef<'a>, |
| 1732 | b: Array<'a>, |
| 1733 | temp_storage: &'a RowArena, |
| 1734 | ) -> Option<&'a str> { |
| 1735 | let json = jsonb_get_path(a, b)?; |
| 1736 | jsonb_stringify(json.into_datum(), temp_storage) |
| 1737 | } |
| 1738 | |
| 1739 | #[sqlfunc(is_infix_op = true, sqlname = "?")] |
| 1740 | fn jsonb_contains_string<'a>(a: JsonbRef<'a>, k: &str) -> bool { |
nothing calls this directly
no test coverage detected