(
a: JsonbRef<'a>,
k: &str,
temp_storage: &'a RowArena,
)
| 1689 | |
| 1690 | #[sqlfunc(sqlname = "->>", is_infix_op = true)] |
| 1691 | fn jsonb_get_string_stringify<'a>( |
| 1692 | a: JsonbRef<'a>, |
| 1693 | k: &str, |
| 1694 | temp_storage: &'a RowArena, |
| 1695 | ) -> Option<&'a str> { |
| 1696 | let v = jsonb_get_string(a, k)?; |
| 1697 | jsonb_stringify(v.into_datum(), temp_storage) |
| 1698 | } |
| 1699 | |
| 1700 | #[sqlfunc(sqlname = "#>", is_infix_op = true)] |
| 1701 | fn jsonb_get_path<'a>(mut json: JsonbRef<'a>, b: Array<'a>) -> Option<JsonbRef<'a>> { |
nothing calls this directly
no test coverage detected