1 2 3 4 5 6 7 8 9 10
use super::{Ident, Period, ToSql}; use crate::{serializer::ExprContext, stmt}; impl ToSql for &stmt::Name { fn to_sql(self, cx: &ExprContext<'_>, f: &mut super::Formatter<'_>) { let parts = Period(self.0.iter().map(Ident)); fmt!(cx, f, parts); } }