fix: remove redudant quote

pull/24376/head
Nga Tran 2021-07-06 17:03:44 -04:00
parent 76789e5902
commit 8f172509b0
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ impl std::fmt::Display for ChunkAddr {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"Chunk('{}':'{}':'{}':{}')",
"Chunk('{}':'{}':'{}':{})",
self.db_name, self.table_name, self.partition_key, self.chunk_id
)
}