Skip to content

Commit

Permalink
no longer attempts to process deleted rows
Browse files Browse the repository at this point in the history
  • Loading branch information
cqr committed Oct 21, 2010
1 parent 0d9a484 commit 158d4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/etl/processor/check_exist_processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def should_check?

# Process the row
def process(row)
return row unless should_check?
return row unless should_check? || !row
conn = ETL::Engine.connection(target)
q = "SELECT * FROM #{table_name} WHERE "
conditions = []
Expand Down

0 comments on commit 158d4f0

Please sign in to comment.