//! Postgres identifier quoting.
//!
//! View and schema names are derived from user-supplied migration names and table
//! names, so every identifier is quoted rather than interpolated bare.
/// Quotes an identifier for Postgres, escaping embedded double quotes.
/// Quotes a string literal for Postgres, escaping embedded single quotes.
/// Quotes a possibly schema-qualified pair as `"schema"."name"`.