]> git.openstreetmap.org Git - rails.git/commitdiff
Fall back to a pure ruby update implementation if the tile_for_point
authorTom Hughes <tom@compton.nu>
Fri, 28 Sep 2007 23:18:13 +0000 (23:18 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 28 Sep 2007 23:18:13 +0000 (23:18 +0000)
function is not present in MySQL.

db/migrate/005_tile_tracepoints.rb

index c0e6d8a61d5e25940a5e6e24023e356ef219a2fb..f4d27c18c50cb50adf9fb2e1dc3574f7275b98f8 100644 (file)
@@ -4,7 +4,15 @@ class TileTracepoints < ActiveRecord::Migration
     add_index "gps_points", ["tile"], :name => "points_tile_idx"
     remove_index "gps_points", :name => "points_idx"
 
-    Tracepoint.update_all("latitude = latitude * 10, longitude = longitude * 10, tile = tile_for_point(latitude * 10, longitude * 10)")
+    begin
+      Tracepoint.update_all("latitude = latitude * 10, longitude = longitude * 10, tile = tile_for_point(latitude * 10, longitude * 10)")
+    rescue ActiveRecord::StatementInvalid => ex
+      Tracepoint.find(:all).each do |tp|
+        tp.latitude = tp.latitude * 10
+        tp.longitude = tp.longitude * 10
+        tp.save!
+      end
+    end
   end
 
   def self.down