paginative 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 865d0fdb9adf712db06ecc31b3259f526f765221
4
- data.tar.gz: 8bdafeff233b65de1e76abfd480acae4ae51eb7e
3
+ metadata.gz: 3fb0fa9e4cd0064617628ce312df8b7d7daad6f3
4
+ data.tar.gz: 3478e36c51061caf47420cbb6035e341234ba2cf
5
5
  SHA512:
6
- metadata.gz: 3ba4955ebb169139470e797cd4b680b4379770df573c52bba5b2f9da78dfa231d3adcd96f505d87fb95386d5bb6766dda76915b2e1c0f06a194a9a4c5ff279fe
7
- data.tar.gz: 5f2ee68e1418285481855e1334574c4b2461dce04ee4cef33a537aae19bb497234e92b73215f90d567919bfcd87f0374c229b1c460e27338724d2bccd3385dcd
6
+ metadata.gz: a80c2bcdf09c1fa916ee89fc13dc7f9b3d3f1763028d1dc056dced43b0b7709f0e9d9ea94e81f09bf1918a911aa5d012f23da916e3c942e71a849aa3553c8687
7
+ data.tar.gz: efd5ec4b0265c09e3b46cea38de2dda1e495516ca0b04dd3ca7d667dae3be468505344c3d72ccbd778f61315f94bf16e5fcbdc3bf05676f3490fb2981e80ea28
@@ -36,8 +36,9 @@ module Paginative
36
36
 
37
37
  self.order(sanitized_ordering(self.table_name, field, order)).where("#{self.table_name}.#{primary_sort_field} >= ? AND (#{self.table_name}.#{primary_sort_field} != ? OR #{self.table_name}.#{secondary_sort_field} > ?)", primary_value, primary_value, secondary_value)
38
38
  else
39
- return self.order(sanitized_ordering(self.table_name, field, order)).where("#{field} < ?", value).limit(limit) if order.try(:downcase) == "desc"
40
- self.order(sanitized_ordering(self.table_name, field, order)).where("#{field} > ?", value).limit(limit)
39
+ value = value.to_i if self.column_for_attribute(field).type == :integer
40
+ return self.order(sanitized_ordering(self.table_name, field, order)).where("#{self.table_name}.#{field} < ?", value).limit(limit) if order.try(:downcase) == "desc"
41
+ self.order(sanitized_ordering(self.table_name, field, order)).where("#{self.table_name}.#{field} > ?", value).limit(limit)
41
42
  end
42
43
  end
43
44
  end
@@ -1,3 +1,3 @@
1
1
  module Paginative
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
@@ -60128,3 +60128,650 @@ Connecting to database specified by database.yml
60128
60128
   (0.0ms) RELEASE SAVEPOINT active_record_1
60129
60129
  TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (test_models.latitude >= 150 AND (test_models.latitude != 150 OR test_models.longitude > 12)) ORDER BY test_models.latitude ASC, test_models.longitude ASC
60130
60130
   (0.7ms) rollback transaction
60131
+ Connecting to database specified by database.yml
60132
+  (0.3ms) begin transaction
60133
+  (0.1ms) SAVEPOINT active_record_1
60134
+ SQL (6.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "b"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60136
+ TestModel Load (0.6ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 1 OFFSET 0
60137
+  (0.7ms) rollback transaction
60138
+  (0.0ms) begin transaction
60139
+  (0.1ms) SAVEPOINT active_record_1
60140
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "c"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60142
+  (0.1ms) SAVEPOINT active_record_1
60143
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "d"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60145
+  (0.1ms) SAVEPOINT active_record_1
60146
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "e"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60148
+  (0.1ms) SAVEPOINT active_record_1
60149
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "f"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60151
+  (0.1ms) SAVEPOINT active_record_1
60152
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "g"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60154
+  (0.1ms) SAVEPOINT active_record_1
60155
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "h"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60157
+  (0.1ms) SAVEPOINT active_record_1
60158
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "i"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60160
+  (0.0ms) SAVEPOINT active_record_1
60161
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "j"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60163
+  (0.1ms) SAVEPOINT active_record_1
60164
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "k"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60166
+  (0.0ms) SAVEPOINT active_record_1
60167
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "l"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60169
+  (0.1ms) SAVEPOINT active_record_1
60170
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "m"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60172
+  (0.0ms) SAVEPOINT active_record_1
60173
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "n"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60175
+  (0.1ms) SAVEPOINT active_record_1
60176
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "o"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60178
+  (0.0ms) SAVEPOINT active_record_1
60179
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "p"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60181
+  (0.1ms) SAVEPOINT active_record_1
60182
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "q"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60184
+  (0.0ms) SAVEPOINT active_record_1
60185
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "r"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60187
+  (0.0ms) SAVEPOINT active_record_1
60188
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "s"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60190
+  (0.0ms) SAVEPOINT active_record_1
60191
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "t"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60193
+  (0.1ms) SAVEPOINT active_record_1
60194
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "u"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60196
+  (0.1ms) SAVEPOINT active_record_1
60197
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "v"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60199
+  (0.0ms) SAVEPOINT active_record_1
60200
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "w"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60202
+  (0.0ms) SAVEPOINT active_record_1
60203
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "x"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60205
+  (0.1ms) SAVEPOINT active_record_1
60206
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "y"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60208
+  (0.0ms) SAVEPOINT active_record_1
60209
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "z"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60211
+  (0.1ms) SAVEPOINT active_record_1
60212
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aa"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60214
+  (0.0ms) SAVEPOINT active_record_1
60215
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60217
+  (0.1ms) SAVEPOINT active_record_1
60218
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ac"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60220
+  (0.0ms) SAVEPOINT active_record_1
60221
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ad"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60223
+  (0.1ms) SAVEPOINT active_record_1
60224
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ae"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60226
+  (0.0ms) SAVEPOINT active_record_1
60227
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "af"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60229
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -38.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 10 OFFSET 0
60230
+  (2.7ms) rollback transaction
60231
+  (0.1ms) begin transaction
60232
+  (0.0ms) SAVEPOINT active_record_1
60233
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ag"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60235
+  (0.1ms) SAVEPOINT active_record_1
60236
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ah"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60238
+  (0.0ms) SAVEPOINT active_record_1
60239
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ai"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60241
+  (0.1ms) SAVEPOINT active_record_1
60242
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aj"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60244
+  (0.1ms) SAVEPOINT active_record_1
60245
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ak"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60247
+  (0.1ms) SAVEPOINT active_record_1
60248
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "al"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60250
+  (0.1ms) SAVEPOINT active_record_1
60251
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "am"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60253
+  (0.1ms) SAVEPOINT active_record_1
60254
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "an"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60256
+  (0.1ms) SAVEPOINT active_record_1
60257
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ao"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60259
+  (0.1ms) SAVEPOINT active_record_1
60260
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ap"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60262
+  (0.1ms) SAVEPOINT active_record_1
60263
+ SQL (0.7ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aq"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60265
+  (0.1ms) SAVEPOINT active_record_1
60266
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ar"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60268
+  (0.1ms) SAVEPOINT active_record_1
60269
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "as"], ["updated_at", Fri, 17 Apr 2015 06:35:22 UTC +00:00]]
60270
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60271
+  (0.1ms) SAVEPOINT active_record_1
60272
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "at"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60274
+  (0.1ms) SAVEPOINT active_record_1
60275
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "au"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60277
+  (0.1ms) SAVEPOINT active_record_1
60278
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "av"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60280
+  (0.1ms) SAVEPOINT active_record_1
60281
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aw"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60282
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60283
+  (0.1ms) SAVEPOINT active_record_1
60284
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ax"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60285
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60286
+  (0.1ms) SAVEPOINT active_record_1
60287
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ay"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60289
+  (0.1ms) SAVEPOINT active_record_1
60290
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "az"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60292
+  (0.1ms) SAVEPOINT active_record_1
60293
+ SQL (1.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60295
+  (0.1ms) SAVEPOINT active_record_1
60296
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bb"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60297
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60298
+  (0.1ms) SAVEPOINT active_record_1
60299
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bc"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60301
+  (0.1ms) SAVEPOINT active_record_1
60302
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bd"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60303
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60304
+  (0.1ms) SAVEPOINT active_record_1
60305
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "be"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60307
+  (0.1ms) SAVEPOINT active_record_1
60308
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bf"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60310
+  (0.1ms) SAVEPOINT active_record_1
60311
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bg"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60313
+  (0.1ms) SAVEPOINT active_record_1
60314
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bh"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60316
+  (0.1ms) SAVEPOINT active_record_1
60317
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bi"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60319
+  (0.1ms) SAVEPOINT active_record_1
60320
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bj"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60322
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 25 OFFSET 0
60323
+  (0.6ms) rollback transaction
60324
+  (0.1ms) begin transaction
60325
+  (0.1ms) SAVEPOINT active_record_1
60326
+ SQL (0.8ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.0], ["longitude", 144.0], ["name", "bk"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60328
+  (0.1ms) SAVEPOINT active_record_1
60329
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", 0.0], ["longitude", 0.0], ["name", "bl"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60331
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 100) LIMIT 25 OFFSET 0
60332
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 100) LIMIT 1 OFFSET 0
60333
+  (0.6ms) rollback transaction
60334
+  (0.1ms) begin transaction
60335
+  (0.1ms) SAVEPOINT active_record_1
60336
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Lorem"], ["created_at", Wed, 15 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bm"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60338
+  (0.1ms) SAVEPOINT active_record_1
60339
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Ipsum"], ["created_at", Thu, 16 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bn"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60341
+  (0.1ms) SAVEPOINT active_record_1
60342
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "New York"], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bo"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60344
+  (0.1ms) SAVEPOINT active_record_1
60345
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "BroadWay"], ["created_at", Sat, 18 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bp"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60347
+  (0.1ms) SAVEPOINT active_record_1
60348
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Island St"], ["created_at", Sun, 19 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bq"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60350
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (created_at > '2015-04-17 06:35:23.313363') ORDER BY test_models.created_at ASC LIMIT 25
60351
+  (0.7ms) rollback transaction
60352
+  (0.0ms) begin transaction
60353
+  (0.1ms) SAVEPOINT active_record_1
60354
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "br"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60356
+  (0.1ms) SAVEPOINT active_record_1
60357
+ SQL (0.8ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bs"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60359
+  (0.1ms) SAVEPOINT active_record_1
60360
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bt"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60362
+  (0.1ms) SAVEPOINT active_record_1
60363
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bu"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60365
+  (0.1ms) SAVEPOINT active_record_1
60366
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bv"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60368
+  (0.0ms) SAVEPOINT active_record_1
60369
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bw"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60371
+  (0.1ms) SAVEPOINT active_record_1
60372
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bx"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60374
+  (0.0ms) SAVEPOINT active_record_1
60375
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "by"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60377
+  (0.1ms) SAVEPOINT active_record_1
60378
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bz"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60380
+  (0.1ms) SAVEPOINT active_record_1
60381
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ca"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60383
+  (0.1ms) SAVEPOINT active_record_1
60384
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cb"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60386
+  (0.0ms) SAVEPOINT active_record_1
60387
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cc"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60389
+  (0.1ms) SAVEPOINT active_record_1
60390
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cd"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60392
+  (0.0ms) SAVEPOINT active_record_1
60393
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ce"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60395
+  (0.1ms) SAVEPOINT active_record_1
60396
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cf"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60398
+  (0.1ms) SAVEPOINT active_record_1
60399
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cg"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60401
+  (0.1ms) SAVEPOINT active_record_1
60402
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ch"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60404
+  (0.1ms) SAVEPOINT active_record_1
60405
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ci"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60407
+  (0.0ms) SAVEPOINT active_record_1
60408
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cj"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60410
+  (0.1ms) SAVEPOINT active_record_1
60411
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ck"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60413
+  (0.1ms) SAVEPOINT active_record_1
60414
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cl"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60416
+  (0.1ms) SAVEPOINT active_record_1
60417
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cm"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60419
+  (0.1ms) SAVEPOINT active_record_1
60420
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cn"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60422
+  (0.1ms) SAVEPOINT active_record_1
60423
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "co"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60425
+  (0.1ms) SAVEPOINT active_record_1
60426
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cp"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60428
+  (0.1ms) SAVEPOINT active_record_1
60429
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cq"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60431
+  (0.1ms) SAVEPOINT active_record_1
60432
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cr"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60434
+  (0.1ms) SAVEPOINT active_record_1
60435
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cs"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60437
+  (0.1ms) SAVEPOINT active_record_1
60438
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ct"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60440
+  (0.1ms) SAVEPOINT active_record_1
60441
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cu"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60443
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "test_models" WHERE (created_at > '2015-04-16 06:35:23.615739') LIMIT 25) subquery_for_count
60444
+  (1.7ms) rollback transaction
60445
+  (0.0ms) begin transaction
60446
+  (0.1ms) SAVEPOINT active_record_1
60447
+ SQL (0.6ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cv"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60449
+  (0.1ms) SAVEPOINT active_record_1
60450
+ SQL (0.6ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Thu, 16 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cw"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60452
+  (0.1ms) SAVEPOINT active_record_1
60453
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Wed, 15 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cx"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60455
+  (0.1ms) SAVEPOINT active_record_1
60456
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Tue, 14 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cy"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60458
+  (0.1ms) SAVEPOINT active_record_1
60459
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Mon, 13 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cz"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60460
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60461
+  (0.1ms) SAVEPOINT active_record_1
60462
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Sun, 12 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "da"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60464
+  (0.1ms) SAVEPOINT active_record_1
60465
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Sat, 11 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "db"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60466
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60467
+  (0.1ms) SAVEPOINT active_record_1
60468
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 10 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dc"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60470
+  (0.1ms) SAVEPOINT active_record_1
60471
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Thu, 09 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dd"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60473
+  (0.0ms) SAVEPOINT active_record_1
60474
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Wed, 08 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "de"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60476
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "test_models" WHERE (created_at > '2015-04-12 06:35:23.717646') LIMIT 25) subquery_for_count 
60477
+  (0.8ms) rollback transaction
60478
+  (0.1ms) begin transaction
60479
+  (0.1ms) SAVEPOINT active_record_1
60480
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "df"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60482
+  (0.1ms) SAVEPOINT active_record_1
60483
+ SQL (0.8ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dg"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60485
+  (0.6ms) rollback transaction
60486
+  (0.1ms) begin transaction
60487
+  (0.1ms) SAVEPOINT active_record_1
60488
+ SQL (0.9ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Lorem"], ["created_at", Wed, 15 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dh"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60490
+  (0.1ms) SAVEPOINT active_record_1
60491
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Ipsum"], ["created_at", Thu, 16 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "di"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60493
+  (0.1ms) SAVEPOINT active_record_1
60494
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "New York"], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dj"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60496
+  (0.1ms) SAVEPOINT active_record_1
60497
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "BroadWay"], ["created_at", Sat, 18 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dk"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60499
+  (0.1ms) SAVEPOINT active_record_1
60500
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Island St"], ["created_at", Sun, 19 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dl"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60502
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id > 3) ORDER BY test_models.id ASC LIMIT 25
60503
+  (0.9ms) rollback transaction
60504
+  (0.0ms) begin transaction
60505
+  (0.1ms) SAVEPOINT active_record_1
60506
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dm"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60508
+  (0.1ms) SAVEPOINT active_record_1
60509
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dn"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60511
+  (0.1ms) SAVEPOINT active_record_1
60512
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "do"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60514
+  (0.1ms) SAVEPOINT active_record_1
60515
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dp"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60517
+  (0.0ms) SAVEPOINT active_record_1
60518
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dq"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60520
+  (0.1ms) SAVEPOINT active_record_1
60521
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dr"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60523
+  (0.0ms) SAVEPOINT active_record_1
60524
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ds"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60526
+  (0.1ms) SAVEPOINT active_record_1
60527
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dt"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60529
+  (0.0ms) SAVEPOINT active_record_1
60530
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "du"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60532
+  (0.1ms) SAVEPOINT active_record_1
60533
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dv"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60535
+  (0.1ms) SAVEPOINT active_record_1
60536
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dw"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60538
+  (0.0ms) SAVEPOINT active_record_1
60539
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dx"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60541
+  (0.0ms) SAVEPOINT active_record_1
60542
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dy"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60544
+  (0.0ms) SAVEPOINT active_record_1
60545
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dz"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60547
+  (0.0ms) SAVEPOINT active_record_1
60548
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ea"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60550
+  (0.1ms) SAVEPOINT active_record_1
60551
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eb"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60553
+  (0.1ms) SAVEPOINT active_record_1
60554
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ec"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60556
+  (0.1ms) SAVEPOINT active_record_1
60557
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ed"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60559
+  (0.1ms) SAVEPOINT active_record_1
60560
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ee"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60562
+  (0.1ms) SAVEPOINT active_record_1
60563
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ef"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60565
+  (0.1ms) SAVEPOINT active_record_1
60566
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eg"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60568
+  (0.1ms) SAVEPOINT active_record_1
60569
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eh"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60571
+  (0.1ms) SAVEPOINT active_record_1
60572
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ei"], ["updated_at", Fri, 17 Apr 2015 06:35:23 UTC +00:00]]
60573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60574
+  (0.1ms) SAVEPOINT active_record_1
60575
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ej"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60576
+  (0.2ms) RELEASE SAVEPOINT active_record_1
60577
+  (0.1ms) SAVEPOINT active_record_1
60578
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ek"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60580
+  (0.1ms) SAVEPOINT active_record_1
60581
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "el"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60583
+  (0.1ms) SAVEPOINT active_record_1
60584
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "em"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60586
+  (0.1ms) SAVEPOINT active_record_1
60587
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "en"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60589
+  (0.1ms) SAVEPOINT active_record_1
60590
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eo"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60592
+  (0.1ms) SAVEPOINT active_record_1
60593
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ep"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60595
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
60596
+ :name: :asc
60597
+ ' LIMIT 25 OFFSET 0
60598
+  (2.6ms) rollback transaction
60599
+  (0.1ms) begin transaction
60600
+  (0.1ms) SAVEPOINT active_record_1
60601
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eq"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60603
+  (0.4ms) rollback transaction
60604
+  (0.0ms) begin transaction
60605
+  (0.1ms) SAVEPOINT active_record_1
60606
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "er"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60608
+  (0.0ms) SAVEPOINT active_record_1
60609
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "es"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60611
+  (0.1ms) SAVEPOINT active_record_1
60612
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "et"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60614
+  (0.0ms) SAVEPOINT active_record_1
60615
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eu"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60617
+  (0.1ms) SAVEPOINT active_record_1
60618
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ev"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60620
+  (0.1ms) SAVEPOINT active_record_1
60621
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ew"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60623
+  (0.1ms) SAVEPOINT active_record_1
60624
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ex"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60626
+  (0.1ms) SAVEPOINT active_record_1
60627
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ey"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60629
+  (0.1ms) SAVEPOINT active_record_1
60630
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ez"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60632
+  (0.1ms) SAVEPOINT active_record_1
60633
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fa"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60635
+  (0.1ms) SAVEPOINT active_record_1
60636
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fb"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60638
+  (0.1ms) SAVEPOINT active_record_1
60639
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60641
+  (0.1ms) SAVEPOINT active_record_1
60642
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fd"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60644
+  (0.1ms) SAVEPOINT active_record_1
60645
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fe"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60647
+  (0.0ms) SAVEPOINT active_record_1
60648
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ff"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60650
+  (0.1ms) SAVEPOINT active_record_1
60651
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fg"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60653
+  (0.0ms) SAVEPOINT active_record_1
60654
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fh"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60656
+  (0.1ms) SAVEPOINT active_record_1
60657
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fi"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60659
+  (0.0ms) SAVEPOINT active_record_1
60660
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fj"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60662
+  (0.1ms) SAVEPOINT active_record_1
60663
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fk"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60665
+  (0.1ms) SAVEPOINT active_record_1
60666
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fl"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60667
+  (0.2ms) RELEASE SAVEPOINT active_record_1
60668
+  (0.1ms) SAVEPOINT active_record_1
60669
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fm"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60671
+  (0.0ms) SAVEPOINT active_record_1
60672
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fn"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60674
+  (0.0ms) SAVEPOINT active_record_1
60675
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fo"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60677
+  (0.0ms) SAVEPOINT active_record_1
60678
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fp"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60680
+  (0.1ms) SAVEPOINT active_record_1
60681
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fq"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60683
+  (0.0ms) SAVEPOINT active_record_1
60684
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fr"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60686
+  (0.0ms) SAVEPOINT active_record_1
60687
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fs"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60689
+  (0.0ms) SAVEPOINT active_record_1
60690
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ft"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60692
+  (0.1ms) SAVEPOINT active_record_1
60693
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fu"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60695
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
60696
+ :name: :asc
60697
+ ' LIMIT 25 OFFSET 0
60698
+  (2.3ms) rollback transaction
60699
+  (0.1ms) begin transaction
60700
+  (0.1ms) SAVEPOINT active_record_1
60701
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fv"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60702
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60703
+  (0.1ms) SAVEPOINT active_record_1
60704
+ SQL (0.5ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fw"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60706
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'fv') ORDER BY '---
60707
+ :name: :asc
60708
+ ' LIMIT 1 OFFSET 0
60709
+  (0.7ms) rollback transaction
60710
+  (0.1ms) begin transaction
60711
+  (0.0ms) SAVEPOINT active_record_1
60712
+ SQL (0.6ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "abc"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 140.0], ["longitude", 0.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60714
+  (0.0ms) SAVEPOINT active_record_1
60715
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "bcd"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 150.0], ["longitude", 12.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60717
+  (0.0ms) SAVEPOINT active_record_1
60718
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "cde"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 150.0], ["longitude", 15.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60720
+  (0.0ms) SAVEPOINT active_record_1
60721
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "def"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 160.0], ["longitude", 2.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60723
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (test_models.name >= 'abc' AND (test_models.name != 'abc' OR test_models.address > 'bcd')) ORDER BY test_models.name ASC, test_models.address ASC
60724
+  (0.8ms) rollback transaction
60725
+  (0.0ms) begin transaction
60726
+  (0.1ms) SAVEPOINT active_record_1
60727
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "abc"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 140.0], ["longitude", 0.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60729
+  (0.0ms) SAVEPOINT active_record_1
60730
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "bcd"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 150.0], ["longitude", 12.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60732
+  (0.0ms) SAVEPOINT active_record_1
60733
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "cde"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 150.0], ["longitude", 15.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60735
+  (0.0ms) SAVEPOINT active_record_1
60736
+ SQL (0.1ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "def"], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", 160.0], ["longitude", 2.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60738
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (test_models.latitude >= 150 AND (test_models.latitude != 150 OR test_models.longitude > 12)) ORDER BY test_models.latitude ASC, test_models.longitude ASC
60739
+  (1.0ms) rollback transaction
60740
+  (0.0ms) begin transaction
60741
+  (0.0ms) SAVEPOINT active_record_1
60742
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60744
+  (0.0ms) SAVEPOINT active_record_1
60745
+ SQL (0.8ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60747
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id < 3) ORDER BY test_models.id DESC LIMIT 25
60748
+  (0.6ms) rollback transaction
60749
+  (0.1ms) begin transaction
60750
+  (0.1ms) SAVEPOINT active_record_1
60751
+ SQL (0.7ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60753
+  (0.0ms) SAVEPOINT active_record_1
60754
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60756
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'a') ORDER BY '---
60757
+ :name: :asc
60758
+ ' LIMIT 25 OFFSET 0
60759
+  (0.8ms) rollback transaction
60760
+  (0.1ms) begin transaction
60761
+  (0.0ms) SAVEPOINT active_record_1
60762
+ SQL (0.6ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60764
+  (0.0ms) SAVEPOINT active_record_1
60765
+ SQL (0.6ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60767
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(name) < 'z') ORDER BY name DESC LIMIT 25 OFFSET 0
60768
+  (0.7ms) rollback transaction
60769
+  (0.0ms) begin transaction
60770
+  (0.0ms) SAVEPOINT active_record_1
60771
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60773
+  (0.0ms) SAVEPOINT active_record_1
60774
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 06:35:24 UTC +00:00]]
60775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60776
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 2 OFFSET 0
60777
+  (0.8ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paginative
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Norman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-17 00:00:00.000000000 Z
11
+ date: 2015-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -272,3 +272,4 @@ test_files:
272
272
  - spec/factories/paginative_test_models.rb
273
273
  - spec/models/paginative/test_model_spec.rb
274
274
  - spec/spec_helper.rb
275
+ has_rdoc: