pub fn build_copy_insert(
table: &str,
columns: Option<&[String]>,
values: &[Option<String>],
) -> StringExpand description
Build INSERT INTO <table> [(cols)] VALUES (…) from a decoded
row. Numeric-looking and boolean cells go in bare so the engine
sees typed literals; everything else is single-quoted with SQL
escaping.