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