GFunk911-dataload 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/lib/dataload/batch_insert.rb +1 -1
- data/lib/dataload/table_loader.rb +3 -8
- metadata +1 -1
data/VERSION.yml
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'mharris_ext'
|
3
|
+
#require "/Code/mharris_ext/lib/mharris_ext"
|
3
4
|
require 'fastercsv'
|
4
|
-
require '
|
5
|
+
require 'active_record'
|
5
6
|
require 'facets/enumerable'
|
6
7
|
|
7
8
|
%w(migration column table_module batch_insert).each { |x| require File.dirname(__FILE__) + "/#{x}" }
|
@@ -38,17 +39,11 @@ class TableLoader
|
|
38
39
|
yield(target_hashes(rows),i*block_size+rows.size)
|
39
40
|
end
|
40
41
|
end
|
41
|
-
def next_pk
|
42
|
-
@next_pk ||= 1
|
43
|
-
@next_pk += 1
|
44
|
-
@next_pk
|
45
|
-
end
|
46
42
|
def load!
|
47
43
|
migrate!
|
48
44
|
Dataload.log "Starting load of table '#{table_name}'"
|
49
45
|
total = 0
|
50
46
|
target_hash_groups do |hs,num_inserted|
|
51
|
-
hs.each { |h| h[:id] = next_pk }
|
52
47
|
BatchInsert.get_class.new(:rows => hs, :table_name => table_name).insert!
|
53
48
|
Dataload.log "Inserted #{block_size} rows into table '#{table_name}'. Total of #{num_inserted} rows inserted."
|
54
49
|
total = num_inserted
|
@@ -60,7 +55,7 @@ end
|
|
60
55
|
module TableCreation
|
61
56
|
fattr(:migration) do
|
62
57
|
DataloadMigration.new_migration(:cols => columns, :table_name => table_name) do
|
63
|
-
create_table
|
58
|
+
create_table(table_name, :id => false) do |t|
|
64
59
|
cols.each do |col|
|
65
60
|
t.column col.target_name, :string
|
66
61
|
end
|