paginative 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/paginative/models/model_extension.rb +4 -4
- data/lib/paginative/models/ordering_helpers.rb +1 -12
- data/lib/paginative/version.rb +1 -1
- data/spec/dummy/log/test.log +647 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 865d0fdb9adf712db06ecc31b3259f526f765221
|
4
|
+
data.tar.gz: 8bdafeff233b65de1e76abfd480acae4ae51eb7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ba4955ebb169139470e797cd4b680b4379770df573c52bba5b2f9da78dfa231d3adcd96f505d87fb95386d5bb6766dda76915b2e1c0f06a194a9a4c5ff279fe
|
7
|
+
data.tar.gz: 5f2ee68e1418285481855e1334574c4b2461dce04ee4cef33a537aae19bb497234e92b73215f90d567919bfcd87f0374c229b1c460e27338724d2bccd3385dcd
|
@@ -32,12 +32,12 @@ module Paginative
|
|
32
32
|
secondary_sort_field = field[1]
|
33
33
|
secondary_value = value[1]
|
34
34
|
# This allows us to pass in 2 different sort columns and still paginate correctly.
|
35
|
-
return self.order(
|
35
|
+
return 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) if order.try(:downcase) == "desc"
|
36
36
|
|
37
|
-
self.order(
|
37
|
+
self.order(sanitized_ordering(self.table_name, field, order)).where("#{self.table_name}.#{primary_sort_field} >= ? AND (#{self.table_name}.#{primary_sort_field} != ? OR #{self.table_name}.#{secondary_sort_field} > ?)", primary_value, primary_value, secondary_value)
|
38
38
|
else
|
39
|
-
return self.order(
|
40
|
-
self.order(
|
39
|
+
return self.order(sanitized_ordering(self.table_name, field, order)).where("#{field} < ?", value).limit(limit) if order.try(:downcase) == "desc"
|
40
|
+
self.order(sanitized_ordering(self.table_name, field, order)).where("#{field} > ?", value).limit(limit)
|
41
41
|
end
|
42
42
|
end
|
43
43
|
end
|
@@ -3,18 +3,7 @@ module Paginative
|
|
3
3
|
extend ActiveSupport::Concern
|
4
4
|
|
5
5
|
included do
|
6
|
-
def self.
|
7
|
-
# This just double checks that there is a direction. Because there have been times where it was passed in as an argument. But passed as nil
|
8
|
-
order ||= "asc"
|
9
|
-
if field.is_a? Array
|
10
|
-
return raise "Wrong number of sorting fields. Expected 2, got #{field.length}. If you want to sort by a singular field please pass field argument as a string rather than an array." unless field.length == 2
|
11
|
-
"#{table_name}.#{sanitize_column(field[0])} || #{table_name}.#{sanitize_column(field[1])} #{sanitize_column_direction(order)}"
|
12
|
-
else
|
13
|
-
"#{table_name}.#{sanitize_column(field)} #{sanitize_column_direction(order)}"
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
def self.sanitized_integer_ordering(table_name, field, order)
|
6
|
+
def self.sanitized_ordering(table_name, field, order)
|
18
7
|
if field.is_a? Array
|
19
8
|
return raise "Wrong number of sorting fields. Expected 2, got #{field.length}. If you want to sort by a singular field please pass field argument as a string rather than an array." unless field.length == 2
|
20
9
|
|
data/lib/paginative/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -59481,3 +59481,650 @@ Connecting to database specified by database.yml
|
|
59481
59481
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59482
59482
|
[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
|
59483
59483
|
[1m[35m (0.7ms)[0m rollback transaction
|
59484
|
+
Connecting to database specified by database.yml
|
59485
|
+
[1m[36m (1.1ms)[0m [1mbegin transaction[0m
|
59486
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59487
|
+
[1m[36mSQL (6.1ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", nil], ["created_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "b"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59488
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59489
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59490
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "c"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59491
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59492
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59493
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "d"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59494
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59495
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59496
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "e"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59497
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59498
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59499
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "f"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59500
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59501
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59502
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "g"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59503
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59504
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59505
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "h"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59506
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59507
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59508
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "i"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59509
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59511
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "j"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59512
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59513
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59514
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "k"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59515
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59516
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59517
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "l"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59518
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59519
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59520
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "m"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59521
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59522
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59523
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "n"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59524
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59525
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59526
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "o"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59527
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59528
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59529
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "p"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59531
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59532
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "q"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59533
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59534
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59535
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "r"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59536
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59537
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59538
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "s"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59539
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59540
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59541
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "t"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59542
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59543
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59544
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "u"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59545
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59546
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59547
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "v"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59548
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59549
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59550
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "w"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59551
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59552
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59553
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "x"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59554
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59555
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59556
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "y"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59558
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59559
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "z"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59560
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59561
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59562
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aa"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59563
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59564
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59565
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59566
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59567
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59568
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ac"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59569
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59570
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59571
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ad"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59572
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59573
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59574
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ae"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59575
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59576
|
+
[1m[35mTestModel Load (1.0ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
|
59577
|
+
:name: :asc
|
59578
|
+
' LIMIT 25 OFFSET 0
|
59579
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
59580
|
+
[1m[35m (0.1ms)[0m begin transaction
|
59581
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59582
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "af"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59583
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59584
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
59585
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
59586
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59587
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ag"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59588
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59589
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59590
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ah"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59591
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59592
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59593
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ai"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59594
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59595
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59596
|
+
[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 05:54:42 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aj"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
|
59597
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59598
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59599
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ak"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59600
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59601
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59602
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "al"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59603
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59604
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59605
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "am"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59606
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59607
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59608
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "an"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59609
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59610
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59611
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ao"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59612
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59613
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59614
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ap"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59615
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59616
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59617
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59618
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59619
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59620
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ar"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59621
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59622
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59623
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "as"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59624
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59625
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59626
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "at"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59627
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59628
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59629
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "au"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59630
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59631
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59632
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "av"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59633
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59634
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59635
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "aw"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59636
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59637
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59638
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ax"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59639
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59640
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59641
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ay"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59642
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59643
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59644
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "az"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59645
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59646
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59647
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59648
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59649
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59650
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bb"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59651
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59652
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59653
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bc"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59654
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59655
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59656
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bd"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59657
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59658
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59659
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "be"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59660
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59661
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59662
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bf"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59663
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59665
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bg"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59666
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59667
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59668
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bh"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59669
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59670
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59671
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bi"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59672
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59673
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59674
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bj"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59675
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59676
|
+
[1m[35mTestModel Load (0.3ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
|
59677
|
+
:name: :asc
|
59678
|
+
' LIMIT 25 OFFSET 0
|
59679
|
+
[1m[36m (2.3ms)[0m [1mrollback transaction[0m
|
59680
|
+
[1m[35m (0.1ms)[0m begin transaction
|
59681
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59682
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bk"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59683
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59684
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59685
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bl"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59686
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59687
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'bk') ORDER BY '---
|
59688
|
+
:name: :asc
|
59689
|
+
' LIMIT 1 OFFSET 0[0m
|
59690
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
59691
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
59692
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59693
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bm"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59694
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59695
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59696
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Thu, 16 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bn"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59697
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59698
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59699
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", nil], ["created_at", Wed, 15 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bo"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59700
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59701
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59702
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Tue, 14 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bp"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59703
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59704
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59705
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", nil], ["created_at", Mon, 13 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59706
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59707
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59708
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Sun, 12 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "br"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59709
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59710
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59711
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", nil], ["created_at", Sat, 11 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bs"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59712
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59713
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59714
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Fri, 10 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bt"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59715
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59716
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59717
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", nil], ["created_at", Thu, 09 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bu"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59718
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59719
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59720
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", nil], ["created_at", Wed, 08 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bv"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59721
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59722
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "test_models" WHERE (created_at > '2015-04-12 05:54:43.334748') LIMIT 25) subquery_for_count
|
59723
|
+
[1m[36m (2.4ms)[0m [1mrollback transaction[0m
|
59724
|
+
[1m[35m (0.1ms)[0m begin transaction
|
59725
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59726
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bw"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59727
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59728
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59729
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59730
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59731
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59732
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "by"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59733
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59734
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59735
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "bz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59736
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59737
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59738
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ca"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59739
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59740
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59741
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cb"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59742
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59743
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59744
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cc"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59747
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cd"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59748
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59749
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59750
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ce"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59751
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59752
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59753
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cf"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59754
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59755
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59756
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cg"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59757
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59758
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59759
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ch"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59760
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59761
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59762
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ci"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59763
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59765
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cj"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59766
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59767
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59768
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ck"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59769
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59770
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59771
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cl"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59772
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59773
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59774
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cm"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59775
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59776
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59777
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cn"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59778
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59779
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
59780
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "co"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59781
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59782
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59783
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cp"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59784
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59785
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59786
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59787
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59788
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59789
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cr"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59790
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59791
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59792
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cs"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59794
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59795
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ct"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59796
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59797
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59798
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cu"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59799
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59800
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59801
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cv"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59802
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59803
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59804
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cw"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59805
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59806
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59807
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59808
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59809
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59810
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cy"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59811
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59812
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59813
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "cz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59815
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "test_models" WHERE (created_at > '2015-04-16 05:54:43.584372') LIMIT 25) subquery_for_count [0m
|
59816
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
59817
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
59818
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59819
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "da"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59820
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59821
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59822
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "db"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59823
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59824
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59825
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", "New York"], ["created_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dc"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59826
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59827
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59828
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dd"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59829
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59830
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59831
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "de"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59832
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59833
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (created_at > '2015-04-17 05:54:43.604481') ORDER BY test_models.created_at ASC LIMIT 25[0m
|
59834
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
59835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
59836
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59837
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "df"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59838
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59839
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59840
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dg"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59841
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59843
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dh"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59844
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59845
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59846
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "di"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59847
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59848
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59849
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dj"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59850
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59851
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id > 3) ORDER BY test_models.id ASC LIMIT 25[0m
|
59852
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
59853
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
59854
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59855
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dk"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59856
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59857
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59858
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dl"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59859
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59860
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
59861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
59862
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59863
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dm"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59864
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59865
|
+
[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 1 OFFSET 0[0m
|
59866
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
59867
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
59868
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59869
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dn"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59870
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59871
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59872
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "do"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59873
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59874
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59875
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dp"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59876
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59877
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59878
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59879
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59880
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59881
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dr"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59882
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59883
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59884
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ds"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59885
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59886
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59887
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dt"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59888
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59889
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59890
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "du"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59891
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59892
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59893
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dv"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59894
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59896
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dw"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59897
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59898
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59899
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59900
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59901
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59902
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dy"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59903
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59904
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59905
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "dz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59906
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59907
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59908
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ea"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59909
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59910
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59911
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eb"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59912
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59914
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ec"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59915
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59916
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59917
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ed"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59918
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59919
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59920
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ee"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59921
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59922
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59923
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ef"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59924
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59926
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eg"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59927
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59928
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59929
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eh"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59930
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59931
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59932
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ei"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59933
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59934
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59935
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ej"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59936
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59938
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ek"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59939
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59940
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59941
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "el"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59942
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59943
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59944
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "em"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59945
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59946
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59947
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "en"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59948
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59949
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59950
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eo"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59951
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59952
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59953
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ep"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59954
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59955
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59956
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59957
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59958
|
+
[1m[35mTestModel Load (0.1ms)[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
|
59959
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
59960
|
+
[1m[35m (0.1ms)[0m begin transaction
|
59961
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59962
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "er"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59963
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59964
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59965
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "es"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59966
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59967
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
59968
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "et"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59969
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59970
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59971
|
+
[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 05:54:43 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "eu"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
|
59972
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59973
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59974
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ev"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59976
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59977
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ew"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59978
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59979
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59980
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ex"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59981
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59982
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59983
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ey"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59984
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59985
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59986
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ez"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59987
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
59989
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fa"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59990
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59991
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59992
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fb"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59993
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59994
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
59995
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59996
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59997
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
59998
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fd"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
59999
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60000
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60001
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fe"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60002
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60003
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60004
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ff"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60005
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60006
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60007
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fg"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60008
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60009
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60010
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fh"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60011
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60012
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60013
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fi"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60014
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60015
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60016
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fj"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60017
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60018
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60019
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fk"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60020
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60021
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60022
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fl"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60023
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60024
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60025
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fm"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60026
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60027
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60028
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fn"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60029
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60030
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60031
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fo"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60033
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60034
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fp"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60035
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60036
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60037
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fq"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60038
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60039
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60040
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fr"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60041
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60042
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60043
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fs"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60044
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60045
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60046
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "ft"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60047
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60048
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60049
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.01], ["longitude", 144.0], ["name", "fu"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60050
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60051
|
+
[1m[36mTestModel Load (0.4ms)[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
|
60052
|
+
[1m[35m (2.4ms)[0m rollback transaction
|
60053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60054
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60055
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.0], ["longitude", 144.0], ["name", "fv"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60056
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60057
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60058
|
+
[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 05:54:44 UTC +00:00], ["latitude", 0.0], ["longitude", 0.0], ["name", "fw"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60060
|
+
[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
|
60061
|
+
[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
|
60062
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
60063
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60065
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60066
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60067
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60068
|
+
[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 05:54:44 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60069
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60070
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id < 3) ORDER BY test_models.id DESC LIMIT 25
|
60071
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
60072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
60073
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60074
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60076
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60077
|
+
[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 05:54:44 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60078
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60079
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'a') ORDER BY '---
|
60080
|
+
:name: :asc
|
60081
|
+
' LIMIT 25 OFFSET 0[0m
|
60082
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
60083
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60084
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
60085
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60086
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
60087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60088
|
+
[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 05:54:44 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60089
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60090
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (lower(name) < 'z') ORDER BY name DESC LIMIT 25 OFFSET 0
|
60091
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
60092
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60093
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60094
|
+
[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 05:54:44 UTC +00:00], ["latitude", -37.5], ["longitude", 144.0], ["name", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60095
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60096
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60097
|
+
[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 05:54:44 UTC +00:00], ["latitude", -38.0], ["longitude", 144.5], ["name", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60098
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60099
|
+
[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
|
60100
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
60101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60102
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60103
|
+
[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 05:54:44 UTC +00:00], ["latitude", 140.0], ["longitude", 0.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60104
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60105
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60106
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "bcd"], ["created_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00], ["latitude", 150.0], ["longitude", 12.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60109
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", "cde"], ["created_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00], ["latitude", 150.0], ["longitude", 15.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60110
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60111
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
60112
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "def"], ["created_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00], ["latitude", 160.0], ["longitude", 2.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60113
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60114
|
+
[1m[35mTestModel Load (0.2ms)[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
|
60115
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
60116
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60117
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60118
|
+
[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 05:54:44 UTC +00:00], ["latitude", 140.0], ["longitude", 0.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60119
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60120
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60121
|
+
[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 05:54:44 UTC +00:00], ["latitude", 150.0], ["longitude", 12.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60122
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
60123
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60124
|
+
[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 05:54:44 UTC +00:00], ["latitude", 150.0], ["longitude", 15.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
60127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address", "def"], ["created_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00], ["latitude", 160.0], ["longitude", 2.0], ["name", "abc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
|
60128
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|