Fix bug with DEFINE and PERMISSIONS statement formatting
This commit is contained in:
parent
c45d383b77
commit
2bf5075dc4
1 changed files with 2 additions and 2 deletions
|
@ -622,7 +622,7 @@ impl fmt::Display for DefineTableStatement {
|
|||
if let Some(ref v) = self.view {
|
||||
write!(f, " {}", v)?
|
||||
}
|
||||
write!(f, "{}", self.permissions)?;
|
||||
write!(f, " {}", self.permissions)?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
@ -840,7 +840,7 @@ impl fmt::Display for DefineFieldStatement {
|
|||
if let Some(ref v) = self.assert {
|
||||
write!(f, " ASSERT {}", v)?
|
||||
}
|
||||
write!(f, "{}", self.permissions)?;
|
||||
write!(f, " {}", self.permissions)?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue