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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 644ba3a85fa649d94edf8ac6cc26d196eae29506
4
- data.tar.gz: c718566e157f88ef3e30ba36f7628723d91753da
3
+ metadata.gz: 865d0fdb9adf712db06ecc31b3259f526f765221
4
+ data.tar.gz: 8bdafeff233b65de1e76abfd480acae4ae51eb7e
5
5
  SHA512:
6
- metadata.gz: 18c3cc29ca03bc24230d3609400ee9766f55ceb558c2f56430b9985a4db057c65af8eee2fa634864b5863e31a327808a6879d9833cd6458a602e08b4c91d06a6
7
- data.tar.gz: 0d1a9891a1a6b7ffb2db0567d15ff624904605df7ab54d00a05819c40bbf188f03b408fd0f2d612dbf0de1b23e7ee0b70be82440b794300a9baea641c68ec75e
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(sanitized_integer_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"
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(sanitized_integer_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)
37
+ self.order(sanitized_ordering(self.table_name, field, order)).where("#{self.table_name}.#{primary_sort_field} >= ? AND (#{self.table_name}.#{primary_sort_field} != ? OR #{self.table_name}.#{secondary_sort_field} > ?)", primary_value, primary_value, secondary_value)
38
38
  else
39
- return self.order(sanitized_string_ordering(self.table_name, field, order)).where("#{field} < ?", value).limit(limit) if order.try(:downcase) == "desc"
40
- self.order(sanitized_string_ordering(self.table_name, field, order)).where("#{field} > ?", value).limit(limit)
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.sanitized_string_ordering(table_name, field, order)
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
 
@@ -1,3 +1,3 @@
1
1
  module Paginative
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -59481,3 +59481,650 @@ Connecting to database specified by database.yml
59481
59481
   (0.1ms) RELEASE SAVEPOINT active_record_1
59482
59482
  TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 2 OFFSET 0
59483
59483
   (0.7ms) rollback transaction
59484
+ Connecting to database specified by database.yml
59485
+  (1.1ms) begin transaction
59486
+  (0.1ms) SAVEPOINT active_record_1
59487
+ SQL (6.1ms) 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", "b"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59488
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59489
+  (0.1ms) SAVEPOINT active_record_1
59490
+ SQL (0.7ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59492
+  (0.1ms) SAVEPOINT active_record_1
59493
+ SQL (0.2ms) 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", "d"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59495
+  (0.1ms) SAVEPOINT active_record_1
59496
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59498
+  (0.1ms) SAVEPOINT active_record_1
59499
+ SQL (0.2ms) 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", "f"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59501
+  (0.1ms) SAVEPOINT active_record_1
59502
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59504
+  (0.1ms) SAVEPOINT active_record_1
59505
+ SQL (0.2ms) 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", "h"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59507
+  (0.1ms) SAVEPOINT active_record_1
59508
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59510
+  (0.0ms) SAVEPOINT active_record_1
59511
+ SQL (0.1ms) 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", "j"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59513
+  (0.1ms) SAVEPOINT active_record_1
59514
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59516
+  (0.0ms) SAVEPOINT active_record_1
59517
+ SQL (0.1ms) 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", "l"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59519
+  (0.1ms) SAVEPOINT active_record_1
59520
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59522
+  (0.1ms) SAVEPOINT active_record_1
59523
+ SQL (0.2ms) 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", "n"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59525
+  (0.1ms) SAVEPOINT active_record_1
59526
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59528
+  (0.1ms) SAVEPOINT active_record_1
59529
+ SQL (0.2ms) 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", "p"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59531
+  (0.1ms) SAVEPOINT active_record_1
59532
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59534
+  (0.1ms) SAVEPOINT active_record_1
59535
+ SQL (0.2ms) 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", "r"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59537
+  (0.1ms) SAVEPOINT active_record_1
59538
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59540
+  (0.1ms) SAVEPOINT active_record_1
59541
+ SQL (0.2ms) 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", "t"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59543
+  (0.0ms) SAVEPOINT active_record_1
59544
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59546
+  (0.1ms) SAVEPOINT active_record_1
59547
+ SQL (0.4ms) 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", "v"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59549
+  (0.1ms) SAVEPOINT active_record_1
59550
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59552
+  (0.0ms) SAVEPOINT active_record_1
59553
+ SQL (0.2ms) 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", "x"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59555
+  (0.0ms) SAVEPOINT active_record_1
59556
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59558
+  (0.1ms) SAVEPOINT active_record_1
59559
+ SQL (0.2ms) 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", "z"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59561
+  (0.1ms) SAVEPOINT active_record_1
59562
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59564
+  (0.0ms) SAVEPOINT active_record_1
59565
+ SQL (0.2ms) 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", "ab"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59567
+  (0.1ms) SAVEPOINT active_record_1
59568
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59570
+  (0.1ms) SAVEPOINT active_record_1
59571
+ SQL (0.2ms) 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", "ad"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59573
+  (0.1ms) SAVEPOINT active_record_1
59574
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59576
+ TestModel Load (1.0ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
59577
+ :name: :asc
59578
+ ' LIMIT 25 OFFSET 0
59579
+  (0.8ms) rollback transaction
59580
+  (0.1ms) begin transaction
59581
+  (0.0ms) SAVEPOINT active_record_1
59582
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59584
+  (0.4ms) rollback transaction
59585
+  (0.1ms) begin transaction
59586
+  (0.1ms) SAVEPOINT active_record_1
59587
+ SQL (0.4ms) 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", "ag"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59589
+  (0.1ms) SAVEPOINT active_record_1
59590
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59592
+  (0.0ms) SAVEPOINT active_record_1
59593
+ SQL (0.1ms) 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", "ai"], ["updated_at", Fri, 17 Apr 2015 05:54:42 UTC +00:00]]
59594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59595
+  (0.1ms) SAVEPOINT active_record_1
59596
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59598
+  (0.1ms) SAVEPOINT active_record_1
59599
+ SQL (0.3ms) 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", "ak"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59601
+  (0.1ms) SAVEPOINT active_record_1
59602
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59604
+  (0.1ms) SAVEPOINT active_record_1
59605
+ SQL (0.2ms) 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", "am"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59607
+  (0.1ms) SAVEPOINT active_record_1
59608
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59610
+  (0.1ms) SAVEPOINT active_record_1
59611
+ SQL (0.2ms) 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", "ao"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59613
+  (0.0ms) SAVEPOINT active_record_1
59614
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59616
+  (0.1ms) SAVEPOINT active_record_1
59617
+ SQL (0.2ms) 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", "aq"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59619
+  (0.1ms) SAVEPOINT active_record_1
59620
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59622
+  (0.1ms) SAVEPOINT active_record_1
59623
+ SQL (0.2ms) 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", "as"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59625
+  (0.0ms) SAVEPOINT active_record_1
59626
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59628
+  (0.1ms) SAVEPOINT active_record_1
59629
+ SQL (0.2ms) 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", "au"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59631
+  (0.0ms) SAVEPOINT active_record_1
59632
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59634
+  (0.1ms) SAVEPOINT active_record_1
59635
+ SQL (0.3ms) 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", "aw"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59637
+  (0.1ms) SAVEPOINT active_record_1
59638
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59640
+  (0.1ms) SAVEPOINT active_record_1
59641
+ SQL (0.2ms) 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", "ay"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59643
+  (0.0ms) SAVEPOINT active_record_1
59644
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59646
+  (0.1ms) SAVEPOINT active_record_1
59647
+ SQL (0.2ms) 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", "ba"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59649
+  (0.0ms) SAVEPOINT active_record_1
59650
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59652
+  (0.1ms) SAVEPOINT active_record_1
59653
+ SQL (0.2ms) 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", "bc"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59655
+  (0.1ms) SAVEPOINT active_record_1
59656
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59658
+  (0.1ms) SAVEPOINT active_record_1
59659
+ SQL (0.2ms) 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", "be"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59661
+  (0.1ms) SAVEPOINT active_record_1
59662
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59664
+  (0.0ms) SAVEPOINT active_record_1
59665
+ SQL (0.2ms) 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", "bg"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59667
+  (0.1ms) SAVEPOINT active_record_1
59668
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59670
+  (0.1ms) SAVEPOINT active_record_1
59671
+ SQL (0.2ms) 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", "bi"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59673
+  (0.1ms) SAVEPOINT active_record_1
59674
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59676
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > '') ORDER BY '---
59677
+ :name: :asc
59678
+ ' LIMIT 25 OFFSET 0
59679
+  (2.3ms) rollback transaction
59680
+  (0.1ms) begin transaction
59681
+  (0.1ms) SAVEPOINT active_record_1
59682
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59684
+  (0.1ms) SAVEPOINT active_record_1
59685
+ SQL (0.4ms) 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", "bl"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59687
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'bk') ORDER BY '---
59688
+ :name: :asc
59689
+ ' LIMIT 1 OFFSET 0
59690
+  (0.5ms) rollback transaction
59691
+  (0.1ms) begin transaction
59692
+  (0.1ms) SAVEPOINT active_record_1
59693
+ SQL (0.5ms) 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", "bm"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59695
+  (0.1ms) SAVEPOINT active_record_1
59696
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59698
+  (0.1ms) SAVEPOINT active_record_1
59699
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59701
+  (0.1ms) SAVEPOINT active_record_1
59702
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59704
+  (0.1ms) SAVEPOINT active_record_1
59705
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59707
+  (0.1ms) SAVEPOINT active_record_1
59708
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59710
+  (0.0ms) SAVEPOINT active_record_1
59711
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59713
+  (0.1ms) SAVEPOINT active_record_1
59714
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59716
+  (0.1ms) SAVEPOINT active_record_1
59717
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59719
+  (0.1ms) SAVEPOINT active_record_1
59720
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59722
+  (0.1ms) 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
+  (2.4ms) rollback transaction
59724
+  (0.1ms) begin transaction
59725
+  (0.1ms) SAVEPOINT active_record_1
59726
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59728
+  (0.1ms) SAVEPOINT active_record_1
59729
+ SQL (0.5ms) 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", "bx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59731
+  (0.1ms) SAVEPOINT active_record_1
59732
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59734
+  (0.1ms) SAVEPOINT active_record_1
59735
+ SQL (0.2ms) 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", "bz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59737
+  (0.1ms) SAVEPOINT active_record_1
59738
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59740
+  (0.1ms) SAVEPOINT active_record_1
59741
+ SQL (0.2ms) 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", "cb"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59743
+  (0.0ms) SAVEPOINT active_record_1
59744
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59746
+  (0.0ms) SAVEPOINT active_record_1
59747
+ SQL (0.1ms) 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", "cd"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59749
+  (0.1ms) SAVEPOINT active_record_1
59750
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59752
+  (0.1ms) SAVEPOINT active_record_1
59753
+ SQL (0.2ms) 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", "cf"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59755
+  (0.1ms) SAVEPOINT active_record_1
59756
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59758
+  (0.1ms) SAVEPOINT active_record_1
59759
+ SQL (0.3ms) 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", "ch"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59761
+  (0.1ms) SAVEPOINT active_record_1
59762
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59764
+  (0.0ms) SAVEPOINT active_record_1
59765
+ SQL (0.1ms) 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", "cj"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59767
+  (0.1ms) SAVEPOINT active_record_1
59768
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59770
+  (0.0ms) SAVEPOINT active_record_1
59771
+ SQL (0.2ms) 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", "cl"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59773
+  (0.1ms) SAVEPOINT active_record_1
59774
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59776
+  (0.1ms) SAVEPOINT active_record_1
59777
+ SQL (0.2ms) 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", "cn"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59779
+  (0.2ms) SAVEPOINT active_record_1
59780
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59782
+  (0.0ms) SAVEPOINT active_record_1
59783
+ SQL (0.2ms) 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", "cp"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59785
+  (0.1ms) SAVEPOINT active_record_1
59786
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59788
+  (0.1ms) SAVEPOINT active_record_1
59789
+ SQL (0.2ms) 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", "cr"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59791
+  (0.1ms) SAVEPOINT active_record_1
59792
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59794
+  (0.1ms) SAVEPOINT active_record_1
59795
+ SQL (0.1ms) 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", "ct"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59797
+  (0.1ms) SAVEPOINT active_record_1
59798
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59800
+  (0.1ms) SAVEPOINT active_record_1
59801
+ SQL (0.2ms) 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", "cv"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59803
+  (0.1ms) SAVEPOINT active_record_1
59804
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59806
+  (0.0ms) SAVEPOINT active_record_1
59807
+ SQL (0.1ms) 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", "cx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59809
+  (0.1ms) SAVEPOINT active_record_1
59810
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59812
+  (0.1ms) SAVEPOINT active_record_1
59813
+ SQL (0.2ms) 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", "cz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59815
+  (0.1ms) SELECT 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 
59816
+  (0.8ms) rollback transaction
59817
+  (0.0ms) begin transaction
59818
+  (0.1ms) SAVEPOINT active_record_1
59819
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59821
+  (0.1ms) SAVEPOINT active_record_1
59822
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59824
+  (0.1ms) SAVEPOINT active_record_1
59825
+ SQL (0.3ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59827
+  (0.1ms) SAVEPOINT active_record_1
59828
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59830
+  (0.1ms) SAVEPOINT active_record_1
59831
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Island St"], ["created_at", Sun, 19 Apr 2015 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59833
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (created_at > '2015-04-17 05:54:43.604481') ORDER BY test_models.created_at ASC LIMIT 25
59834
+  (0.8ms) rollback transaction
59835
+  (0.1ms) begin transaction
59836
+  (0.1ms) SAVEPOINT active_record_1
59837
+ SQL (0.4ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59839
+  (0.1ms) SAVEPOINT active_record_1
59840
+ SQL (0.5ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59842
+  (0.0ms) SAVEPOINT active_record_1
59843
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "New York"], ["created_at", Fri, 17 Apr 2015 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59845
+  (0.1ms) SAVEPOINT active_record_1
59846
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59848
+  (0.1ms) SAVEPOINT active_record_1
59849
+ SQL (0.2ms) INSERT INTO "test_models" ("address", "created_at", "latitude", "longitude", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "Island St"], ["created_at", Sun, 19 Apr 2015 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59851
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id > 3) ORDER BY test_models.id ASC LIMIT 25
59852
+  (0.6ms) rollback transaction
59853
+  (0.1ms) begin transaction
59854
+  (0.1ms) SAVEPOINT active_record_1
59855
+ SQL (0.4ms) 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", "dk"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59857
+  (0.1ms) SAVEPOINT active_record_1
59858
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59860
+  (0.7ms) rollback transaction
59861
+  (0.0ms) begin transaction
59862
+  (0.0ms) SAVEPOINT active_record_1
59863
+ SQL (0.4ms) 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", "dm"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59865
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 1 OFFSET 0
59866
+  (0.4ms) rollback transaction
59867
+  (0.2ms) begin transaction
59868
+  (0.1ms) SAVEPOINT active_record_1
59869
+ SQL (0.4ms) 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", "dn"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59871
+  (0.1ms) SAVEPOINT active_record_1
59872
+ SQL (0.5ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59874
+  (0.1ms) SAVEPOINT active_record_1
59875
+ SQL (0.2ms) 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", "dp"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59877
+  (0.1ms) SAVEPOINT active_record_1
59878
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59880
+  (0.1ms) SAVEPOINT active_record_1
59881
+ SQL (0.3ms) 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", "dr"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59882
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59883
+  (0.1ms) SAVEPOINT active_record_1
59884
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59886
+  (0.1ms) SAVEPOINT active_record_1
59887
+ SQL (0.2ms) 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", "dt"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59889
+  (0.1ms) SAVEPOINT active_record_1
59890
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59892
+  (0.1ms) SAVEPOINT active_record_1
59893
+ SQL (0.2ms) 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", "dv"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59895
+  (0.1ms) SAVEPOINT active_record_1
59896
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59898
+  (0.1ms) SAVEPOINT active_record_1
59899
+ SQL (0.2ms) 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", "dx"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59901
+  (0.1ms) SAVEPOINT active_record_1
59902
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59904
+  (0.0ms) SAVEPOINT active_record_1
59905
+ SQL (0.2ms) 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", "dz"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59907
+  (0.0ms) SAVEPOINT active_record_1
59908
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59910
+  (0.1ms) SAVEPOINT active_record_1
59911
+ SQL (0.2ms) 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", "eb"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59913
+  (0.0ms) SAVEPOINT active_record_1
59914
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59916
+  (0.1ms) SAVEPOINT active_record_1
59917
+ SQL (0.2ms) 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", "ed"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59919
+  (0.1ms) SAVEPOINT active_record_1
59920
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59922
+  (0.1ms) SAVEPOINT active_record_1
59923
+ SQL (0.2ms) 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", "ef"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59925
+  (0.1ms) SAVEPOINT active_record_1
59926
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59928
+  (0.0ms) SAVEPOINT active_record_1
59929
+ SQL (0.2ms) 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", "eh"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59931
+  (0.0ms) SAVEPOINT active_record_1
59932
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59934
+  (0.1ms) SAVEPOINT active_record_1
59935
+ SQL (0.1ms) 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", "ej"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59937
+  (0.0ms) SAVEPOINT active_record_1
59938
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59940
+  (0.1ms) SAVEPOINT active_record_1
59941
+ SQL (0.2ms) 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", "el"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59943
+  (0.1ms) SAVEPOINT active_record_1
59944
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59946
+  (0.1ms) SAVEPOINT active_record_1
59947
+ SQL (0.2ms) 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", "en"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59949
+  (0.0ms) SAVEPOINT active_record_1
59950
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59952
+  (0.1ms) SAVEPOINT active_record_1
59953
+ SQL (0.2ms) 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", "ep"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59955
+  (0.1ms) SAVEPOINT active_record_1
59956
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59958
+ TestModel Load (0.1ms) 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
+  (1.8ms) rollback transaction
59960
+  (0.1ms) begin transaction
59961
+  (0.1ms) SAVEPOINT active_record_1
59962
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59964
+  (0.1ms) SAVEPOINT active_record_1
59965
+ SQL (0.5ms) 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", "es"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59967
+  (0.0ms) SAVEPOINT active_record_1
59968
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59970
+  (0.1ms) SAVEPOINT active_record_1
59971
+ SQL (0.2ms) 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", "eu"], ["updated_at", Fri, 17 Apr 2015 05:54:43 UTC +00:00]]
59972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59973
+  (0.1ms) SAVEPOINT active_record_1
59974
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59976
+  (0.0ms) SAVEPOINT active_record_1
59977
+ SQL (0.2ms) 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", "ew"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
59978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59979
+  (0.1ms) SAVEPOINT active_record_1
59980
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59982
+  (0.1ms) SAVEPOINT active_record_1
59983
+ SQL (0.2ms) 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", "ey"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
59984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59985
+  (0.1ms) SAVEPOINT active_record_1
59986
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59988
+  (0.0ms) SAVEPOINT active_record_1
59989
+ SQL (0.1ms) 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", "fa"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
59990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59991
+  (0.1ms) SAVEPOINT active_record_1
59992
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59994
+  (0.1ms) SAVEPOINT active_record_1
59995
+ SQL (0.2ms) 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", "fc"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
59996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59997
+  (0.1ms) SAVEPOINT active_record_1
59998
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60000
+  (0.0ms) SAVEPOINT active_record_1
60001
+ SQL (0.2ms) 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", "fe"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60003
+  (0.1ms) SAVEPOINT active_record_1
60004
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60006
+  (0.1ms) SAVEPOINT active_record_1
60007
+ SQL (0.2ms) 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", "fg"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60009
+  (0.0ms) SAVEPOINT active_record_1
60010
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60012
+  (0.0ms) SAVEPOINT active_record_1
60013
+ SQL (0.2ms) 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", "fi"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60015
+  (0.1ms) SAVEPOINT active_record_1
60016
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60018
+  (0.0ms) SAVEPOINT active_record_1
60019
+ SQL (0.1ms) 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", "fk"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60021
+  (0.1ms) SAVEPOINT active_record_1
60022
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60024
+  (0.1ms) SAVEPOINT active_record_1
60025
+ SQL (0.2ms) 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", "fm"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60027
+  (0.1ms) SAVEPOINT active_record_1
60028
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60030
+  (0.0ms) SAVEPOINT active_record_1
60031
+ SQL (0.1ms) 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", "fo"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60033
+  (0.1ms) SAVEPOINT active_record_1
60034
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60036
+  (0.1ms) SAVEPOINT active_record_1
60037
+ SQL (0.2ms) 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", "fq"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60039
+  (0.1ms) SAVEPOINT active_record_1
60040
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60042
+  (0.1ms) SAVEPOINT active_record_1
60043
+ SQL (0.2ms) 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", "fs"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60045
+  (0.1ms) SAVEPOINT active_record_1
60046
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60048
+  (0.1ms) SAVEPOINT active_record_1
60049
+ SQL (0.2ms) 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", "fu"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60051
+ TestModel Load (0.4ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 25 OFFSET 0
60052
+  (2.4ms) rollback transaction
60053
+  (0.1ms) begin transaction
60054
+  (0.0ms) SAVEPOINT active_record_1
60055
+ SQL (0.4ms) 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.0], ["longitude", 144.0], ["name", "fv"], ["updated_at", Fri, 17 Apr 2015 05:54:44 UTC +00:00]]
60056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60057
+  (0.1ms) SAVEPOINT active_record_1
60058
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60060
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 100) LIMIT 25 OFFSET 0
60061
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 100) LIMIT 1 OFFSET 0
60062
+  (0.8ms) rollback transaction
60063
+  (0.0ms) begin transaction
60064
+  (0.0ms) SAVEPOINT active_record_1
60065
+ SQL (0.4ms) 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]]
60066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60067
+  (0.0ms) SAVEPOINT active_record_1
60068
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60070
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id < 3) ORDER BY test_models.id DESC LIMIT 25
60071
+  (0.9ms) rollback transaction
60072
+  (0.0ms) begin transaction
60073
+  (0.0ms) SAVEPOINT active_record_1
60074
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60076
+  (0.1ms) SAVEPOINT active_record_1
60077
+ SQL (0.5ms) 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]]
60078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60079
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(test_models.name) > 'a') ORDER BY '---
60080
+ :name: :asc
60081
+ ' LIMIT 25 OFFSET 0
60082
+  (0.6ms) rollback transaction
60083
+  (0.1ms) begin transaction
60084
+  (0.1ms) SAVEPOINT active_record_1
60085
+ SQL (0.8ms) 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]]
60086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60087
+  (0.0ms) SAVEPOINT active_record_1
60088
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60090
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (lower(name) < 'z') ORDER BY name DESC LIMIT 25 OFFSET 0
60091
+  (0.6ms) rollback transaction
60092
+  (0.1ms) begin transaction
60093
+  (0.1ms) SAVEPOINT active_record_1
60094
+ SQL (0.7ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60096
+  (0.0ms) SAVEPOINT active_record_1
60097
+ SQL (0.4ms) 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]]
60098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60099
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE ((111.19492664455873 * ABS(test_models.latitude - -37.0) * 0.7071067811865475) + (96.29763124613503 * ABS(test_models.longitude - 144.0) * 0.7071067811865475) > 0) LIMIT 2 OFFSET 0
60100
+  (0.8ms) rollback transaction
60101
+  (0.0ms) begin transaction
60102
+  (0.0ms) SAVEPOINT active_record_1
60103
+ SQL (0.6ms) 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]]
60104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60105
+  (0.0ms) SAVEPOINT active_record_1
60106
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60108
+  (0.0ms) SAVEPOINT active_record_1
60109
+ SQL (0.2ms) 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]]
60110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60111
+  (0.1ms) SAVEPOINT active_record_1
60112
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
60114
+ TestModel Load (0.2ms) 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
+  (0.7ms) rollback transaction
60116
+  (0.1ms) begin transaction
60117
+  (0.0ms) SAVEPOINT active_record_1
60118
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60120
+  (0.0ms) SAVEPOINT active_record_1
60121
+ SQL (0.4ms) 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]]
60122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60123
+  (0.0ms) SAVEPOINT active_record_1
60124
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60126
+  (0.0ms) SAVEPOINT active_record_1
60127
+ SQL (0.2ms) 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]]
60128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60129
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (test_models.latitude >= 150 AND (test_models.latitude != 150 OR test_models.longitude > 12)) ORDER BY test_models.latitude ASC, test_models.longitude ASC
60130
+  (0.7ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paginative
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Norman