Skip to content

Commit

Permalink
Remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Jun 3, 2024
1 parent b3dbb69 commit fa9b791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/mysql/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl QueryBuilder for MysqlQueryBuilder {
on_conflict_action: &Option<OnConflictAction>,
sql: &mut dyn SqlWriter,
) {
match dbg!(on_conflict_action) {
match on_conflict_action {
Some(OnConflictAction::DoNothing(pk_cols)) => {
if !pk_cols.is_empty() {
self.prepare_on_conflict_do_update_keywords(sql);
Expand Down

0 comments on commit fa9b791

Please sign in to comment.