refactor: remove unnecessary "to_owned()" call
This method now takes an owned name, so no need to call to_owned()!pull/24376/head
parent
ab666ea5fa
commit
18c6d9e306
|
@ -49,7 +49,7 @@ impl ColumnsByName {
|
|||
.into_iter()
|
||||
.map(|c| {
|
||||
(
|
||||
c.name.to_owned(),
|
||||
c.name,
|
||||
ColumnSchema {
|
||||
id: c.id,
|
||||
column_type: c.column_type,
|
||||
|
|
Loading…
Reference in New Issue