MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / format_string

Function format_string

src/repr/src/strconv.rs:608–614  ·  view source on GitHub ↗
(buf: &mut F, s: &str)

Source from the content-addressed store, hash-verified

606}
607
608pub fn format_string<F>(buf: &mut F, s: &str) -> Nestable
609where
610 F: FormatBuffer,
611{
612 buf.write_str(s);
613 Nestable::MayNeedEscaping
614}
615
616pub fn parse_pg_legacy_name(s: &str) -> String {
617 // To match PostgreSQL, we truncate the string to 64 bytes, while being

Callers 4

stringify_datumFunction · 0.85
encode_textMethod · 0.85
bench_format_list_nestedFunction · 0.85
miri_test_format_listFunction · 0.85

Calls 1

write_strMethod · 0.45

Tested by 1

miri_test_format_listFunction · 0.68