Skip to content

Commit

Permalink
fix: remove unnecessary whitespace in import processing loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Nov 22, 2024
1 parent 85a69d4 commit 249f34d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/engine/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ impl Import {

for statement in dump_content.split(';') {
let trimmed = statement.trim();

if !trimmed.is_empty() {
match conn.query_drop(trimmed) {
Ok(_) => {
Expand Down

0 comments on commit 249f34d

Please sign in to comment.