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 CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 3
2
+ :patch: 4
3
3
  :major: 0
4
4
  :minor: 8
@@ -22,7 +22,7 @@ class OracleBatchInsert < StandardBatchInsert
22
22
  rows.each do |row|
23
23
  str << "INTO #{table_name} #{columns_sql} VALUES #{row.insert_values_sql}"
24
24
  end
25
- str.join("\n") + "\nSELECT * from dual;"
25
+ str.join("\n") + "\nSELECT * from dual"
26
26
  end
27
27
  end
28
28
 
@@ -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 'activerecord'
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 table_name do |t|
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: GFunk911-dataload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Harris