hyper_iterator-rails 0.1.0 → 0.2.0

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: d4a592feaf3d241f4e442c7b06618844ad83ef27
4
- data.tar.gz: ae4cc0447cc624745952a49f668ecd7088ae08ef
3
+ metadata.gz: 90634167eb6e8085b7a4a34882e52c946dac8fab
4
+ data.tar.gz: dd00b445b77bf11833f05c189f1db39c43d30e59
5
5
  SHA512:
6
- metadata.gz: 36617312907250f8a0d2379c6ff421f2abc1401f0f576703bc4095cd4d73c9b5b35ed099d1553c2a33d758b45eb3d6c8716b20c76473a6d6e6a918a1d18db51e
7
- data.tar.gz: 96219c8b0ca940e9ddb21a33079f47c8422917ad9dc218cc3d31284bac6bc6de5c04f50047a66d6c2da266ec17e0ad5bbecb066784c8eb76d482345ffd054e24
6
+ metadata.gz: 10eebd295492e1f9765a9ad9815cf30db766b0b8eac873113ff9216e73c8bc9812077aa589c53de9dc64de7f74c65f57315a07b7c21cbad183e8d8cb72df80f8
7
+ data.tar.gz: 5a677f5c727e85baaa866d8cf1dbdc8484ee4e4c35902451def6a59e2e74e56fc28d7fca8d28a4aaab927e9aea24a7b23bdafbe30d8c0595eccb951dcc7c0786
@@ -3,5 +3,8 @@ require_relative './hyper_iterator/rails/active_record'
3
3
 
4
4
  module HyperIterator
5
5
  module Rails
6
+ class Railtie < ::Rails::Railtie
7
+ require 'hyper_iterator'
8
+ end
6
9
  end
7
10
  end
@@ -1,5 +1,5 @@
1
1
  module HyperIterator
2
2
  module Rails
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
@@ -0,0 +1,2 @@
1
+ class User < ActiveRecord::Base
2
+ end
Binary file
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :email
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20170318182325) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "email"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ end
21
+
22
+ end
Binary file
@@ -0,0 +1,18 @@
1
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreateUsers (20170318182325)
5
+  (0.0ms) begin transaction
6
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
7
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170318182325"]]
8
+  (0.8ms) commit transaction
9
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+  (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
15
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
+  (0.1ms) SELECT version FROM "schema_migrations"
18
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20170318182325')
@@ -8,3 +8,1170 @@ HyperIteratorRailsTest: test_truth
8
8
  HyperIteratorRailsTest: test_truth
9
9
  ----------------------------------
10
10
   (0.1ms) rollback transaction
11
+  (4.1ms) begin transaction
12
+ ----------------------------------
13
+ HyperIteratorRailsTest: test_truth
14
+ ----------------------------------
15
+  (0.1ms) rollback transaction
16
+  (6.2ms) begin transaction
17
+ -----------------------------------------------------------------
18
+ HyperIteratorRailsTest: test_ActiveRecord_Result_has_each!_method
19
+ -----------------------------------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.5ms) begin transaction
22
+ -----------------------------------------------------------------
23
+ HyperIteratorRailsTest: test_ActiveRecord_Result_has_each!_method
24
+ -----------------------------------------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.5ms) begin transaction
27
+ -----------------------------------------------------------------
28
+ HyperIteratorRailsTest: test_ActiveRecord_Result_has_each!_method
29
+ -----------------------------------------------------------------
30
+  (0.0ms) rollback transaction
31
+  (2.8ms) begin transaction
32
+ -----------------------------
33
+ HyperIteratorRailsTest: test_
34
+ -----------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ------------------------------------------------------------------
38
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
39
+ ------------------------------------------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.4ms) begin transaction
42
+ -----------------------------
43
+ HyperIteratorRailsTest: test_
44
+ -----------------------------
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ ------------------------------------------------------------------
48
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
49
+ ------------------------------------------------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.4ms) begin transaction
52
+ -----------------------------
53
+ HyperIteratorRailsTest: test_
54
+ -----------------------------
55
+  (0.0ms) SAVEPOINT active_record_1
56
+ SQL (4.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:47:39 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:47:39 UTC +00:00]]
57
+  (0.0ms) RELEASE SAVEPOINT active_record_1
58
+  (0.3ms) rollback transaction
59
+  (0.1ms) begin transaction
60
+ ------------------------------------------------------------------
61
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
62
+ ------------------------------------------------------------------
63
+  (0.0ms) rollback transaction
64
+  (2.9ms) begin transaction
65
+ -----------------------------
66
+ HyperIteratorRailsTest: test_
67
+ -----------------------------
68
+  (0.0ms) SAVEPOINT active_record_1
69
+ SQL (3.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00]]
70
+  (0.1ms) RELEASE SAVEPOINT active_record_1
71
+  (0.0ms) SAVEPOINT active_record_1
72
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00]]
73
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74
+ User Load (0.1ms) SELECT "users".* FROM "users"
75
+  (0.0ms) SAVEPOINT active_record_1
76
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
77
+  (0.0ms) RELEASE SAVEPOINT active_record_1
78
+  (0.0ms) SAVEPOINT active_record_1
79
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
80
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81
+  (0.3ms) rollback transaction
82
+  (0.0ms) begin transaction
83
+ ------------------------------------------------------------------
84
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
85
+ ------------------------------------------------------------------
86
+  (0.0ms) SAVEPOINT active_record_1
87
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:48:36 UTC +00:00]]
88
+  (0.0ms) RELEASE SAVEPOINT active_record_1
89
+ User Load (0.1ms) SELECT "users".* FROM "users"
90
+  (0.0ms) SAVEPOINT active_record_1
91
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
92
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93
+  (0.3ms) rollback transaction
94
+  (0.6ms) begin transaction
95
+ ------------------------------------------------------------------
96
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
97
+ ------------------------------------------------------------------
98
+  (0.0ms) SAVEPOINT active_record_1
99
+ SQL (1.9ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:51:34 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:51:34 UTC +00:00]]
100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
101
+ User Load (0.1ms) SELECT "users".* FROM "users"
102
+  (0.0ms) SAVEPOINT active_record_1
103
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105
+  (0.9ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+ -----------------------------------------------------------------------------
108
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
109
+ -----------------------------------------------------------------------------
110
+  (0.0ms) SAVEPOINT active_record_1
111
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:51:34 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:51:34 UTC +00:00]]
112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
113
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foobar@example.com'
114
+ User Load (0.1ms) SELECT "users".* FROM "users"
115
+  (0.0ms) SAVEPOINT active_record_1
116
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
118
+  (0.3ms) rollback transaction
119
+  (0.7ms) begin transaction
120
+ ------------------------------------------------------------------
121
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
122
+ ------------------------------------------------------------------
123
+  (0.0ms) SAVEPOINT active_record_1
124
+ SQL (1.9ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:51:44 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:51:44 UTC +00:00]]
125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
126
+ User Load (0.0ms) SELECT "users".* FROM "users"
127
+  (0.0ms) SAVEPOINT active_record_1
128
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
130
+  (0.9ms) rollback transaction
131
+  (0.0ms) begin transaction
132
+ -----------------------------------------------------------------------------
133
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
134
+ -----------------------------------------------------------------------------
135
+  (0.0ms) SAVEPOINT active_record_1
136
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:51:44 UTC +00:00], ["email", "foobar@example.com"], ["updated_at", Sat, 18 Mar 2017 18:51:44 UTC +00:00]]
137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
138
+ User Load (0.1ms) SELECT "users".* FROM "users"
139
+  (0.0ms) SAVEPOINT active_record_1
140
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
142
+  (0.3ms) rollback transaction
143
+  (2.1ms) begin transaction
144
+ ------------------------------------------------------------------
145
+ HyperIteratorRailsTest: test_ActiveRecord::Result_has_each!_method
146
+ ------------------------------------------------------------------
147
+  (0.0ms) SAVEPOINT active_record_1
148
+ SQL (3.9ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
150
+  (0.0ms) SAVEPOINT active_record_1
151
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
153
+  (0.0ms) SAVEPOINT active_record_1
154
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156
+  (0.0ms) SAVEPOINT active_record_1
157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
159
+  (0.0ms) SAVEPOINT active_record_1
160
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
162
+  (0.0ms) SAVEPOINT active_record_1
163
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
165
+  (0.0ms) SAVEPOINT active_record_1
166
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
168
+  (0.0ms) SAVEPOINT active_record_1
169
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
171
+ User Load (0.1ms) SELECT "users".* FROM "users"
172
+  (0.0ms) SAVEPOINT active_record_1
173
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
175
+  (0.0ms) SAVEPOINT active_record_1
176
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
178
+  (0.0ms) SAVEPOINT active_record_1
179
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
181
+  (0.0ms) SAVEPOINT active_record_1
182
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
184
+  (0.0ms) SAVEPOINT active_record_1
185
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
187
+  (0.0ms) SAVEPOINT active_record_1
188
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190
+  (0.0ms) SAVEPOINT active_record_1
191
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
193
+  (0.0ms) SAVEPOINT active_record_1
194
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
196
+  (0.3ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ -----------------------------------------------------------------------------
199
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
200
+ -----------------------------------------------------------------------------
201
+  (0.0ms) SAVEPOINT active_record_1
202
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
204
+  (0.0ms) SAVEPOINT active_record_1
205
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
207
+  (0.1ms) SAVEPOINT active_record_1
208
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
210
+  (0.0ms) SAVEPOINT active_record_1
211
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
213
+  (0.0ms) SAVEPOINT active_record_1
214
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
216
+  (0.0ms) SAVEPOINT active_record_1
217
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
219
+  (0.0ms) SAVEPOINT active_record_1
220
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
222
+  (0.0ms) SAVEPOINT active_record_1
223
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
225
+ User Load (0.1ms) SELECT "users".* FROM "users"
226
+  (0.0ms) SAVEPOINT active_record_1
227
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
229
+  (0.0ms) SAVEPOINT active_record_1
230
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
232
+  (0.0ms) SAVEPOINT active_record_1
233
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+  (0.0ms) SAVEPOINT active_record_1
242
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
244
+  (0.0ms) SAVEPOINT active_record_1
245
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
247
+  (0.0ms) SAVEPOINT active_record_1
248
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
250
+  (0.3ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ ----------------------------------------------------------------------------
253
+ HyperIteratorRailsTest: test_each!_iterates_through_the_collection_like_each
254
+ ----------------------------------------------------------------------------
255
+  (0.0ms) SAVEPOINT active_record_1
256
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
258
+  (0.1ms) SAVEPOINT active_record_1
259
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
261
+  (0.0ms) SAVEPOINT active_record_1
262
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
264
+  (0.0ms) SAVEPOINT active_record_1
265
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
267
+  (0.0ms) SAVEPOINT active_record_1
268
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
270
+  (0.0ms) SAVEPOINT active_record_1
271
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
273
+  (0.0ms) SAVEPOINT active_record_1
274
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
276
+  (0.0ms) SAVEPOINT active_record_1
277
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:54:00 UTC +00:00]]
278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279
+ User Load (0.1ms) SELECT "users".* FROM "users"
280
+ User Load (0.1ms) SELECT "users".* FROM "users"
281
+  (0.0ms) SAVEPOINT active_record_1
282
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
284
+  (0.0ms) SAVEPOINT active_record_1
285
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
287
+  (0.0ms) SAVEPOINT active_record_1
288
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
290
+  (0.0ms) SAVEPOINT active_record_1
291
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
293
+  (0.0ms) SAVEPOINT active_record_1
294
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296
+  (0.0ms) SAVEPOINT active_record_1
297
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
299
+  (0.0ms) SAVEPOINT active_record_1
300
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302
+  (0.0ms) SAVEPOINT active_record_1
303
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305
+  (0.4ms) rollback transaction
306
+  (2.9ms) begin transaction
307
+ --------------------------------------------------------------------------
308
+ HyperIteratorRailsTest: test_ActiveRecord::Result_responds_to_each!_method
309
+ --------------------------------------------------------------------------
310
+  (0.0ms) SAVEPOINT active_record_1
311
+ SQL (3.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
313
+  (0.0ms) SAVEPOINT active_record_1
314
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
316
+  (0.0ms) SAVEPOINT active_record_1
317
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
319
+  (0.0ms) SAVEPOINT active_record_1
320
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
+  (0.0ms) SAVEPOINT active_record_1
326
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
328
+  (0.0ms) SAVEPOINT active_record_1
329
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
331
+  (0.0ms) SAVEPOINT active_record_1
332
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
334
+ User Load (0.1ms) SELECT "users".* FROM "users"
335
+  (0.0ms) SAVEPOINT active_record_1
336
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
338
+  (0.0ms) SAVEPOINT active_record_1
339
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
341
+  (0.0ms) SAVEPOINT active_record_1
342
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
344
+  (0.0ms) SAVEPOINT active_record_1
345
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
347
+  (0.0ms) SAVEPOINT active_record_1
348
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
350
+  (0.0ms) SAVEPOINT active_record_1
351
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
353
+  (0.0ms) SAVEPOINT active_record_1
354
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
356
+  (0.0ms) SAVEPOINT active_record_1
357
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
359
+  (0.6ms) rollback transaction
360
+  (0.1ms) begin transaction
361
+ -----------------------------------------------------------------------------
362
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
363
+ -----------------------------------------------------------------------------
364
+  (0.0ms) SAVEPOINT active_record_1
365
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
367
+  (0.0ms) SAVEPOINT active_record_1
368
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
370
+  (0.0ms) SAVEPOINT active_record_1
371
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
373
+  (0.0ms) SAVEPOINT active_record_1
374
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
376
+  (0.0ms) SAVEPOINT active_record_1
377
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
382
+  (0.0ms) SAVEPOINT active_record_1
383
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
385
+  (0.0ms) SAVEPOINT active_record_1
386
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
388
+ User Load (0.1ms) SELECT "users".* FROM "users"
389
+  (0.0ms) SAVEPOINT active_record_1
390
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
392
+  (0.0ms) SAVEPOINT active_record_1
393
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
395
+  (0.0ms) SAVEPOINT active_record_1
396
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
398
+  (0.0ms) SAVEPOINT active_record_1
399
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
401
+  (0.0ms) SAVEPOINT active_record_1
402
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
404
+  (0.0ms) SAVEPOINT active_record_1
405
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
407
+  (0.0ms) SAVEPOINT active_record_1
408
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
410
+  (0.0ms) SAVEPOINT active_record_1
411
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
413
+  (0.8ms) rollback transaction
414
+  (0.1ms) begin transaction
415
+ ----------------------------------------------------------------------------
416
+ HyperIteratorRailsTest: test_each!_iterates_through_the_collection_like_each
417
+ ----------------------------------------------------------------------------
418
+  (0.1ms) SAVEPOINT active_record_1
419
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
421
+  (0.0ms) SAVEPOINT active_record_1
422
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
424
+  (0.1ms) SAVEPOINT active_record_1
425
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
427
+  (0.0ms) SAVEPOINT active_record_1
428
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
430
+  (0.0ms) SAVEPOINT active_record_1
431
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
433
+  (0.0ms) SAVEPOINT active_record_1
434
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
436
+  (0.0ms) SAVEPOINT active_record_1
437
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
439
+  (0.0ms) SAVEPOINT active_record_1
440
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+ User Load (0.1ms) SELECT "users".* FROM "users"
443
+ User Load (0.1ms) SELECT "users".* FROM "users"
444
+  (0.0ms) SAVEPOINT active_record_1
445
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
447
+  (0.0ms) SAVEPOINT active_record_1
448
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
450
+  (0.0ms) SAVEPOINT active_record_1
451
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
453
+  (0.0ms) SAVEPOINT active_record_1
454
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
456
+  (0.0ms) SAVEPOINT active_record_1
457
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
459
+  (0.0ms) SAVEPOINT active_record_1
460
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
462
+  (0.0ms) SAVEPOINT active_record_1
463
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
465
+  (0.0ms) SAVEPOINT active_record_1
466
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
468
+  (0.3ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+ ------------------------------------------------------------------------
471
+ HyperIteratorRailsTest: test_each!_iterates_through_the_result_like_each
472
+ ------------------------------------------------------------------------
473
+  (0.0ms) SAVEPOINT active_record_1
474
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
476
+  (0.0ms) SAVEPOINT active_record_1
477
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
479
+  (0.0ms) SAVEPOINT active_record_1
480
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
482
+  (0.0ms) SAVEPOINT active_record_1
483
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
485
+  (0.0ms) SAVEPOINT active_record_1
486
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
488
+  (0.0ms) SAVEPOINT active_record_1
489
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
491
+  (0.0ms) SAVEPOINT active_record_1
492
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
494
+  (0.0ms) SAVEPOINT active_record_1
495
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 18:56:53 UTC +00:00]]
496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
497
+  (0.1ms) select * from users
498
+ User Load (0.1ms) SELECT "users".* FROM "users"
499
+  (0.0ms) SAVEPOINT active_record_1
500
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
502
+  (0.0ms) SAVEPOINT active_record_1
503
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
505
+  (0.0ms) SAVEPOINT active_record_1
506
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
508
+  (0.0ms) SAVEPOINT active_record_1
509
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
511
+  (0.0ms) SAVEPOINT active_record_1
512
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
513
+  (0.1ms) RELEASE SAVEPOINT active_record_1
514
+  (0.0ms) SAVEPOINT active_record_1
515
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
520
+  (0.0ms) SAVEPOINT active_record_1
521
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
523
+  (0.3ms) rollback transaction
524
+  (3.1ms) begin transaction
525
+ --------------------------------------------------------------------------
526
+ HyperIteratorRailsTest: test_ActiveRecord::Result_responds_to_each!_method
527
+ --------------------------------------------------------------------------
528
+  (0.0ms) SAVEPOINT active_record_1
529
+ SQL (3.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
531
+  (0.0ms) SAVEPOINT active_record_1
532
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
534
+  (0.0ms) SAVEPOINT active_record_1
535
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
537
+  (0.0ms) SAVEPOINT active_record_1
538
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
540
+  (0.0ms) SAVEPOINT active_record_1
541
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
543
+  (0.0ms) SAVEPOINT active_record_1
544
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
546
+  (0.0ms) SAVEPOINT active_record_1
547
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
549
+  (0.0ms) SAVEPOINT active_record_1
550
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
552
+ User Load (0.1ms) SELECT "users".* FROM "users"
553
+  (0.0ms) SAVEPOINT active_record_1
554
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
556
+  (0.0ms) SAVEPOINT active_record_1
557
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
559
+  (0.0ms) SAVEPOINT active_record_1
560
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
562
+  (0.0ms) SAVEPOINT active_record_1
563
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
565
+  (0.0ms) SAVEPOINT active_record_1
566
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
568
+  (0.0ms) SAVEPOINT active_record_1
569
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
571
+  (0.0ms) SAVEPOINT active_record_1
572
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
574
+  (0.0ms) SAVEPOINT active_record_1
575
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
577
+  (0.3ms) rollback transaction
578
+  (0.1ms) begin transaction
579
+ -----------------------------------------------------------------------------
580
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
581
+ -----------------------------------------------------------------------------
582
+  (0.0ms) SAVEPOINT active_record_1
583
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
585
+  (0.1ms) SAVEPOINT active_record_1
586
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
588
+  (0.0ms) SAVEPOINT active_record_1
589
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
591
+  (0.1ms) SAVEPOINT active_record_1
592
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
594
+  (0.0ms) SAVEPOINT active_record_1
595
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
597
+  (0.0ms) SAVEPOINT active_record_1
598
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
600
+  (0.0ms) SAVEPOINT active_record_1
601
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+  (0.0ms) SAVEPOINT active_record_1
604
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
606
+ User Load (0.1ms) SELECT "users".* FROM "users"
607
+  (0.0ms) SAVEPOINT active_record_1
608
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
610
+  (0.0ms) SAVEPOINT active_record_1
611
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
613
+  (0.0ms) SAVEPOINT active_record_1
614
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
616
+  (0.0ms) SAVEPOINT active_record_1
617
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
619
+  (0.0ms) SAVEPOINT active_record_1
620
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+  (0.0ms) SAVEPOINT active_record_1
623
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
625
+  (0.0ms) SAVEPOINT active_record_1
626
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
628
+  (0.0ms) SAVEPOINT active_record_1
629
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
631
+  (0.3ms) rollback transaction
632
+  (0.0ms) begin transaction
633
+ ----------------------------------------------------------------------------
634
+ HyperIteratorRailsTest: test_each!_iterates_through_the_collection_like_each
635
+ ----------------------------------------------------------------------------
636
+  (0.0ms) SAVEPOINT active_record_1
637
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
639
+  (0.0ms) SAVEPOINT active_record_1
640
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
642
+  (0.0ms) SAVEPOINT active_record_1
643
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
645
+  (0.0ms) SAVEPOINT active_record_1
646
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
648
+  (0.0ms) SAVEPOINT active_record_1
649
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
651
+  (0.0ms) SAVEPOINT active_record_1
652
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
654
+  (0.0ms) SAVEPOINT active_record_1
655
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
657
+  (0.0ms) SAVEPOINT active_record_1
658
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
660
+ User Load (0.1ms) SELECT "users".* FROM "users"
661
+ User Load (0.1ms) SELECT "users".* FROM "users"
662
+  (0.0ms) SAVEPOINT active_record_1
663
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
665
+  (0.0ms) SAVEPOINT active_record_1
666
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
668
+  (0.0ms) SAVEPOINT active_record_1
669
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
671
+  (0.0ms) SAVEPOINT active_record_1
672
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
674
+  (0.0ms) SAVEPOINT active_record_1
675
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
677
+  (0.0ms) SAVEPOINT active_record_1
678
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
680
+  (0.0ms) SAVEPOINT active_record_1
681
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
683
+  (0.0ms) SAVEPOINT active_record_1
684
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
686
+  (0.3ms) rollback transaction
687
+  (0.1ms) begin transaction
688
+ ------------------------------------------------------------------------
689
+ HyperIteratorRailsTest: test_each!_iterates_through_the_result_like_each
690
+ ------------------------------------------------------------------------
691
+  (0.0ms) SAVEPOINT active_record_1
692
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
694
+  (0.0ms) SAVEPOINT active_record_1
695
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
697
+  (0.0ms) SAVEPOINT active_record_1
698
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
700
+  (0.0ms) SAVEPOINT active_record_1
701
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
703
+  (0.0ms) SAVEPOINT active_record_1
704
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
706
+  (0.0ms) SAVEPOINT active_record_1
707
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
709
+  (0.0ms) SAVEPOINT active_record_1
710
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:05:00 UTC +00:00]]
714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
715
+  (0.1ms) select * from users
716
+ User Load (0.1ms) SELECT "users".* FROM "users"
717
+  (0.0ms) SAVEPOINT active_record_1
718
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
720
+  (0.0ms) SAVEPOINT active_record_1
721
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
723
+  (0.0ms) SAVEPOINT active_record_1
724
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
726
+  (0.0ms) SAVEPOINT active_record_1
727
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+  (0.0ms) SAVEPOINT active_record_1
733
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
735
+  (0.0ms) SAVEPOINT active_record_1
736
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
738
+  (0.0ms) SAVEPOINT active_record_1
739
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
741
+  (0.4ms) rollback transaction
742
+  (2.7ms) begin transaction
743
+ --------------------------------------------------------------------------
744
+ HyperIteratorRailsTest: test_ActiveRecord::Result_responds_to_each!_method
745
+ --------------------------------------------------------------------------
746
+  (0.0ms) SAVEPOINT active_record_1
747
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
748
+  (0.1ms) RELEASE SAVEPOINT active_record_1
749
+  (0.0ms) SAVEPOINT active_record_1
750
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
752
+  (0.0ms) SAVEPOINT active_record_1
753
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
755
+  (0.0ms) SAVEPOINT active_record_1
756
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
758
+  (0.0ms) SAVEPOINT active_record_1
759
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
761
+  (0.0ms) SAVEPOINT active_record_1
762
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
764
+  (0.0ms) SAVEPOINT active_record_1
765
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
767
+  (0.0ms) SAVEPOINT active_record_1
768
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
770
+ User Load (0.1ms) SELECT "users".* FROM "users"
771
+  (0.0ms) SAVEPOINT active_record_1
772
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
774
+  (0.0ms) SAVEPOINT active_record_1
775
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
777
+  (0.0ms) SAVEPOINT active_record_1
778
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
780
+  (0.0ms) SAVEPOINT active_record_1
781
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783
+  (0.0ms) SAVEPOINT active_record_1
784
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
786
+  (0.0ms) SAVEPOINT active_record_1
787
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
789
+  (0.0ms) SAVEPOINT active_record_1
790
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
792
+  (0.0ms) SAVEPOINT active_record_1
793
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
795
+  (0.3ms) rollback transaction
796
+  (0.0ms) begin transaction
797
+ -----------------------------------------------------------------------------
798
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
799
+ -----------------------------------------------------------------------------
800
+  (0.0ms) SAVEPOINT active_record_1
801
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
803
+  (0.0ms) SAVEPOINT active_record_1
804
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
806
+  (0.0ms) SAVEPOINT active_record_1
807
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
809
+  (0.0ms) SAVEPOINT active_record_1
810
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
812
+  (0.0ms) SAVEPOINT active_record_1
813
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
815
+  (0.0ms) SAVEPOINT active_record_1
816
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
818
+  (0.0ms) SAVEPOINT active_record_1
819
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
821
+  (0.0ms) SAVEPOINT active_record_1
822
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
824
+ User Load (0.1ms) SELECT "users".* FROM "users"
825
+  (0.0ms) SAVEPOINT active_record_1
826
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
828
+  (0.0ms) SAVEPOINT active_record_1
829
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
831
+  (0.0ms) SAVEPOINT active_record_1
832
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
834
+  (0.0ms) SAVEPOINT active_record_1
835
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
837
+  (0.0ms) SAVEPOINT active_record_1
838
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
840
+  (0.0ms) SAVEPOINT active_record_1
841
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
843
+  (0.0ms) SAVEPOINT active_record_1
844
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
846
+  (0.0ms) SAVEPOINT active_record_1
847
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
849
+  (0.4ms) rollback transaction
850
+  (0.0ms) begin transaction
851
+ ----------------------------------------------------------------------------
852
+ HyperIteratorRailsTest: test_each!_iterates_through_the_collection_like_each
853
+ ----------------------------------------------------------------------------
854
+  (0.0ms) SAVEPOINT active_record_1
855
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
857
+  (0.0ms) SAVEPOINT active_record_1
858
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
860
+  (0.0ms) SAVEPOINT active_record_1
861
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
863
+  (0.0ms) SAVEPOINT active_record_1
864
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
866
+  (0.0ms) SAVEPOINT active_record_1
867
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
869
+  (0.0ms) SAVEPOINT active_record_1
870
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
872
+  (0.0ms) SAVEPOINT active_record_1
873
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
875
+  (0.0ms) SAVEPOINT active_record_1
876
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
878
+ User Load (0.1ms) SELECT "users".* FROM "users"
879
+ User Load (0.1ms) SELECT "users".* FROM "users"
880
+  (0.0ms) SAVEPOINT active_record_1
881
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
882
+  (0.1ms) RELEASE SAVEPOINT active_record_1
883
+  (0.0ms) SAVEPOINT active_record_1
884
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+  (0.0ms) SAVEPOINT active_record_1
887
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
889
+  (0.0ms) SAVEPOINT active_record_1
890
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
892
+  (0.0ms) SAVEPOINT active_record_1
893
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
895
+  (0.0ms) SAVEPOINT active_record_1
896
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
898
+  (0.0ms) SAVEPOINT active_record_1
899
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
901
+  (0.0ms) SAVEPOINT active_record_1
902
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
904
+  (0.4ms) rollback transaction
905
+  (0.0ms) begin transaction
906
+ ------------------------------------------------------------------------
907
+ HyperIteratorRailsTest: test_each!_iterates_through_the_result_like_each
908
+ ------------------------------------------------------------------------
909
+  (0.0ms) SAVEPOINT active_record_1
910
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
912
+  (0.1ms) SAVEPOINT active_record_1
913
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
918
+  (0.0ms) SAVEPOINT active_record_1
919
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
921
+  (0.1ms) SAVEPOINT active_record_1
922
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
924
+  (0.0ms) SAVEPOINT active_record_1
925
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
927
+  (0.0ms) SAVEPOINT active_record_1
928
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
929
+  (4.2ms) RELEASE SAVEPOINT active_record_1
930
+  (0.0ms) SAVEPOINT active_record_1
931
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:26 UTC +00:00]]
932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
933
+  (0.1ms) select * from users
934
+ User Load (0.1ms) SELECT "users".* FROM "users"
935
+  (0.0ms) SAVEPOINT active_record_1
936
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
938
+  (0.0ms) SAVEPOINT active_record_1
939
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
941
+  (0.0ms) SAVEPOINT active_record_1
942
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
944
+  (0.1ms) SAVEPOINT active_record_1
945
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
947
+  (0.0ms) SAVEPOINT active_record_1
948
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
950
+  (0.0ms) SAVEPOINT active_record_1
951
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
953
+  (0.0ms) SAVEPOINT active_record_1
954
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
956
+  (0.0ms) SAVEPOINT active_record_1
957
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
959
+  (0.4ms) rollback transaction
960
+  (2.9ms) begin transaction
961
+ --------------------------------------------------------------------------
962
+ HyperIteratorRailsTest: test_ActiveRecord::Result_responds_to_each!_method
963
+ --------------------------------------------------------------------------
964
+  (0.1ms) SAVEPOINT active_record_1
965
+ SQL (4.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
967
+  (0.0ms) SAVEPOINT active_record_1
968
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
970
+  (0.0ms) SAVEPOINT active_record_1
971
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
973
+  (0.0ms) SAVEPOINT active_record_1
974
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+  (0.0ms) SAVEPOINT active_record_1
977
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
979
+  (0.0ms) SAVEPOINT active_record_1
980
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:15:59 UTC +00:00]]
981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
982
+  (0.0ms) SAVEPOINT active_record_1
983
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
985
+  (0.0ms) SAVEPOINT active_record_1
986
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
988
+ User Load (0.1ms) SELECT "users".* FROM "users"
989
+  (0.0ms) SAVEPOINT active_record_1
990
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
992
+  (0.0ms) SAVEPOINT active_record_1
993
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
995
+  (0.0ms) SAVEPOINT active_record_1
996
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
998
+  (0.1ms) SAVEPOINT active_record_1
999
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.0ms) SAVEPOINT active_record_1
1002
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
1003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.0ms) SAVEPOINT active_record_1
1005
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
1006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1007
+  (0.0ms) SAVEPOINT active_record_1
1008
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
1009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1010
+  (0.0ms) SAVEPOINT active_record_1
1011
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
1012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1013
+  (0.3ms) rollback transaction
1014
+  (0.0ms) begin transaction
1015
+ -----------------------------------------------------------------------------
1016
+ HyperIteratorRailsTest: test_ActiveRecord_collection_responds_to_each!_method
1017
+ -----------------------------------------------------------------------------
1018
+  (0.0ms) SAVEPOINT active_record_1
1019
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1021
+  (0.0ms) SAVEPOINT active_record_1
1022
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1024
+  (0.0ms) SAVEPOINT active_record_1
1025
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.0ms) SAVEPOINT active_record_1
1028
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1030
+  (0.0ms) SAVEPOINT active_record_1
1031
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033
+  (0.1ms) SAVEPOINT active_record_1
1034
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1036
+  (0.0ms) SAVEPOINT active_record_1
1037
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1039
+  (0.0ms) SAVEPOINT active_record_1
1040
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1042
+ User Load (0.1ms) SELECT "users".* FROM "users"
1043
+  (0.0ms) SAVEPOINT active_record_1
1044
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1046
+  (0.0ms) SAVEPOINT active_record_1
1047
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1049
+  (0.0ms) SAVEPOINT active_record_1
1050
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1052
+  (0.0ms) SAVEPOINT active_record_1
1053
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1055
+  (0.0ms) SAVEPOINT active_record_1
1056
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
1057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1058
+  (0.0ms) SAVEPOINT active_record_1
1059
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
1060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.0ms) SAVEPOINT active_record_1
1062
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
1063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1064
+  (0.0ms) SAVEPOINT active_record_1
1065
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
1066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1067
+  (0.3ms) rollback transaction
1068
+  (0.0ms) begin transaction
1069
+ ----------------------------------------------------------------------------
1070
+ HyperIteratorRailsTest: test_each!_iterates_through_the_collection_like_each
1071
+ ----------------------------------------------------------------------------
1072
+  (0.0ms) SAVEPOINT active_record_1
1073
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1075
+  (0.0ms) SAVEPOINT active_record_1
1076
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078
+  (0.0ms) SAVEPOINT active_record_1
1079
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1081
+  (0.0ms) SAVEPOINT active_record_1
1082
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1084
+  (0.0ms) SAVEPOINT active_record_1
1085
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1087
+  (0.0ms) SAVEPOINT active_record_1
1088
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1090
+  (0.0ms) SAVEPOINT active_record_1
1091
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1093
+  (0.0ms) SAVEPOINT active_record_1
1094
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1096
+ User Load (0.1ms) SELECT "users".* FROM "users"
1097
+ User Load (0.1ms) SELECT "users".* FROM "users"
1098
+  (0.0ms) SAVEPOINT active_record_1
1099
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1101
+  (0.0ms) SAVEPOINT active_record_1
1102
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1104
+  (0.0ms) SAVEPOINT active_record_1
1105
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1107
+  (0.0ms) SAVEPOINT active_record_1
1108
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1110
+  (0.0ms) SAVEPOINT active_record_1
1111
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
1112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1113
+  (0.0ms) SAVEPOINT active_record_1
1114
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
1115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1116
+  (0.0ms) SAVEPOINT active_record_1
1117
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
1118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1119
+  (0.0ms) SAVEPOINT active_record_1
1120
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
1121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1122
+  (0.4ms) rollback transaction
1123
+  (0.0ms) begin transaction
1124
+ ------------------------------------------------------------------------
1125
+ HyperIteratorRailsTest: test_each!_iterates_through_the_result_like_each
1126
+ ------------------------------------------------------------------------
1127
+  (0.0ms) SAVEPOINT active_record_1
1128
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar1@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1130
+  (0.0ms) SAVEPOINT active_record_1
1131
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar2@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1133
+  (0.0ms) SAVEPOINT active_record_1
1134
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar3@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1136
+  (0.0ms) SAVEPOINT active_record_1
1137
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar4@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1139
+  (0.0ms) SAVEPOINT active_record_1
1140
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar5@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1142
+  (0.0ms) SAVEPOINT active_record_1
1143
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar6@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1145
+  (0.0ms) SAVEPOINT active_record_1
1146
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar7@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1148
+  (0.0ms) SAVEPOINT active_record_1
1149
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00], ["email", "foobar8@example.com"], ["updated_at", Sat, 18 Mar 2017 19:16:00 UTC +00:00]]
1150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.1ms) select * from users
1152
+ User Load (0.1ms) SELECT "users".* FROM "users"
1153
+  (0.0ms) SAVEPOINT active_record_1
1154
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1156
+  (0.0ms) SAVEPOINT active_record_1
1157
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1159
+  (0.0ms) SAVEPOINT active_record_1
1160
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1162
+  (0.0ms) SAVEPOINT active_record_1
1163
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1165
+  (0.0ms) SAVEPOINT active_record_1
1166
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
1167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1168
+  (0.0ms) SAVEPOINT active_record_1
1169
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
1170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1171
+  (0.0ms) SAVEPOINT active_record_1
1172
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
1173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1174
+  (0.0ms) SAVEPOINT active_record_1
1175
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
1176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1177
+  (0.7ms) rollback transaction