(
a: JsonbRef<'a>,
i: i64,
temp_storage: &'a RowArena,
)
| 1672 | |
| 1673 | #[sqlfunc(sqlname = "->>", is_infix_op = true)] |
| 1674 | fn jsonb_get_int64_stringify<'a>( |
| 1675 | a: JsonbRef<'a>, |
| 1676 | i: i64, |
| 1677 | temp_storage: &'a RowArena, |
| 1678 | ) -> Option<&'a str> { |
| 1679 | let json = jsonb_get_int64(a, i)?; |
| 1680 | jsonb_stringify(json.into_datum(), temp_storage) |
| 1681 | } |
| 1682 | |
| 1683 | #[sqlfunc(sqlname = "->", is_infix_op = true)] |
| 1684 | fn jsonb_get_string<'a>(a: JsonbRef<'a>, k: &str) -> Option<JsonbRef<'a>> { |
nothing calls this directly
no test coverage detected