Fix invalid add of whitespace when there is where clause
This commit is contained in:
parent
53792b9c5c
commit
c748551f7f
2 changed files with 45 additions and 14 deletions
|
@ -146,6 +146,10 @@ impl Buffer {
|
|||
pub(crate) fn reserve(&mut self, additional: usize) {
|
||||
self.buffer.reserve(additional)
|
||||
}
|
||||
|
||||
pub(crate) fn len(&self) -> usize {
|
||||
self.buffer.len()
|
||||
}
|
||||
}
|
||||
|
||||
fn comma_sep<T: fmt::Display>(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue