when no context is needed use Display Impl

This commit is contained in:
pedrocarlo
2025-06-03 12:46:56 -03:00
parent bfc8cb6d4c
commit 5f379fe2d6
10 changed files with 284 additions and 263 deletions

View File

@@ -108,7 +108,7 @@ impl ToSqlString for ast::Stmt {
" ({})",
columns
.iter()
.map(|col| col.to_sql_string(context))
.map(|col| col.to_string())
.collect::<Vec<_>>()
.join(", ")
)),