in crates/paimon/src/spec/types.rs [706:712]
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "TIMESTAMP({}) WITH LOCAL TIME ZONE", self.precision)?;
if !self.nullable {
write!(f, " NOT NULL")?;
}
Ok(())
}