activewarehouse-etl 0.7.1 → 0.7.2

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/CHANGELOG CHANGED
@@ -98,4 +98,7 @@
98
98
  * Updated README
99
99
 
100
100
  0.7.1 - Apr 8, 2007
101
- * Fixed source caching
101
+ * Fixed source caching
102
+
103
+ 0.7.2 - Apr 8, 2007
104
+ * Fixed quoting bug in CheckExistProcessor
@@ -56,7 +56,7 @@ module ETL #:nodoc:
56
56
  conditions = []
57
57
  row.each do |k,v|
58
58
  if columns.nil? || columns.include?(k.to_sym)
59
- conditions << "#{k} = '#{connection.quote_value(v)}'" unless skip?(k)
59
+ conditions << "#{k} = #{connection.quote(v)}" unless skip?(k)
60
60
  end
61
61
  end
62
62
  q << conditions.join(" AND ")
@@ -2,7 +2,7 @@ module ETL#:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 7
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0.10
3
3
  specification_version: 1
4
4
  name: activewarehouse-etl
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.7.1
6
+ version: 0.7.2
7
7
  date: 2007-04-08 00:00:00 -04:00
8
8
  summary: Pure Ruby ETL package.
9
9
  require_paths: