paginative 0.2.1 → 0.2.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.
- checksums.yaml +4 -4
- data/lib/paginative/models/model_extension.rb +3 -2
- data/lib/paginative/version.rb +1 -1
- data/spec/dummy/log/test.log +647 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fb0fa9e4cd0064617628ce312df8b7d7daad6f3
|
4
|
+
data.tar.gz: 3478e36c51061caf47420cbb6035e341234ba2cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
40
|
-
self.order(sanitized_ordering(self.table_name, field, order)).where("#{field}
|
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
|
data/lib/paginative/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -60128,3 +60128,650 @@ Connecting to database specified by database.yml
|
|
60128
60128
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60129
60129
|
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "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[0m
|
60130
60130
|
[1m[35m (0.7ms)[0m rollback transaction
|
60131
|
+
Connecting to database specified by database.yml
|
60132
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
60133
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60134
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60136
|
+
[1m[36mTestModel Load (0.6ms)[0m [1mSELECT "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[0m
|
60137
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
60138
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60139
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60140
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60142
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60143
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60145
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60146
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60148
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60149
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60151
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60152
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60155
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60157
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60158
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60160
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60161
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60163
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60164
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60166
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60167
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60169
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60170
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60172
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60173
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60176
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60178
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60179
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60181
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60184
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60185
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60188
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60190
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60191
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60193
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60194
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60196
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60197
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60199
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60200
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60202
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60203
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60205
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60206
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60208
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60209
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60212
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60215
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60217
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60218
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60220
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60221
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60223
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60224
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60226
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60227
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60229
|
+
[1m[35mTestModel Load (0.3ms)[0m 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
|
+
[1m[36m (2.7ms)[0m [1mrollback transaction[0m
|
60231
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60232
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60233
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60235
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60236
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60238
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60239
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60241
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60242
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60244
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60245
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60247
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60248
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60250
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60251
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60253
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60254
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60256
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60257
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60259
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60260
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60262
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60263
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60266
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60269
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60271
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60272
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60274
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60275
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60277
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60278
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60280
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60281
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60283
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60284
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60286
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60287
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60290
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60292
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60293
|
+
[1m[35mSQL (1.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60295
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60296
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60298
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60299
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60301
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60302
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60304
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60305
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60307
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60308
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60310
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60311
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60313
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60314
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60316
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60317
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60319
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60320
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60322
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "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[0m
|
60323
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
60324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60325
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60326
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60328
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60329
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60331
|
+
[1m[35mTestModel Load (0.1ms)[0m 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
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "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[0m
|
60333
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
60334
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60335
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60336
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60338
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60339
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60341
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60342
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60344
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60345
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60347
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60348
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60350
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (created_at > '2015-04-17 06:35:23.313363') ORDER BY test_models.created_at ASC LIMIT 25[0m
|
60351
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
60352
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60353
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60354
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60357
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60360
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60362
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60363
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60365
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60366
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60368
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60369
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60371
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60372
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60374
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60375
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60377
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60378
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60380
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60381
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60383
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60384
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60386
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60387
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60389
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60390
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60392
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60393
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60395
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60396
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60398
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60399
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60404
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60405
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60410
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60411
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60413
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60414
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60416
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60417
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60419
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60420
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60422
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60423
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60426
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60428
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60429
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60431
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60432
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60434
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60435
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60438
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60440
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60441
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60443
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
60445
|
+
[1m[35m (0.0ms)[0m begin transaction
|
60446
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60447
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60450
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60452
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60453
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60455
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60456
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60458
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60459
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60461
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60462
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60465
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60467
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60468
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60470
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60471
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60473
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60474
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60476
|
+
[1m[36m (0.1ms)[0m [1mSELECT 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 [0m
|
60477
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
60478
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60479
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60480
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60482
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60483
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60485
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
60486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60487
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60488
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60490
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60491
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60493
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60496
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60497
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60499
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60500
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60502
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id > 3) ORDER BY test_models.id ASC LIMIT 25[0m
|
60503
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
60504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60505
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60506
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60508
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60509
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60511
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60512
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60514
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60515
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60518
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60521
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60523
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60524
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60526
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60527
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60530
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60532
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60533
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60535
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60536
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60539
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60544
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60545
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60548
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60550
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60551
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60553
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60554
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60557
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60559
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60560
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60562
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60563
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60565
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60566
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60568
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60569
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60571
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60572
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60574
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60575
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60577
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60578
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60580
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60581
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60583
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60584
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60586
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60587
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60589
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60590
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60592
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60593
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60595
|
+
[1m[35mTestModel Load (0.3ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
|
60596
|
+
:name: :asc
|
60597
|
+
' LIMIT 25 OFFSET 0
|
60598
|
+
[1m[36m (2.6ms)[0m [1mrollback transaction[0m
|
60599
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60600
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60601
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60603
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
60604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60605
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60606
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60608
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60609
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60612
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60614
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60615
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60618
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60620
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60621
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60623
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60624
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60626
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60627
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60629
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60630
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60632
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60633
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60635
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60636
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60638
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60639
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60641
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60642
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60644
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60645
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60648
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60650
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60651
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60653
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60654
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60656
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60657
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60660
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60662
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60663
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60666
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
60668
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60669
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60672
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60674
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60675
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60677
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60678
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60680
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60681
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60683
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60684
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60687
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60690
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60692
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60693
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60695
|
+
[1m[35mTestModel Load (0.3ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
|
60696
|
+
:name: :asc
|
60697
|
+
' LIMIT 25 OFFSET 0
|
60698
|
+
[1m[36m (2.3ms)[0m [1mrollback transaction[0m
|
60699
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60700
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60701
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60703
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60704
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60706
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'fv') ORDER BY '---
|
60707
|
+
:name: :asc
|
60708
|
+
' LIMIT 1 OFFSET 0[0m
|
60709
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
60710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60712
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60714
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60715
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60717
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60720
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60721
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60723
|
+
[1m[35mTestModel Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
60725
|
+
[1m[35m (0.0ms)[0m begin transaction
|
60726
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60727
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60729
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60730
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60732
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60733
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60736
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60738
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "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[0m
|
60739
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
60740
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60741
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60742
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60745
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60747
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id < 3) ORDER BY test_models.id DESC LIMIT 25
|
60748
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
60749
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60751
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60753
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60754
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60756
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'a') ORDER BY '---
|
60757
|
+
:name: :asc
|
60758
|
+
' LIMIT 25 OFFSET 0[0m
|
60759
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
60760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60761
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60762
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60765
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60767
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(name) < 'z') ORDER BY name DESC LIMIT 25 OFFSET 0
|
60768
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
60769
|
+
[1m[35m (0.0ms)[0m begin transaction
|
60770
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60771
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60773
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60774
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60776
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "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[0m
|
60777
|
+
[1m[35m (0.8ms)[0m 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.
|
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-
|
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:
|