Skip to content

Commit d21f45f

Browse files
committed
Fixed @jamis remarks in pull request #19
1 parent 6df13eb commit d21f45f

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

Rakefile

-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ RDoc::Task.new(:rdoc) do |rdoc|
1414
rdoc.rdoc_files.include('lib/**/*.rb')
1515
end
1616

17-
18-
19-
20-
21-
2217
Bundler::GemHelper.install_tasks
2318

2419
require 'rake/testtask'

lib/bulk_insert/worker.rb

+3-7
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ def save!
7676
self
7777
end
7878

79-
private
80-
8179
def compose_insert_query
8280
sql = insert_sql_statement
8381
@now = Time.now
@@ -104,14 +102,12 @@ def compose_insert_query
104102
end
105103

106104
def insert_sql_statement
107-
ignore = nil
108-
ignore = 'IGNORE' if (adapter_name == 'MySQL') && @ignore
109-
"INSERT #{ignore} INTO #{@table_name} (#{@column_names}) VALUES "
105+
insert_ignore = 'IGNORE' if (adapter_name == 'MySQL') && ignore
106+
"INSERT #{insert_ignore} INTO #{@table_name} (#{@column_names}) VALUES "
110107
end
111108

112109
def on_conflict_statement
113-
return ' ON CONFLICT DO NOTHING' if (adapter_name == 'PostgreSQL') && @ignore
114-
''
110+
(adapter_name == 'PostgreSQL') && ignore ? ' ON CONFLICT DO NOTHING' : ''
115111
end
116112
end
117113
end

test/bulk_insert/worker_test.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class BulkInsertWorkerTest < ActiveSupport::TestCase
173173

174174
mysql_worker.add ["Yo", 15, false, nil, nil]
175175

176-
assert_equal mysql_worker.send(:compose_insert_query), "INSERT IGNORE INTO \"testings\" (\"greeting\",\"age\",\"happy\",\"created_at\",\"updated_at\",\"color\") VALUES ('Yo',15,'f',NULL,NULL,'chartreuse')"
176+
assert_equal mysql_worker.compose_insert_query, "INSERT IGNORE INTO \"testings\" (\"greeting\",\"age\",\"happy\",\"created_at\",\"updated_at\",\"color\") VALUES ('Yo',15,'f',NULL,NULL,'chartreuse')"
177177
end
178178

179179
test "adapter dependent postgresql methods" do
@@ -186,7 +186,7 @@ class BulkInsertWorkerTest < ActiveSupport::TestCase
186186
pgsql_worker.adapter_name = 'PostgreSQL'
187187
pgsql_worker.add ["Yo", 15, false, nil, nil]
188188

189-
assert_equal pgsql_worker.send(:compose_insert_query), "INSERT INTO \"testings\" (\"greeting\",\"age\",\"happy\",\"created_at\",\"updated_at\",\"color\") VALUES ('Yo',15,'f',NULL,NULL,'chartreuse') ON CONFLICT DO NOTHING"
189+
assert_equal pgsql_worker.compose_insert_query, "INSERT INTO \"testings\" (\"greeting\",\"age\",\"happy\",\"created_at\",\"updated_at\",\"color\") VALUES ('Yo',15,'f',NULL,NULL,'chartreuse') ON CONFLICT DO NOTHING"
190190

191191
end
192192
end

0 commit comments

Comments
 (0)