switchman 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/switchman/shard.rb +35 -21
- data/lib/switchman/version.rb +1 -1
- data/spec/dummy/db/shard_820.sqlite3 +0 -0
- data/spec/dummy/log/test.log +3600 -0
- data/spec/dummy/tmp/cache/34B/EF0/shard%2F830 +1 -0
- data/spec/dummy/tmp/cache/351/F30/shard%2F818 +1 -0
- data/spec/dummy/tmp/cache/3B3/090/shard%2F10819 +1 -0
- metadata +10 -4
- data/spec/dummy/tmp/cache/34F/F30/shard%2F834 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae59acff191e791770b3e05bb8dc0d60239f2ebb
|
4
|
+
data.tar.gz: 164cc804949ea85c183452c3d0bf0aaf6af3044e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e42da88f10b7c64b13b5612355591ab22a484d303306f2eddf7fb4fd97131b1d4876ebca95fc11dddd634e95ae1d0fa75cde976aa4438985f57db123b54b9efe
|
7
|
+
data.tar.gz: 0edd41594fdbf3d4202b3de62faef8a9d2e63112afe7c60ab5493bad8e71c6013dc380d6e3f3ecfddc8fc7835033cc95bf711f99e7c9e560052dee498129efaa
|
@@ -159,6 +159,13 @@ module Switchman
|
|
159
159
|
options[:parallel]
|
160
160
|
end
|
161
161
|
options.delete(:parallel)
|
162
|
+
|
163
|
+
max_procs = options.delete(:max_procs)
|
164
|
+
if max_procs
|
165
|
+
max_procs = max_procs.to_i
|
166
|
+
max_procs = nil if max_procs == 0
|
167
|
+
end
|
168
|
+
|
162
169
|
scope ||= ::Rails.version < '4' ? Shard.scoped : Shard.all
|
163
170
|
if ::ActiveRecord::Relation === scope && scope.order_values.empty?
|
164
171
|
scope = scope.order("database_server_id IS NOT NULL, database_server_id, id")
|
@@ -169,6 +176,8 @@ module Switchman
|
|
169
176
|
# still need a post-uniq, cause the default database server could be NULL or Rails.env in the db
|
170
177
|
database_servers = scope.reorder('database_server_id').select(:database_server_id).uniq.
|
171
178
|
map(&:database_server).compact.uniq
|
179
|
+
parallel = [(max_procs.to_f / database_servers.count).ceil, parallel].min
|
180
|
+
|
172
181
|
scopes = Hash[database_servers.map do |server|
|
173
182
|
server_scope = server.shards.merge(scope)
|
174
183
|
if parallel == 1
|
@@ -193,6 +202,7 @@ module Switchman
|
|
193
202
|
else
|
194
203
|
scopes = scope.group_by(&:database_server)
|
195
204
|
if parallel > 1
|
205
|
+
parallel = [(max_procs.to_f / scopes.count).ceil, parallel].min
|
196
206
|
scopes = Hash[scopes.map do |(server, shards)|
|
197
207
|
[server, shards.in_groups(parallel, false).compact]
|
198
208
|
end]
|
@@ -203,6 +213,21 @@ module Switchman
|
|
203
213
|
out_fds = []
|
204
214
|
err_fds = []
|
205
215
|
pids = []
|
216
|
+
|
217
|
+
wait_for_output = lambda do |out_fds, err_fds, fd_to_name_map|
|
218
|
+
ready, _ = IO.select(out_fds + err_fds)
|
219
|
+
ready.each do |fd|
|
220
|
+
if fd.eof?
|
221
|
+
fd.close
|
222
|
+
out_fds.delete(fd)
|
223
|
+
err_fds.delete(fd)
|
224
|
+
next
|
225
|
+
end
|
226
|
+
line = fd.readline
|
227
|
+
puts "#{fd_to_name_map[fd]}: #{line}"
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
206
231
|
exception_pipe = IO.pipe
|
207
232
|
scopes.each do |server, subscopes|
|
208
233
|
if !(::ActiveRecord::Relation === subscopes.first) && subscopes.first.class != Array
|
@@ -215,12 +240,6 @@ module Switchman
|
|
215
240
|
return with_each_shard(subscopes.first, categories, options) { yield }
|
216
241
|
end
|
217
242
|
|
218
|
-
max_procs = options.delete(:max_procs)
|
219
|
-
if max_procs
|
220
|
-
max_procs = max_procs.to_i
|
221
|
-
max_procs = nil if max_procs == 0
|
222
|
-
end
|
223
|
-
|
224
243
|
subscopes.each_with_index do |subscope, idx|
|
225
244
|
if subscopes.length > 1
|
226
245
|
name = "#{server.id} #{idx + 1}"
|
@@ -248,28 +267,23 @@ module Switchman
|
|
248
267
|
fd_to_name_map[details[2]] = name
|
249
268
|
fd_to_name_map[details[3]] = name
|
250
269
|
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
ready, _ = IO.select(out_fds + err_fds)
|
256
|
-
ready.each do |fd|
|
257
|
-
if fd.eof?
|
258
|
-
fd.close
|
259
|
-
out_fds.delete(fd)
|
260
|
-
err_fds.delete(fd)
|
261
|
-
next
|
262
|
-
end
|
263
|
-
line = fd.readline
|
264
|
-
puts "#{fd_to_name_map[fd]}: #{line}"
|
265
|
-
end
|
270
|
+
while max_procs && pids.count >= max_procs
|
271
|
+
while max_procs && out_fds.count >= max_procs
|
272
|
+
# wait for output if we've hit the max_procs limit
|
273
|
+
wait_for_output.call(out_fds, err_fds, fd_to_name_map)
|
266
274
|
end
|
267
275
|
pids.delete(Process.wait) # we've gotten all the output from one fd so wait for its child process to exit
|
268
276
|
end
|
269
277
|
end
|
270
278
|
end
|
279
|
+
|
271
280
|
exception_pipe.last.close
|
272
281
|
|
282
|
+
while out_fds.any? || err_fds.any?
|
283
|
+
wait_for_output.call(out_fds, err_fds, fd_to_name_map)
|
284
|
+
end
|
285
|
+
pids.each { |pid| Process.waitpid2(pid) }
|
286
|
+
|
273
287
|
# I'm not sure why, but we have to do this
|
274
288
|
::ActiveRecord::Base.clear_all_connections!
|
275
289
|
# check for an exception; we only re-raise the first one
|
data/lib/switchman/version.rb
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -941271,3 +941271,3603 @@ DETAIL: Failing row contains (1228, null, null, null, null, null, null).
|
|
941271
941271
|
[1m[36m (0.2ms)[0m [1mBEGIN[0m [1:816 master]
|
941272
941272
|
[1m[35m (1.0ms)[0m INSERT INTO users(created_at, updated_at) VALUES('2014-07-07', '2014-07-07') [test:814 master]
|
941273
941273
|
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m [test:814 master]
|
941274
|
+
[1m[36m (3.2ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
941275
|
+
[1m[35mSwitchman::Shard Load (4.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
941276
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
941277
|
+
[1m[35mSwitchman::Shard Load (1.8ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'development' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
941278
|
+
[1m[36m (0.4ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m [development: master]
|
941279
|
+
[1m[35mSQL (2.1ms)[0m DELETE FROM "switchman_shards" [test:814 master]
|
941280
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:814 master]
|
941281
|
+
[1m[35m (0.1ms)[0m BEGIN [test:814 master]
|
941282
|
+
[1m[36mSwitchman::Shard Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:814 master]
|
941283
|
+
[1m[35mSQL (2.9ms)[0m INSERT INTO "switchman_shards" ("default") VALUES ($1) RETURNING "id" [["default", true]] [test:814 master]
|
941284
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m [test:814 master]
|
941285
|
+
[1m[35mSwitchman::Shard Load (0.6ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:814 master]
|
941286
|
+
[1m[36mSwitchman::Shard Load (0.8ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='test') AND "switchman_shards"."name" = 'shard1' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941287
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NOT NULL AND name='shard2') ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941288
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941289
|
+
[1m[35mSQL (6.9ms)[0m INSERT INTO "switchman_shards" ("name") VALUES ($1) RETURNING "id" [["name", "shard1"]] [test:817 master]
|
941290
|
+
[1m[36m (5.7ms)[0m [1mCOMMIT[0m [test:817 master]
|
941291
|
+
[1m[35m (0.2ms)[0m BEGIN [test:817 master]
|
941292
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id"[0m [["database_server_id", "1"], ["name", "shard2"]] [test:817 master]
|
941293
|
+
[1m[35m (6.1ms)[0m COMMIT [test:817 master]
|
941294
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
941295
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941296
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941297
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
941298
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
941299
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
941300
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941301
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941302
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
941303
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
941304
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941305
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
941306
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
941307
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941308
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941309
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941310
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941311
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941312
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941313
|
+
[1m[35mSQL (6.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:817 master]
|
941314
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941315
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941316
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
941317
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941318
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941319
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941320
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941321
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941322
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941323
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
941324
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941325
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941326
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941327
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941328
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941330
|
+
[1m[36mSQL (4.8ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:818 master]
|
941331
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941333
|
+
[1m[35mSQL (3.6ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:818 master]
|
941334
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941335
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
941336
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941337
|
+
[1m[35mSQL (27.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [1:819 master]
|
941338
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941339
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941340
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
941341
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941342
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941343
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941344
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941345
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941346
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941347
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:818 master]
|
941348
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941349
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941350
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941351
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941352
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941353
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941354
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941355
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941357
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:817 master]
|
941358
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941360
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:818 master]
|
941361
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941362
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941363
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941364
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941365
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941366
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941367
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941368
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941369
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941370
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941371
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941372
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941373
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941374
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941375
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941376
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941377
|
+
[1m[35mSQL (3.0ms)[0m INSERT INTO "roots" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [test:817 master]
|
941378
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941379
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941380
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941381
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941382
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941383
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941384
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941385
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941386
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941387
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941388
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
941389
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941390
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941391
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
941392
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941393
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941394
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941395
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941396
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941397
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941398
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941399
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941400
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941401
|
+
[1m[35mSwitchman::Shard Exists (0.4ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
941402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
941403
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
941404
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941405
|
+
[1m[35m (0.2ms)[0m BEGIN [test:817 master]
|
941406
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
941407
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
941408
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941409
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
941410
|
+
[1m[36m (1.1ms)[0m [1mCOMMIT[0m [test:817 master]
|
941411
|
+
[1m[35m (1.7ms)[0m BEGIN [test:817 master]
|
941412
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941413
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941414
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941415
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941416
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '2' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941418
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "2"]] [test:817 master]
|
941419
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
941420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m [2:820 deploy]
|
941421
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [2:820 deploy]
|
941422
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m [2:820 deploy]
|
941423
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations" [2:820 deploy]
|
941424
|
+
Migrating to CreateSwitchmanShards (20130328212039)
|
941425
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "switchman_shards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "database_server_id" varchar(255), "default" boolean DEFAULT 'f' NOT NULL) [0m [2:820 deploy]
|
941426
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130328212039"]] [2:820 deploy]
|
941427
|
+
Migrating to CreateDefaultShard (20130328224244)
|
941428
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130328224244"]] [2:820 deploy]
|
941429
|
+
Migrating to CreateUsers (20130403132607)
|
941430
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "mirror_user_id" integer(8), "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941431
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130403132607"]] [2:820 deploy]
|
941432
|
+
Migrating to CreateAppendages (20130411202442)
|
941433
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "appendages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "value" integer, "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941434
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130411202442"]] [2:820 deploy]
|
941435
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
941436
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "mirror_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941437
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130411202551"]] [2:820 deploy]
|
941438
|
+
Migrating to CreateDigits (20131022202028)
|
941439
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "digits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "appendage_id" integer(8), "value" integer, "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941440
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20131022202028"]] [2:820 deploy]
|
941441
|
+
Migrating to CreateFeatures (20131206172923)
|
941442
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "features" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer(8), "owner_type" varchar(255), "value" integer, "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941443
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20131206172923"]] [2:820 deploy]
|
941444
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
941445
|
+
[1m[35m (1.0ms)[0m ALTER TABLE "users" ADD "parent_id" integer(8) [2:820 deploy]
|
941446
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123154135"]] [2:820 deploy]
|
941447
|
+
Migrating to CreateRoots (20140219183820)
|
941448
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "roots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime, "updated_at" datetime) [2:820 deploy]
|
941449
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140219183820"]] [2:820 deploy]
|
941450
|
+
Migrating to AddDummyForeignKey (20150618035859)
|
941451
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "broken_id" integer(8) [2:820 deploy]
|
941452
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150618035859"]] [2:820 deploy]
|
941453
|
+
[1m[35m (1.2ms)[0m commit transaction [2:820 deploy]
|
941454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941455
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 820 [["name", "db/shard_820.sqlite3"]] [test:817 master]
|
941456
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941457
|
+
[1m[35m (0.1ms)[0m begin transaction [2:820 master]
|
941458
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [2:820 master]
|
941459
|
+
[1m[35m (0.8ms)[0m commit transaction [2:820 master]
|
941460
|
+
Drop failed: No such file or directory @ unlink_internal - db/shard_820.sqlite3
|
941461
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941462
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 820]] [test:817 master]
|
941463
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941464
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941465
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
941466
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941467
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941468
|
+
[1m[35mSwitchman::Shard Load (0.5ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941469
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941470
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941471
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '3' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941472
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941473
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id"[0m [["database_server_id", "3"], ["name", "public"]] [test:817 master]
|
941474
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
941475
|
+
[1m[36m (17.5ms)[0m [1mCREATE SCHEMA switchman_dummy_test_shard_821[0m [3:821 deploy]
|
941476
|
+
[1m[35m (0.1ms)[0m BEGIN [3:821 deploy]
|
941477
|
+
[1m[36m (36.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [3:821 deploy]
|
941478
|
+
[1m[35m (3.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [3:821 deploy]
|
941479
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m [3:821 deploy]
|
941480
|
+
Migrating to CreateSwitchmanShards (20130328212039)
|
941481
|
+
[1m[35m (9.4ms)[0m CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL) [3:821 deploy]
|
941482
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130328212039"]] [3:821 deploy]
|
941483
|
+
Migrating to CreateDefaultShard (20130328224244)
|
941484
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130328224244"]] [3:821 deploy]
|
941485
|
+
Migrating to CreateUsers (20130403132607)
|
941486
|
+
[1m[36m (3.9ms)[0m [1mCREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941487
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [3:821 deploy]
|
941488
|
+
Migrating to CreateAppendages (20130411202442)
|
941489
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941490
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [3:821 deploy]
|
941491
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
941492
|
+
[1m[36m (4.9ms)[0m [1mCREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941493
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [3:821 deploy]
|
941494
|
+
Migrating to CreateDigits (20131022202028)
|
941495
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941496
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [3:821 deploy]
|
941497
|
+
Migrating to CreateFeatures (20131206172923)
|
941498
|
+
[1m[36m (4.4ms)[0m [1mCREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941499
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [3:821 deploy]
|
941500
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
941501
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "users" ADD COLUMN "parent_id" bigint[0m [3:821 deploy]
|
941502
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [3:821 deploy]
|
941503
|
+
Migrating to CreateRoots (20140219183820)
|
941504
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [3:821 deploy]
|
941505
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [3:821 deploy]
|
941506
|
+
Migrating to AddDummyForeignKey (20150618035859)
|
941507
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "users" ADD COLUMN "broken_id" bigint[0m [3:821 deploy]
|
941508
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150618035859"]] [3:821 deploy]
|
941509
|
+
[1m[36m (1.5ms)[0m [1mCOMMIT[0m [3:821 deploy]
|
941510
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941511
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 821[0m [["name", "switchman_dummy_test_shard_821"]] [test:817 master]
|
941512
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
941513
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [3:821 master]
|
941514
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:43 UTC +00:00]] [3:821 master]
|
941515
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [3:821 master]
|
941516
|
+
[1m[35m (20.4ms)[0m DROP SCHEMA switchman_dummy_test_shard_821 CASCADE [3:821 deploy]
|
941517
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941518
|
+
[1m[35mSQL (0.7ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 821]] [test:817 master]
|
941519
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941520
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941521
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941522
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941523
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941524
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941525
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941526
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941527
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" IS NULL AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941528
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941529
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m [test:817 master]
|
941530
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941531
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941532
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941533
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941534
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941535
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941536
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941537
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='test') AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941538
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941539
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id"[0m [["database_server_id", "test"], ["name", "public"]] [test:817 master]
|
941540
|
+
[1m[35m (0.9ms)[0m CREATE SCHEMA switchman_dummy_test_shard_822 [test:822 deploy]
|
941541
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m [test:822 deploy]
|
941542
|
+
[1m[35m (3.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [test:822 deploy]
|
941543
|
+
[1m[36m (7.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m [test:822 deploy]
|
941544
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.9ms)[0m SELECT "schema_migrations".* FROM "schema_migrations" [test:822 deploy]
|
941545
|
+
Migrating to CreateSwitchmanShards (20130328212039)
|
941546
|
+
[1m[36m (9.8ms)[0m [1mCREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL) [0m [test:822 deploy]
|
941547
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130328212039"]] [test:822 deploy]
|
941548
|
+
Migrating to CreateDefaultShard (20130328224244)
|
941549
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130328224244"]] [test:822 deploy]
|
941550
|
+
Migrating to CreateUsers (20130403132607)
|
941551
|
+
[1m[35m (4.5ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941552
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130403132607"]] [test:822 deploy]
|
941553
|
+
Migrating to CreateAppendages (20130411202442)
|
941554
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941555
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130411202442"]] [test:822 deploy]
|
941556
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
941557
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941558
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130411202551"]] [test:822 deploy]
|
941559
|
+
Migrating to CreateDigits (20131022202028)
|
941560
|
+
[1m[35m (3.7ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941561
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20131022202028"]] [test:822 deploy]
|
941562
|
+
Migrating to CreateFeatures (20131206172923)
|
941563
|
+
[1m[35m (26.4ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941564
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20131206172923"]] [test:822 deploy]
|
941565
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
941566
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [test:822 deploy]
|
941567
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140123154135"]] [test:822 deploy]
|
941568
|
+
Migrating to CreateRoots (20140219183820)
|
941569
|
+
[1m[35m (8.3ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [test:822 deploy]
|
941570
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140219183820"]] [test:822 deploy]
|
941571
|
+
Migrating to AddDummyForeignKey (20150618035859)
|
941572
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "users" ADD COLUMN "broken_id" bigint [test:822 deploy]
|
941573
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150618035859"]] [test:822 deploy]
|
941574
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2 [test:822 deploy]
|
941575
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 822[0m [["name", "switchman_dummy_test_shard_822"]] [test:817 master]
|
941576
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
941577
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:822 master]
|
941578
|
+
[1m[35mSQL (7.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:822 master]
|
941579
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:822 master]
|
941580
|
+
[1m[35m (74.2ms)[0m DROP SCHEMA switchman_dummy_test_shard_822 CASCADE [test:822 deploy]
|
941581
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941582
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 822]] [test:817 master]
|
941583
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941584
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941585
|
+
[1m[36m (12.8ms)[0m [1mROLLBACK[0m [test:817 master]
|
941586
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
941587
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941588
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941589
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941590
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941591
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941592
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941593
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941594
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941595
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941596
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941597
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941598
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941599
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941600
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941601
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941602
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941603
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941604
|
+
[1m[35m (0.6ms)[0m BEGIN [test:817 master]
|
941605
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
941606
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941607
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
941608
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941609
|
+
[1m[36mSwitchman::Shard Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
941610
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
941611
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
941612
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941613
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941614
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
941615
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
941616
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941617
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
941618
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
941619
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941620
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941621
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941622
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941623
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941624
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941625
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941626
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941627
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941628
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941629
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941630
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941631
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941632
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941633
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941634
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941635
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941636
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941637
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941638
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941639
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941640
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941641
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941642
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941643
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941644
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2293]] [test:818 master]
|
941645
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941646
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
941647
|
+
[1m[36mAppendage Load (0.5ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1[0m [["id", 2125]] [test:818 master]
|
941648
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2293]] [test:818 master]
|
941649
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941650
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941651
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941652
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941653
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941654
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941655
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941656
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941657
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941658
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941659
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941660
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941661
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941662
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941663
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2294]] [test:818 master]
|
941664
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941665
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2294]] [test:818 master]
|
941666
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2294]] [test:818 master]
|
941667
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2294]] [test:818 master]
|
941668
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941669
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
941670
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941671
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941672
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941673
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941674
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941675
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941676
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941677
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941678
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941679
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941680
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941681
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
941682
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941683
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941684
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941685
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941686
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941687
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941688
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941689
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941690
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941691
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941692
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941693
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941694
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941695
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2296]] [test:818 master]
|
941696
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941697
|
+
[1m[36mAppendage Load (0.4ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."id" = $2 LIMIT 1[0m [["user_id", 2296], ["id", 2127]] [test:818 master]
|
941698
|
+
[1m[35mAppendage Load (0.7ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."id" = $2 LIMIT 1 [["user_id", 1844], ["id", 8180000000002127]] [1:819 master]
|
941699
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941700
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
941701
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941702
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941703
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941704
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941705
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941706
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941707
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941708
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941709
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941710
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941711
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941712
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941713
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2297]] [test:818 master]
|
941714
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941715
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941716
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 2128], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941717
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941718
|
+
[1m[35mDigit Load (0.6ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."id" = $2 LIMIT 1 [["user_id", 2297], ["id", 269]] [test:818 master]
|
941719
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
941720
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941721
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941722
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941723
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941724
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941725
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941726
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941727
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941728
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941729
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941730
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941731
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941732
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941733
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941734
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941735
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941736
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941737
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941738
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941739
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941740
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941741
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941742
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941743
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941744
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941745
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941746
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941747
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941748
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941749
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2299]] [test:818 master]
|
941750
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941751
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941752
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941753
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 1847]] [1:819 master]
|
941754
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941755
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
941756
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 819 LIMIT 1 [test:817 master]
|
941757
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
941758
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941759
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941760
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941761
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941762
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941763
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941764
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941765
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941766
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941767
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941768
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941769
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941770
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
941771
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2300]] [test:818 master]
|
941772
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941773
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941774
|
+
[1m[35mSQL (15.5ms)[0m INSERT INTO "digits" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941775
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941776
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941777
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "id", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2130], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["id", 8190000000000192], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941778
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941779
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."id" = $2 LIMIT 1[0m [["user_id", 2300], ["id", 8190000000000192]] [test:818 master]
|
941780
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941781
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941782
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941783
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941784
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941785
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941786
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941787
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941788
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941789
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941790
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941791
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941792
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941793
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941794
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["parent_id", 2301], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941795
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941796
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941797
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["parent_id", 2302], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941798
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941799
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2301]] [test:818 master]
|
941800
|
+
[1m[35mUser Exists (0.5ms)[0m SELECT 1 AS one FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = $1 AND "users"."id" = 2303 LIMIT 1 [["parent_id", 2301]] [test:818 master]
|
941801
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941802
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["id", 2303], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941803
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941804
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2301]] [test:818 master]
|
941805
|
+
[1m[36mUser Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = $1 AND "users"."id" = 8190000000002303 LIMIT 1[0m [["parent_id", 2301]] [test:818 master]
|
941806
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941807
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941808
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941809
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941810
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941811
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941812
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941813
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941814
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941815
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941816
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941817
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941818
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941819
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941820
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2304]] [test:818 master]
|
941821
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941822
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941823
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941824
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941825
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941826
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941827
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941828
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941829
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941830
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941831
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941832
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941833
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941834
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941835
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
941836
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2305]] [test:818 master]
|
941837
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941838
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
941839
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
941840
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941841
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941842
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941843
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941844
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941845
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941846
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941847
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941848
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941849
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941850
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941851
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941852
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941853
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941854
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941855
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941856
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941857
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941858
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941859
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941860
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941861
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941862
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941863
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941864
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941866
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941867
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2307]] [test:818 master]
|
941868
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941869
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941870
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 2133], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941871
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941872
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941873
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002307]] [1:819 master]
|
941874
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941875
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941876
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 2265], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 2]] [1:819 master]
|
941877
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941878
|
+
[1m[35mDigit Load (0.4ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 2307]] [test:818 master]
|
941879
|
+
[1m[36mDigit Load (0.5ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL[0m [["user_id", 8180000000002307]] [1:819 master]
|
941880
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2307]] [test:818 master]
|
941881
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL[0m [["user_id", 2307]] [test:818 master]
|
941882
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 8180000000002307]] [1:819 master]
|
941883
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941884
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
941885
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941886
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941887
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941888
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941889
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941890
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941891
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941892
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941893
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941894
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941895
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941896
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941897
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2308], ["value", 1]] [test:818 master]
|
941898
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941899
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941900
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002308]] [1:819 master]
|
941901
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941902
|
+
[1m[35mAppendage Load (0.4ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 2308]] [test:818 master]
|
941903
|
+
[1m[36mAppendage Load (0.4ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL[0m [["user_id", 8180000000002308]] [1:819 master]
|
941904
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2308]] [test:818 master]
|
941905
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL[0m [["user_id", 2308]] [test:818 master]
|
941906
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 8180000000002308]] [1:819 master]
|
941907
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941908
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:818 master]
|
941909
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941910
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941911
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941912
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941913
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941914
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941915
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941916
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941917
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941918
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941919
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941920
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941921
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2309], ["value", 1]] [test:818 master]
|
941922
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941923
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941924
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002309]] [1:819 master]
|
941925
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941926
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941927
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941928
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2309], ["value", 2]] [test:818 master]
|
941929
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941930
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941931
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2309]] [test:818 master]
|
941932
|
+
[1m[35m (1.1ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 2309]] [test:818 master]
|
941933
|
+
[1m[36m (0.4ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL)[0m [["user_id", 8180000000002309]] [1:819 master]
|
941934
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2309]] [test:818 master]
|
941935
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL)[0m [["user_id", 2309]] [test:818 master]
|
941936
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 8180000000002309]] [1:819 master]
|
941937
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
941938
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:818 master]
|
941939
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941940
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941941
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941942
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941943
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941944
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941945
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941946
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941947
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941948
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941949
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941950
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941951
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2310], ["value", 1]] [test:818 master]
|
941952
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941953
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941954
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002310], ["value", 2]] [1:819 master]
|
941955
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941956
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 2310]] [test:818 master]
|
941957
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2310]] [test:818 master]
|
941958
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 2310]] [test:818 master]
|
941959
|
+
[1m[36mAppendage Load (0.4ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 8180000000002310]] [1:819 master]
|
941960
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
941961
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
941962
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
941963
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
941964
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
941965
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
941966
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
941967
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941968
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941969
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941970
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941971
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
941972
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941973
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
941974
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2311]] [test:818 master]
|
941975
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
941976
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941977
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2138], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 1]] [test:818 master]
|
941978
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941979
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
941980
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002311]] [1:819 master]
|
941981
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
941982
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
941983
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2269], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 2]] [1:819 master]
|
941984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
941985
|
+
[1m[36mDigit Load (0.5ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1[0m [["user_id", 2311]] [test:818 master]
|
941986
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2311]] [test:818 master]
|
941987
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1[0m [["user_id", 2311]] [test:818 master]
|
941988
|
+
[1m[35mDigit Load (0.4ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 [["user_id", 8180000000002311]] [1:819 master]
|
941989
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
941990
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:818 master]
|
941991
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
941992
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
941993
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
941994
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
941995
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
941996
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
941997
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
941998
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
941999
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942000
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942001
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942002
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942003
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2312]] [test:818 master]
|
942004
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942005
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942006
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 2139], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942007
|
+
[1m[36m (2.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942008
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942009
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2139], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 1]] [test:818 master]
|
942010
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942011
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942012
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002312]] [1:819 master]
|
942013
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942014
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942015
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2270], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 2]] [1:819 master]
|
942016
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942017
|
+
[1m[36m (0.6ms)[0m [1mSELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL)[0m [["user_id", 2312]] [test:818 master]
|
942018
|
+
[1m[35m (0.5ms)[0m SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 8180000000002312]] [1:819 master]
|
942019
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2312]] [test:818 master]
|
942020
|
+
[1m[35m (0.3ms)[0m SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 2312]] [test:818 master]
|
942021
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL)[0m [["user_id", 8180000000002312]] [1:819 master]
|
942022
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942023
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
942024
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942025
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942026
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942027
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942028
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942029
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942030
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942031
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942032
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942033
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942034
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942036
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2313]] [test:818 master]
|
942037
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942038
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942039
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 2140], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942040
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942041
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942042
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002313]] [1:819 master]
|
942043
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942044
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942045
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 2271], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 2]] [1:819 master]
|
942046
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942047
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL[0m [["user_id", 2313]] [test:818 master]
|
942048
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 8180000000002313]] [1:819 master]
|
942049
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2313]] [test:818 master]
|
942050
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 2313]] [test:818 master]
|
942051
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL[0m [["user_id", 8180000000002313]] [1:819 master]
|
942052
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942053
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942054
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942055
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942056
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942057
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942058
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942059
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942060
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942061
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942062
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942063
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942064
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942065
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942066
|
+
[1m[35mSQL (20.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942067
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942068
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942069
|
+
[1m[36mSQL (6.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 586], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942070
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942071
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942072
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 8170000000000586], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942073
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942074
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 586 ORDER BY "appendages"."id" ASC LIMIT 1 [test:817 master]
|
942075
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (586)[0m [test:817 master]
|
942076
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942077
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942078
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942079
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942080
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942081
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942082
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942083
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942084
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942085
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942086
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942087
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942088
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942089
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942090
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2315]] [test:818 master]
|
942091
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942092
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942093
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002315]] [1:819 master]
|
942094
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942095
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942096
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001861]] [test:818 master]
|
942097
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942098
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (2315) [test:818 master]
|
942099
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (2315)[0m [test:818 master]
|
942100
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (8180000000002315) [1:819 master]
|
942101
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (1861)[0m [1:819 master]
|
942102
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (1861) [1:819 master]
|
942103
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "appendages" WHERE "appendages"."id" = 2141[0m [test:818 master]
|
942104
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942105
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942106
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942107
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942108
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942109
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942110
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942111
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942112
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942113
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942114
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942115
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942116
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942118
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2316]] [test:818 master]
|
942119
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942120
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942121
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002316]] [1:819 master]
|
942122
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942124
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002316]] [1:819 master]
|
942125
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942126
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 2143], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942129
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942130
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942131
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 2273], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942132
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942133
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942134
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942135
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 8190000000002273], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942136
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942137
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942138
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 8190000000002274], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942139
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942140
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942141
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001862]] [test:818 master]
|
942142
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942143
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942145
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 1862]] [1:819 master]
|
942146
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942147
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942148
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942149
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942150
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 1862]] [1:819 master]
|
942151
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942152
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942153
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942154
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 8180000000002144], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942155
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942156
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942157
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["appendage_id", 8190000000002275], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942158
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942159
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942160
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 2276], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942161
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942162
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (2316) [test:818 master]
|
942163
|
+
[1m[36mAppendage Load (0.3ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (2316)[0m [test:818 master]
|
942164
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (8180000000002316) [1:819 master]
|
942165
|
+
[1m[36mDigit Load (0.2ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (2143)[0m [test:818 master]
|
942166
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (2273, 2274) [1:819 master]
|
942167
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (1862)[0m [1:819 master]
|
942168
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (1862) [1:819 master]
|
942169
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (2275, 2276)[0m [1:819 master]
|
942170
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "digits" WHERE "digits"."id" = 276 [test:818 master]
|
942171
|
+
[1m[36m (1.4ms)[0m [1mROLLBACK[0m [1:819 master]
|
942172
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:818 master]
|
942173
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942174
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942175
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942176
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942177
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942178
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942179
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942180
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942181
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942182
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942183
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942184
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942185
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002317]] [test:817 master]
|
942186
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942187
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942188
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001863]] [test:817 master]
|
942189
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942190
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942191
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942193
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942194
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 1238]] [test:817 master]
|
942195
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942196
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" [test:817 master]
|
942197
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2317)[0m [test:818 master]
|
942198
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1863) [1:819 master]
|
942199
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (1238)[0m [test:817 master]
|
942200
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = 2317 [test:818 master]
|
942201
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942202
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
942203
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942204
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942205
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942206
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942207
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942208
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942209
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942210
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942211
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942212
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942213
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942214
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942215
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8180000000002318]] [test:817 master]
|
942216
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942217
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942218
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 590], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942219
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942220
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001864]] [test:818 master]
|
942222
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942223
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942224
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 8180000000002145], ["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942225
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942226
|
+
[1m[35mDigit Load (0.2ms)[0m SELECT "digits".* FROM "digits" [test:817 master]
|
942227
|
+
[1m[36mAppendage Load (0.3ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (590)[0m [test:817 master]
|
942228
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (2145) [test:818 master]
|
942229
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2318)[0m [test:818 master]
|
942230
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1864) [1:819 master]
|
942231
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = 2318[0m [test:818 master]
|
942232
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942233
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942234
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942235
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942236
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942237
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942238
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942239
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942240
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942241
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942242
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942243
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942244
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942245
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942246
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001865]] [test:817 master]
|
942247
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942248
|
+
[1m[35mRoot Load (0.4ms)[0m SELECT "roots".* FROM "roots" WHERE "roots"."id" = $1 LIMIT 1 [["id", 49]] [test:817 master]
|
942249
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 1865]] [1:819 master]
|
942250
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942251
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942252
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942253
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942254
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942255
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942256
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942257
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942258
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942259
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942260
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942261
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942262
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942263
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942264
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942265
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942266
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942267
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["owner_id", 591], ["owner_type", "Appendage"], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942268
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942269
|
+
[1m[36mFeature Load (0.5ms)[0m [1mSELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1[0m [["id", 51]] [test:817 master]
|
942270
|
+
[1m[35mAppendage Load (0.4ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 591]] [test:817 master]
|
942271
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942272
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "features" SET "owner_id" = $1, "owner_type" = $2, "updated_at" = $3 WHERE "features"."id" = 51 [["owner_id", 8180000000002320], ["owner_type", "User"], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942273
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942274
|
+
[1m[35mFeature Load (0.2ms)[0m SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 51]] [test:817 master]
|
942275
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
942276
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942277
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942278
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942279
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942280
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942281
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942282
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942283
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942284
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942285
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942286
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942287
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942288
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942289
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["owner_id", 2321], ["owner_type", "User"], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 1]] [test:818 master]
|
942290
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942291
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942292
|
+
[1m[35mSQL (3.0ms)[0m INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["owner_id", 8180000000002321], ["owner_type", "User"], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["value", 2]] [1:819 master]
|
942293
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942294
|
+
[1m[35mFeature Load (0.4ms)[0m SELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2 [["owner_id", 2321], ["owner_type", "User"]] [test:818 master]
|
942295
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2321]] [test:818 master]
|
942296
|
+
[1m[35mFeature Load (0.2ms)[0m SELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2 [["owner_id", 2321], ["owner_type", "User"]] [test:818 master]
|
942297
|
+
[1m[36mFeature Load (0.7ms)[0m [1mSELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2[0m [["owner_id", 8180000000002321], ["owner_type", "User"]] [1:819 master]
|
942298
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942299
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942300
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942301
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942302
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942303
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942304
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942305
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942306
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942307
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942308
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942309
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942310
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942311
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942312
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942313
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942314
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942315
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2322]] [test:818 master]
|
942316
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 2322]] [test:818 master]
|
942317
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942318
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 2146]] [test:818 master]
|
942319
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2322]] [test:818 master]
|
942320
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942321
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942322
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942323
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942324
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942325
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942326
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942327
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942328
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942329
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942330
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942331
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [1:819 master]
|
942332
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942333
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942334
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["user_id", 8190000000001869]] [test:818 master]
|
942335
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942336
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 2147]] [test:818 master]
|
942337
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 1869]] [1:819 master]
|
942338
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942339
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942340
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942341
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942342
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942343
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
942344
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
942345
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942346
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942347
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942348
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
942349
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
942350
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942351
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942352
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942353
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942354
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942355
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942356
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942357
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942358
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942359
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942360
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942361
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942362
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:818 master]
|
942363
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942364
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942365
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:44 UTC +00:00]] [test:817 master]
|
942366
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942367
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:818 master]
|
942368
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942369
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942370
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942371
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942372
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942373
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942374
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942375
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942376
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942377
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942378
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942379
|
+
[1m[36mSwitchman::Shard Load (0.7ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942380
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942381
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942382
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942383
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942384
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942385
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942386
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942387
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942388
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942389
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942390
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942391
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942392
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942393
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942394
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942395
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942396
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942397
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942398
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942399
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942400
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942401
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942402
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942403
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942404
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942405
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942406
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942407
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942408
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942409
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942410
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942411
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942412
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942413
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942414
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942415
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942416
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942417
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942418
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942419
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942420
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942421
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942422
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942423
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942424
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942425
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942426
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942427
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942428
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942429
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
942430
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942431
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942432
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942433
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942434
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942435
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942436
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942437
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942438
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942439
|
+
[1m[36m (1.1ms)[0m [1mCOMMIT[0m [test:817 master]
|
942440
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942441
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942442
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942443
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942444
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942445
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942446
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942447
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942448
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942449
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942450
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942451
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942452
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
942453
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
942454
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942455
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942456
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942457
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942458
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942459
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942460
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942461
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
942462
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942463
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942464
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942465
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942466
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942467
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942468
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942469
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" FOR UPDATE[0m [test:817 master]
|
942470
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942471
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942472
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942473
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942474
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942475
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942476
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942477
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942478
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942479
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942480
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942481
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942482
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942483
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942484
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942485
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942486
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942487
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942488
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942489
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942490
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942491
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942492
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942493
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942494
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942495
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942496
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942497
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942498
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942499
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942500
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942501
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942502
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942503
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942504
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942505
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942506
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942507
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942508
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942509
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942510
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942511
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942512
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "updated_at" = '2015-10-14 12:32:45.091528' [test:817 master]
|
942513
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
942514
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942515
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942516
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942517
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942518
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942519
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942520
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942521
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942522
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942523
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942524
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "updated_at" = '2015-10-14 12:32:45.099035' [test:817 master]
|
942525
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
942526
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942527
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
942528
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942529
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
942530
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942531
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "updated_at" = '2015-10-14 12:32:45.103673'[0m [test:817 master]
|
942532
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "users" [test:817 master]
|
942533
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942534
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942535
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
942536
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942537
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "updated_at" = '2015-10-14 12:32:45.108948'[0m [test:817 master]
|
942538
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "users" [test:817 master]
|
942539
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942540
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942541
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942542
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942543
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [1:819 master]
|
942544
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942545
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942546
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942547
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942548
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942549
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942550
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942551
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942552
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942553
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942554
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942555
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [test:817 master]
|
942556
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942557
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942558
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942559
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942560
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942561
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942562
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942563
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942564
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942565
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942566
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [test:817 master]
|
942567
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [test:817 master]
|
942568
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942569
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942570
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942571
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942572
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
942573
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942574
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "users" [test:817 master]
|
942575
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [test:817 master]
|
942576
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942577
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942578
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
942579
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m [test:817 master]
|
942580
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "users" [test:817 master]
|
942581
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [test:817 master]
|
942582
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942583
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942584
|
+
[1m[35m (0.5ms)[0m COMMIT [test:817 master]
|
942585
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942586
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "a"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942587
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942588
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1253]] [test:817 master]
|
942589
|
+
[1m[36mCACHE (0.0ms)[0m [1m817::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 1253]]
|
942590
|
+
[1m[35mCACHE (0.0ms)[0m 817::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1253]]
|
942591
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942592
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = 1253 [["name", "b"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942593
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
942594
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1253]] [test:817 master]
|
942595
|
+
[1m[36mCACHE (0.0ms)[0m [1m817::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 1253]]
|
942596
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "users" [test:817 master]
|
942597
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942598
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942599
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942600
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942601
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942602
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942603
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
942604
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942605
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942606
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942607
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942608
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942609
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942610
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942611
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942612
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942613
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942614
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942615
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [1:819 master]
|
942616
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942617
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942618
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942619
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942620
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942621
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942622
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942623
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
942624
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
942625
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942626
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942627
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942628
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
942629
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942630
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942631
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942632
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942633
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942634
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942635
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942636
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942637
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942638
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942639
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942640
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942641
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942642
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942643
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
942644
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
942645
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942646
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942647
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942648
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
942649
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942650
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942651
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942652
|
+
[1m[35m (0.2ms)[0m COMMIT [test:817 master]
|
942653
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942654
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942655
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942656
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942657
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942658
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942659
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942660
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942661
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942662
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942663
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942664
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942665
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942666
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942667
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942668
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942669
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942670
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942671
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942672
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942673
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942674
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942675
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942676
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942677
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942678
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942679
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (818,819)) AND "switchman_shards"."id" IN (817, 818)[0m [test:817 master]
|
942680
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942681
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942682
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942683
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942684
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942685
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942686
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942687
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942688
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942689
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
942690
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942691
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942692
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
942693
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
942694
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
942695
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942696
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942697
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
942698
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942699
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942700
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942701
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942702
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942703
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942704
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942705
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942706
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942707
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942708
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942709
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942710
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942711
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942712
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942713
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942714
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942715
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942716
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942717
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942718
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942719
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942720
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942721
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942722
|
+
[1m[35mSQL (3.2ms)[0m INSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942723
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942724
|
+
[1m[35mMirrorUser Load (0.3ms)[0m SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 29]] [test:817 master]
|
942725
|
+
[1m[36mMirrorUser Load (0.2ms)[0m [1mSELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1[0m [["id", 29]] [test:817 master]
|
942726
|
+
[1m[35mMirrorUser Load (1.3ms)[0m SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = 29 ORDER BY "mirror_users"."id" ASC LIMIT 1 [test:818 master]
|
942727
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942728
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
942729
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942730
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942731
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942732
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942733
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942734
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942735
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942736
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942737
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942738
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942739
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
942740
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
942741
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942742
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942743
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942744
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
942745
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942746
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942748
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942749
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942750
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942751
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942752
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942753
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942754
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942755
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:33:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:33:45 UTC +00:00]] [test:818 master]
|
942756
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942757
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [1:819 master]
|
942758
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
942759
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
942760
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942761
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942762
|
+
[1m[35mSwitchman::Shard Exists (0.3ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
942763
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
942764
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942765
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942766
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942767
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
942768
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942769
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942770
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942771
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942772
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942773
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942774
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942775
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942776
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942777
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942778
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
942779
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942780
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942781
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m [test:818 master]
|
942782
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942783
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
942784
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942785
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942786
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942787
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
942788
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
942789
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942790
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942791
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942792
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
942793
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942794
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942795
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942796
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942797
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942798
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942799
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
942800
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
942801
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
942802
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942803
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942804
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
942805
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942806
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942807
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
942808
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942809
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942810
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942811
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "switchman_shards"[0m [test:817 master]
|
942812
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942813
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942814
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
942815
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
942816
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942817
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942818
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942819
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
942820
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942821
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942822
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942823
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
942824
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942825
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942826
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
942827
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942828
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942829
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942830
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942831
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942832
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942833
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m [1:819 master]
|
942834
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2 [1:819 master]
|
942835
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
942836
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2 [1:819 master]
|
942837
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m [1:819 master]
|
942838
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942839
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m [1:819 master]
|
942840
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942841
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
942842
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942843
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942844
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942845
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "8"]] [test:817 master]
|
942846
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942847
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942848
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "8"]] [test:817 master]
|
942849
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942850
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942851
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942852
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942853
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942854
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
942855
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
942856
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942857
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942858
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
942860
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942861
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942862
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942863
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [test:817 master]
|
942864
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942865
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942866
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942867
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942868
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942869
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942870
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942871
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942872
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
942873
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 819 LIMIT 1[0m [test:817 master]
|
942874
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
942875
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942876
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942877
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942878
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942879
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942880
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942881
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942882
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942883
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942884
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
942885
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["owner_id", 1254], ["owner_type", "User"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942886
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
942887
|
+
[1m[36mFeature Load (0.3ms)[0m [1mSELECT owner_id FROM "features" WHERE "features"."id" = 52 ORDER BY "features"."id" ASC LIMIT 1[0m [test:817 master]
|
942888
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942889
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942890
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942891
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942892
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942893
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942894
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
942896
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
942897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
942898
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942899
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
942900
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942901
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942902
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942903
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942904
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942905
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
942906
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
942907
|
+
[1m[36mSQL (5.6ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
942908
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
942909
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942910
|
+
[1m[35mSwitchman::Shard Exists (0.3ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
942911
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
942912
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
942913
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942914
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942915
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
942916
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
942917
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
942918
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
942919
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [test:817 master]
|
942920
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942921
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942922
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942923
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942924
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
942925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942926
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
942927
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942928
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942929
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
942930
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942931
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942932
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2328], ["value", 1]] [test:818 master]
|
942933
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942934
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 819 LIMIT 1 [test:817 master]
|
942935
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942936
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001872], ["value", 3]] [test:818 master]
|
942937
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942938
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
942939
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942940
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002328], ["value", 2]] [1:819 master]
|
942941
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942942
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942943
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1872], ["value", 4]] [1:819 master]
|
942944
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942945
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942946
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1872], ["value", 5]] [1:819 master]
|
942947
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942948
|
+
[1m[35m (0.8ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942949
|
+
[1m[36m (0.6ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942950
|
+
[1m[35m (0.8ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942951
|
+
[1m[36m (0.5ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942952
|
+
[1m[35m (0.3ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942953
|
+
[1m[36m (0.3ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942954
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id [test:818 master]
|
942955
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2328)[0m [test:818 master]
|
942956
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1872) [1:819 master]
|
942957
|
+
[1m[36m (0.3ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [1:819 master]
|
942958
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1872) [1:819 master]
|
942959
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2328)[0m [test:818 master]
|
942960
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
942961
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
942962
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
942963
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
942964
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
942965
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
942966
|
+
[1m[35m (0.2ms)[0m BEGIN [1:819 master]
|
942967
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942968
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
942969
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942970
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942971
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
942972
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942973
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
942974
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2329], ["value", 1]] [test:818 master]
|
942975
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
942976
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
942977
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001873], ["value", 3]] [test:818 master]
|
942978
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
942979
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942980
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002329], ["value", 2]] [1:819 master]
|
942981
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942982
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
942983
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1873], ["value", 4]] [1:819 master]
|
942984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
942985
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
942986
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1873], ["value", 5]] [1:819 master]
|
942987
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
942988
|
+
[1m[35m (0.3ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942989
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942990
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942991
|
+
[1m[36m (0.2ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942992
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
942993
|
+
[1m[36m (0.2ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
942994
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [test:818 master]
|
942995
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2329)[0m [test:818 master]
|
942996
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1873) [1:819 master]
|
942997
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [1:819 master]
|
942998
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1873) [1:819 master]
|
942999
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2329)[0m [test:818 master]
|
943000
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943001
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
943002
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943003
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943004
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943005
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943006
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943007
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943008
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943009
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943010
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943011
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943012
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943013
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943014
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2330], ["value", 1]] [test:818 master]
|
943015
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943016
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943017
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001874], ["value", 3]] [test:818 master]
|
943018
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943019
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943020
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002330], ["value", 2]] [1:819 master]
|
943021
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943022
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943023
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1874], ["value", 4]] [1:819 master]
|
943024
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943025
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943026
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1874], ["value", 5]] [1:819 master]
|
943027
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943028
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943029
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943030
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943031
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943032
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943033
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943034
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [test:818 master]
|
943035
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2330)[0m [test:818 master]
|
943036
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1874) [1:819 master]
|
943037
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [1:819 master]
|
943038
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1874) [1:819 master]
|
943039
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2330)[0m [test:818 master]
|
943040
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943041
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943042
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943043
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943044
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943045
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943046
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943047
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943048
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943049
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943050
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943051
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943052
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943053
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943054
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2331], ["value", 1]] [test:818 master]
|
943055
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943056
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943057
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001875], ["value", 3]] [test:818 master]
|
943058
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943059
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943060
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002331], ["value", 2]] [1:819 master]
|
943061
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943062
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943063
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1875], ["value", 4]] [1:819 master]
|
943064
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943065
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943066
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1875], ["value", 5]] [1:819 master]
|
943067
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943068
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943069
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2331]] [test:818 master]
|
943070
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943071
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943072
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943073
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943074
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943075
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2332]] [test:818 master]
|
943076
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943077
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id ORDER BY COUNT(*) DESC LIMIT 1[0m [test:818 master]
|
943078
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943079
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943080
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943081
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943082
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943083
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943084
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943085
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943086
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943087
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943088
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943089
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943090
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943091
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943092
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2333], ["value", 1]] [test:818 master]
|
943093
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943094
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943095
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001876], ["value", 3]] [test:818 master]
|
943096
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943097
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943098
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002333], ["value", 2]] [1:819 master]
|
943099
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943100
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943101
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1876], ["value", 4]] [1:819 master]
|
943102
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943103
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943104
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1876], ["value", 5]] [1:819 master]
|
943105
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943106
|
+
[1m[35m (0.3ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943107
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943108
|
+
[1m[35m (0.3ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943109
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943110
|
+
[1m[35m (0.3ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943111
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943112
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [test:818 master]
|
943113
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2333)[0m [test:818 master]
|
943114
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1876) [1:819 master]
|
943115
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [1:819 master]
|
943116
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1876) [1:819 master]
|
943117
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2333)[0m [test:818 master]
|
943118
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943119
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943120
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943121
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943122
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943123
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943124
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943125
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943126
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943127
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943128
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943129
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943130
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943131
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943132
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2334], ["value", 1]] [test:818 master]
|
943133
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943134
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943135
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8190000000001877], ["value", 3]] [test:818 master]
|
943136
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943137
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943138
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 8180000000002334], ["value", 2]] [1:819 master]
|
943139
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943140
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943141
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1877], ["value", 4]] [1:819 master]
|
943142
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943143
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943144
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1877], ["value", 5]] [1:819 master]
|
943145
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943146
|
+
[1m[35m (0.7ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943147
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943148
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943149
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943150
|
+
[1m[35m (0.4ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [test:818 master]
|
943151
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [1:819 master]
|
943152
|
+
[1m[35m (0.3ms)[0m SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [test:818 master]
|
943153
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2334)[0m [test:818 master]
|
943154
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1877) [1:819 master]
|
943155
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [1:819 master]
|
943156
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (1877) [1:819 master]
|
943157
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2334)[0m [test:818 master]
|
943158
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943159
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
943160
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943161
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943162
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943163
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943164
|
+
[1m[35m (0.2ms)[0m BEGIN [1:819 master]
|
943165
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943166
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943167
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943168
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943169
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2335]] [test:818 master]
|
943170
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943171
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943172
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943173
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943174
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943175
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1878]] [1:819 master]
|
943176
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943177
|
+
[1m[36m (0.3ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2162[0m [test:818 master]
|
943178
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2296 [1:819 master]
|
943179
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2162[0m [test:818 master]
|
943180
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2296 [1:819 master]
|
943181
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2162[0m [test:818 master]
|
943182
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2296 [1:819 master]
|
943183
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943184
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943185
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943186
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943187
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943188
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943189
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943190
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943191
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943193
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943194
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2336]] [test:818 master]
|
943195
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943196
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943197
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943198
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943199
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943200
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1879]] [1:819 master]
|
943201
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943202
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943203
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
943204
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943205
|
+
[1m[36m (0.4ms)[0m [1mSELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (1256)[0m [test:817 master]
|
943206
|
+
[1m[35m (0.3ms)[0m SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (2336) [test:818 master]
|
943207
|
+
[1m[36m (1.0ms)[0m [1mSELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (1879)[0m [1:819 master]
|
943208
|
+
[1m[35m (3.4ms)[0m ROLLBACK [1:819 master]
|
943209
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m [test:818 master]
|
943210
|
+
[1m[35m (0.5ms)[0m BEGIN [test:817 master]
|
943211
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943212
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943213
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943214
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943215
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943216
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943217
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943218
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943219
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2337]] [test:818 master]
|
943220
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943221
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943222
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943223
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943224
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943225
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1880]] [1:819 master]
|
943226
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943227
|
+
[1m[36m (0.3ms)[0m [1mSELECT "users"."name" FROM "users" WHERE "users"."id" IN (2337)[0m [test:818 master]
|
943228
|
+
[1m[35m (0.2ms)[0m SELECT "users"."name" FROM "users" WHERE "users"."id" IN (1880) [1:819 master]
|
943229
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943230
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943231
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943232
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943233
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943234
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943235
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943236
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943237
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943238
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943239
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943240
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2338]] [test:818 master]
|
943241
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943242
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943243
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943244
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943245
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943246
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1881]] [1:819 master]
|
943247
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943248
|
+
[1m[35m (0.3ms)[0m SELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2165 [test:818 master]
|
943249
|
+
[1m[36m (0.3ms)[0m [1mSELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2299[0m [1:819 master]
|
943250
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2165 [test:818 master]
|
943251
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2299[0m [1:819 master]
|
943252
|
+
[1m[35m (0.3ms)[0m SELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2165 [test:818 master]
|
943253
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."id", "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 2299[0m [1:819 master]
|
943254
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943255
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943256
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943257
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943258
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943259
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943260
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943262
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943263
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943264
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943265
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2339]] [test:818 master]
|
943266
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943268
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943269
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943270
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943271
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1882]] [1:819 master]
|
943272
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943273
|
+
[1m[36m (0.7ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2166[0m [test:818 master]
|
943274
|
+
[1m[35m (0.7ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2300 [1:819 master]
|
943275
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2166[0m [test:818 master]
|
943276
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2300 [1:819 master]
|
943277
|
+
[1m[36m (0.2ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2166[0m [test:818 master]
|
943278
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 2300 [1:819 master]
|
943279
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943280
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943281
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943282
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943283
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943284
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943285
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943286
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943287
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943288
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943289
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943290
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2340]] [test:818 master]
|
943291
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943292
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943293
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943294
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943295
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943296
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1883]] [1:819 master]
|
943297
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943298
|
+
[1m[35m (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" [test:818 master]
|
943299
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943300
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943301
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943302
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943303
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943304
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943305
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943306
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943307
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943308
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943309
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943310
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2341], ["value", 1]] [test:818 master]
|
943311
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943312
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943313
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2341], ["value", 2]] [test:818 master]
|
943314
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943315
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943316
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943317
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943318
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943319
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1884], ["value", 3]] [1:819 master]
|
943320
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943321
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943322
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1884], ["value", 4]] [1:819 master]
|
943323
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943324
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943325
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1884], ["value", 5]] [1:819 master]
|
943326
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943327
|
+
[1m[36m (0.5ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2341]] [test:818 master]
|
943328
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" [test:818 master]
|
943329
|
+
[1m[36m (0.4ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 1884]] [1:819 master]
|
943330
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" [1:819 master]
|
943331
|
+
[1m[36m (0.4ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (2168, 2169)[0m [test:818 master]
|
943332
|
+
[1m[35m (0.3ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (2302, 2303, 2304) [1:819 master]
|
943333
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943334
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943335
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943336
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943337
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943338
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943339
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943340
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943341
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943342
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943343
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943344
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2342], ["value", 1]] [test:818 master]
|
943345
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943346
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943347
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2342], ["value", 2]] [test:818 master]
|
943348
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943349
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943350
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943351
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943352
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943353
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1885], ["value", 3]] [1:819 master]
|
943354
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943355
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943356
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1885], ["value", 4]] [1:819 master]
|
943357
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943358
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943359
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1885], ["value", 5]] [1:819 master]
|
943360
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943361
|
+
[1m[36m (0.5ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2342]] [test:818 master]
|
943362
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" [test:818 master]
|
943363
|
+
[1m[36m (0.4ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 1885]] [1:819 master]
|
943364
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" [1:819 master]
|
943365
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (2170, 2171)[0m [test:818 master]
|
943366
|
+
[1m[35m (0.3ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (2305, 2306, 2307) [1:819 master]
|
943367
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943368
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943369
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943370
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943371
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943372
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943373
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943374
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943375
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943376
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943377
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943378
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2343], ["value", 1]] [test:818 master]
|
943379
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943380
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943381
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2343], ["value", 2]] [test:818 master]
|
943382
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943383
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943384
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943385
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943386
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943387
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1886], ["value", 3]] [1:819 master]
|
943388
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943389
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943390
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1886], ["value", 4]] [1:819 master]
|
943391
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943392
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943393
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1886], ["value", 5]] [1:819 master]
|
943394
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943395
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2343]] [test:818 master]
|
943396
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "appendages" [test:818 master]
|
943397
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 1886]] [1:819 master]
|
943398
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "appendages" [1:819 master]
|
943399
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (2172, 2173)[0m [test:818 master]
|
943400
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (2308, 2309, 2310) [1:819 master]
|
943401
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943402
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943403
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943404
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943405
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943406
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943407
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943408
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943409
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943410
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943411
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943412
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2344], ["value", 1]] [test:818 master]
|
943413
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943414
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943415
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2344], ["value", 2]] [test:818 master]
|
943416
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943417
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943418
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943419
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943420
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943421
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1887], ["value", 3]] [1:819 master]
|
943422
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943423
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943424
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1887], ["value", 4]] [1:819 master]
|
943425
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943426
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943427
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1887], ["value", 5]] [1:819 master]
|
943428
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943429
|
+
[1m[36m (1.1ms)[0m [1mSELECT MAX("appendages"."created_at") AS max_id FROM "appendages" WHERE "appendages"."id" IN (2174, 2175)[0m [test:818 master]
|
943430
|
+
[1m[35m (0.4ms)[0m SELECT MAX("appendages"."created_at") AS max_id FROM "appendages" WHERE "appendages"."id" IN (2311, 2312, 2313) [1:819 master]
|
943431
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943432
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943433
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
943434
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943435
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943436
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943437
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943438
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943439
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943440
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943441
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943442
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2345], ["value", 1]] [test:818 master]
|
943443
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943444
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943445
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2345], ["value", 2]] [test:818 master]
|
943446
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943447
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943448
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943449
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943450
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1888], ["value", 3]] [1:819 master]
|
943452
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943453
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943454
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1888], ["value", 4]] [1:819 master]
|
943455
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943456
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943457
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1888], ["value", 5]] [1:819 master]
|
943458
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943459
|
+
[1m[36m (0.4ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2345]] [test:818 master]
|
943460
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [test:818 master]
|
943461
|
+
[1m[36m (0.4ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 1888]] [1:819 master]
|
943462
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [1:819 master]
|
943463
|
+
[1m[36m (0.3ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (2176, 2177)[0m [test:818 master]
|
943464
|
+
[1m[35m (0.3ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (2314, 2315, 2316) [1:819 master]
|
943465
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943466
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943467
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943468
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943469
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943470
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943471
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943472
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943473
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943474
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943475
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943476
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2346], ["value", 1]] [test:818 master]
|
943477
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943478
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943479
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 2346], ["value", 2]] [test:818 master]
|
943480
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943481
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943482
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [1:819 master]
|
943483
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943484
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943485
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1889], ["value", 3]] [1:819 master]
|
943486
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943487
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943488
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1889], ["value", 4]] [1:819 master]
|
943489
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943490
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943491
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["user_id", 1889], ["value", 5]] [1:819 master]
|
943492
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943493
|
+
[1m[36m (0.4ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 2346]] [test:818 master]
|
943494
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [test:818 master]
|
943495
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1[0m [["user_id", 1889]] [1:819 master]
|
943496
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [1:819 master]
|
943497
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (2178, 2179)[0m [test:818 master]
|
943498
|
+
[1m[35m (0.3ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (2317, 2318, 2319) [1:819 master]
|
943499
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943500
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943501
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
943502
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943503
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943504
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
943505
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
943506
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
943507
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
943508
|
+
[1m[35mSwitchman::Shard Exists (0.3ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
943509
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]]
|
943510
|
+
[1m[35m (0.4ms)[0m COMMIT
|
943511
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m
|
943512
|
+
[1m[35m (0.2ms)[0m BEGIN
|
943513
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]]
|
943514
|
+
[1m[35m (0.3ms)[0m COMMIT
|
943515
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
943516
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]]
|
943517
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
943518
|
+
[1m[35m (0.1ms)[0m BEGIN
|
943519
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m
|
943520
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]]
|
943521
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]]
|
943522
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943523
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
943524
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]]
|
943525
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
943526
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943527
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943528
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943529
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "name" = 'a' WHERE "users"."id" = 2347[0m [test:818 master]
|
943530
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1257]] [test:817 master]
|
943531
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1[0m [test:817 master]
|
943532
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2347]] [test:818 master]
|
943533
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943534
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943535
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
943536
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
943537
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]]
|
943538
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]]
|
943539
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943540
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
943541
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]]
|
943542
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
943543
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943544
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943545
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943546
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (1258) [test:817 master]
|
943547
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (2348)[0m [test:818 master]
|
943548
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1258]] [test:817 master]
|
943549
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2348]] [test:818 master]
|
943550
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943551
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943552
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943553
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943554
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943555
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943556
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943557
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943558
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
943559
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943560
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943561
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943562
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943563
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (1259)[0m [test:817 master]
|
943564
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (2349) [test:818 master]
|
943565
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
943566
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943567
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943568
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943569
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943570
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943571
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943572
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943573
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
943574
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943575
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943576
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943577
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943578
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2350 ORDER BY "users"."id" ASC LIMIT 1 [test:818 master]
|
943579
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943580
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
943581
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943582
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943583
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943584
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943585
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943586
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943587
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user1"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:817 master]
|
943588
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943589
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943590
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00], ["name", "user2"], ["updated_at", Wed, 14 Oct 2015 12:32:45 UTC +00:00]] [test:818 master]
|
943591
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943592
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943593
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
943594
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
943595
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943596
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943597
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
943598
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
943599
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
943600
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943601
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943602
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
943603
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
943604
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943605
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
943606
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
943607
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943608
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943609
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943610
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943611
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943612
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943613
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "9"]] [test:817 master]
|
943614
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943615
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
943616
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
943617
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943618
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943619
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943620
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943621
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943622
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943623
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943624
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943625
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943626
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943627
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943628
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943629
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943630
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943631
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943632
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943633
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
943634
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943635
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943636
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943637
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943638
|
+
[1m[35m (0.2ms)[0m BEGIN [1:819 master]
|
943639
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943640
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
943641
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943642
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943643
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943644
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943645
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943646
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943647
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "10"]] [test:817 master]
|
943648
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943649
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
943650
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
943651
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
943652
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943653
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943654
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943655
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943656
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943657
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943658
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943659
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943660
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943661
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943662
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943663
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943664
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
943665
|
+
[1m[36mSQL (1.9ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
943666
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943667
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943668
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
943669
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
943670
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
943671
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943672
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943673
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
943674
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
943675
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943676
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
943677
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
943678
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943679
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943680
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943681
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943682
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943683
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943684
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943685
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943686
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943687
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1263]] [test:817 master]
|
943688
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943689
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943690
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943691
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943692
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943693
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2352]] [test:818 master]
|
943694
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943695
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943696
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943697
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943698
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943699
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943700
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1890]] [1:819 master]
|
943701
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943702
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943703
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943704
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
943705
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943706
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943707
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943708
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943709
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943710
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943711
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943712
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943713
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943714
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1264]] [test:817 master]
|
943715
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943716
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943717
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943718
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943719
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943720
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2353]] [test:818 master]
|
943721
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943722
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943723
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943724
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943725
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943726
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943727
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1891]] [1:819 master]
|
943728
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943729
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943730
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
943731
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943732
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
943733
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943734
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943735
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943736
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943737
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943738
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943739
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943740
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943741
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943742
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1265]] [test:817 master]
|
943743
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943744
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943745
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943746
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943747
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943748
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2354]] [test:818 master]
|
943749
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943750
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943751
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943752
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943753
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943754
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943755
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1892]] [1:819 master]
|
943756
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943757
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943758
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943759
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943760
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943761
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943762
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943763
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943764
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943765
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943766
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943767
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943768
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943769
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1266]] [test:817 master]
|
943770
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943771
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943772
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943773
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943774
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943775
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2355]] [test:818 master]
|
943776
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943777
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943778
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943779
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943780
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943781
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943782
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1893]] [1:819 master]
|
943783
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943784
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943785
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943786
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
943787
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943788
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943789
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943790
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943791
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943792
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943793
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943794
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943795
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943796
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1267]] [test:817 master]
|
943797
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943798
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943799
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943800
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943801
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943802
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2356]] [test:818 master]
|
943803
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943804
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943805
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943806
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943807
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943808
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943809
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1894]] [1:819 master]
|
943810
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943811
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943812
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
943813
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943814
|
+
[1m[35m (0.2ms)[0m BEGIN [test:817 master]
|
943815
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943816
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943817
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943818
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943819
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943820
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943821
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943822
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943823
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1268]] [test:817 master]
|
943824
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943825
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943826
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943827
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943828
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943829
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2357]] [test:818 master]
|
943830
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943831
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943832
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943833
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943834
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943835
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943836
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1895]] [1:819 master]
|
943837
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943838
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943839
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943840
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
943841
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943842
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943843
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943844
|
+
[1m[35mSwitchman::Shard Load (5.5ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943845
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943846
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943847
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943848
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943849
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943850
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1269]] [test:817 master]
|
943851
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943852
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943853
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943854
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943855
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943856
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2358]] [test:818 master]
|
943857
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943858
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943860
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943861
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943862
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943863
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1896]] [1:819 master]
|
943864
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943866
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943867
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943868
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943869
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943870
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943871
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943872
|
+
[1m[35m (0.2ms)[0m BEGIN [1:819 master]
|
943873
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943874
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943875
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943876
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943877
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1270]] [test:817 master]
|
943878
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943879
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943880
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943881
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943882
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943883
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2359]] [test:818 master]
|
943884
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943885
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943886
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943887
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943888
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943889
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943890
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1897]] [1:819 master]
|
943891
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943892
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943893
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943894
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["parent_id", 1270], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943895
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943896
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943897
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["parent_id", 1271], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943898
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943899
|
+
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 1271]] [test:817 master]
|
943900
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1270]] [test:817 master]
|
943901
|
+
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = $1[0m [["parent_id", 1270]] [test:817 master]
|
943902
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943903
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
943904
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943905
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943906
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943907
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943908
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943909
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943910
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943911
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943912
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943913
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1273]] [test:817 master]
|
943914
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943915
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943916
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943917
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943918
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943919
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2360]] [test:818 master]
|
943920
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943921
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943922
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943923
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943924
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943926
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1898]] [1:819 master]
|
943927
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943928
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943929
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
943930
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
943931
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
943932
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
943933
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
943934
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
943935
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
943936
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943937
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943938
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943939
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943940
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1274]] [test:817 master]
|
943941
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943942
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
943943
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943944
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943945
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943946
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2361]] [test:818 master]
|
943947
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943948
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943949
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943950
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943951
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943952
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
943953
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1899]] [1:819 master]
|
943954
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
943955
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943956
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943957
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
943958
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943959
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943960
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943961
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943962
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943963
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943964
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943965
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943966
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943967
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1275]] [test:817 master]
|
943968
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943969
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943970
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943971
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943972
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2362]] [test:818 master]
|
943974
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
943975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943976
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
943977
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943978
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943979
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
943980
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1900]] [1:819 master]
|
943981
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
943982
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943983
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
943984
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
943985
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
943986
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
943987
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
943988
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
943989
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
943990
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
943991
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
943992
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
943993
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
943994
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
943995
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
943996
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
943997
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1276]] [test:817 master]
|
943998
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
943999
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944000
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
944001
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944002
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944003
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2363]] [test:818 master]
|
944004
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944005
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944006
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
944007
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944008
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944009
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944010
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1901]] [1:819 master]
|
944011
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944012
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944013
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944014
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944015
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944016
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944017
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944018
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944019
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944020
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944021
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
944022
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944023
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944024
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1277]] [test:817 master]
|
944025
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944026
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
944027
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
944028
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944029
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944030
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2364]] [test:818 master]
|
944031
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944032
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
944033
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
944034
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
944035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944036
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
944037
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1902]] [1:819 master]
|
944038
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
944039
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944040
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944041
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944042
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944043
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944044
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944045
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944046
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944047
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944048
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
944049
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944050
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944051
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1278]] [test:817 master]
|
944052
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944053
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944054
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
944055
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944056
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944057
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2365]] [test:818 master]
|
944058
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944059
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944060
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
944061
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944062
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944063
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944064
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1903]] [1:819 master]
|
944065
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944066
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944067
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944068
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944069
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944070
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944071
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944072
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944073
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944074
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944075
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
944076
|
+
[1m[35m (0.6ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944077
|
+
[1m[36m (1.0ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944078
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1279]] [test:817 master]
|
944079
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944080
|
+
[1m[35m (1.4ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
944081
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
944082
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944083
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944084
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2366]] [test:818 master]
|
944085
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944086
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
944087
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
944088
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
944089
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944090
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [1:819 master]
|
944091
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1904]] [1:819 master]
|
944092
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [1:819 master]
|
944093
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944094
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944095
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
944096
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944097
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944098
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944099
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944100
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944101
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944102
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:817 master]
|
944103
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944104
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944105
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1280]] [test:817 master]
|
944106
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944107
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944108
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [test:818 master]
|
944109
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944110
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944111
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 2367]] [test:818 master]
|
944112
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944113
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944114
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00]] [1:819 master]
|
944115
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944116
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944118
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:46 UTC +00:00], ["user_id", 1905]] [1:819 master]
|
944119
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944120
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944121
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944122
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944123
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
944124
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944125
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944126
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
944127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
944128
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
944129
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944130
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
944132
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
944133
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944134
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
944135
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
944136
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944137
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944138
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944139
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944140
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944141
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944142
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944143
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944144
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944145
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944146
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944147
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944148
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944149
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944150
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944151
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944152
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944153
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944154
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944155
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944156
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "11"]] [test:817 master]
|
944157
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944159
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "11"]] [test:817 master]
|
944160
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944161
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944162
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944163
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944164
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944165
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944166
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944167
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944168
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944169
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944170
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
944171
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944172
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944173
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
944174
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
944175
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [test:817 master]
|
944176
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944177
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944178
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
944179
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
944180
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944181
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
944182
|
+
[1m[35m (0.2ms)[0m COMMIT [test:817 master]
|
944183
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944184
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944185
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944186
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944187
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944188
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944189
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944190
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944191
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944192
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944193
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944194
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944195
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944196
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944197
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944198
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944199
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944200
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944201
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944202
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944203
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944204
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944205
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944206
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944207
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944208
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944209
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944210
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944211
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944212
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944213
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944214
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944215
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944216
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944217
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944218
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944219
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944220
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944221
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944222
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944223
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944224
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944225
|
+
[1m[36mSQL (5.0ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
944226
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944227
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
944228
|
+
[1m[35mSwitchman::Shard Exists (0.3ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
944229
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
944230
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
944231
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944232
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944233
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
944234
|
+
[1m[35m (0.4ms)[0m COMMIT [test:817 master]
|
944235
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944236
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
944237
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
944238
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944239
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944240
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944241
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944242
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944243
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944244
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944245
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944246
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944247
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944248
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944249
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944250
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944251
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944252
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944253
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944254
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944255
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944256
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944257
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944258
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944259
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944260
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944261
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944262
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944263
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944264
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
944265
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m [1:819 master]
|
944266
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944267
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944268
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944269
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944270
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944271
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944272
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944273
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944274
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944275
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944276
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944277
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944278
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944279
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944280
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944281
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [test:817 master]
|
944282
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944283
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944284
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944285
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944286
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944287
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" DEFAULT VALUES RETURNING "id"[0m [test:817 master]
|
944288
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944289
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944290
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 829]] [test:817 master]
|
944291
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944292
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944293
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
944294
|
+
[1m[35m (0.2ms)[0m BEGIN [test:817 master]
|
944295
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944296
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944297
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944298
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944299
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944300
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944301
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944302
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944303
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944304
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944305
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944306
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944307
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944308
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944309
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944310
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944311
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944312
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944313
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944314
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944315
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944316
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944317
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944318
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944319
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944320
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944321
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" DEFAULT VALUES RETURNING "id"[0m [test:817 master]
|
944322
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944323
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944324
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 830]] [test:817 master]
|
944325
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944326
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 830 LIMIT 1 [test:817 master]
|
944327
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944328
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944329
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944330
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944331
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944332
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944333
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944334
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944335
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944336
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944337
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944338
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944339
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944340
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944341
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944342
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944343
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944344
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944345
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944346
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944347
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944348
|
+
[1m[35mSwitchman::Shard Load (0.5ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944349
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944350
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944351
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944352
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944353
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944354
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944355
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944356
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944357
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944358
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944359
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944360
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944361
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944362
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944363
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944364
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944365
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944366
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944367
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944368
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944369
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944370
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944371
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944372
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944373
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944374
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944375
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944376
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944377
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944378
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
944379
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944380
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944381
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944382
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944383
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944384
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944385
|
+
[1m[36mSwitchman::Shard Load (0.5ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '12' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944386
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944387
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id"[0m [["database_server_id", "12"], ["name", "public"]] [test:817 master]
|
944388
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944389
|
+
[1m[36m (1.9ms)[0m [1mCREATE SCHEMA switchman_dummy_test_shard_831[0m [12:831 deploy]
|
944390
|
+
[1m[35m (0.1ms)[0m BEGIN [12:831 deploy]
|
944391
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [12:831 deploy]
|
944392
|
+
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [12:831 deploy]
|
944393
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m [12:831 deploy]
|
944394
|
+
Migrating to CreateSwitchmanShards (20130328212039)
|
944395
|
+
[1m[35m (5.1ms)[0m CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL) [12:831 deploy]
|
944396
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130328212039"]] [12:831 deploy]
|
944397
|
+
Migrating to CreateDefaultShard (20130328224244)
|
944398
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130328224244"]] [12:831 deploy]
|
944399
|
+
Migrating to CreateUsers (20130403132607)
|
944400
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944401
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [12:831 deploy]
|
944402
|
+
Migrating to CreateAppendages (20130411202442)
|
944403
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944404
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [12:831 deploy]
|
944405
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
944406
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944407
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [12:831 deploy]
|
944408
|
+
Migrating to CreateDigits (20131022202028)
|
944409
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944410
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [12:831 deploy]
|
944411
|
+
Migrating to CreateFeatures (20131206172923)
|
944412
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944413
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [12:831 deploy]
|
944414
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
944415
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "users" ADD COLUMN "parent_id" bigint[0m [12:831 deploy]
|
944416
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [12:831 deploy]
|
944417
|
+
Migrating to CreateRoots (20140219183820)
|
944418
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [0m [12:831 deploy]
|
944419
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [12:831 deploy]
|
944420
|
+
Migrating to AddDummyForeignKey (20150618035859)
|
944421
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD COLUMN "broken_id" bigint[0m [12:831 deploy]
|
944422
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150618035859"]] [12:831 deploy]
|
944423
|
+
[1m[36m (0.8ms)[0m [1mCOMMIT[0m [12:831 deploy]
|
944424
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944425
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 831[0m [["name", "switchman_dummy_test_shard_831"]] [test:817 master]
|
944426
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944427
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [12:831 master]
|
944428
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [12:831 master]
|
944429
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [12:831 master]
|
944430
|
+
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "users" [12:831 master]
|
944431
|
+
[1m[36m (14.4ms)[0m [1mDROP SCHEMA switchman_dummy_test_shard_831 CASCADE[0m [12:831 deploy]
|
944432
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "users" [12:831 master]
|
944433
|
+
PG::UndefinedTable: ERROR: relation "users" does not exist
|
944434
|
+
LINE 1: SELECT COUNT(*) FROM "users"
|
944435
|
+
^
|
944436
|
+
: SELECT COUNT(*) FROM "users"
|
944437
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944438
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944439
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944440
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944441
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944442
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944443
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944444
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
944445
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
944446
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944447
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944448
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944449
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944450
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944451
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944452
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944453
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944454
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944455
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944456
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944457
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944458
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944459
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944460
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944461
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944462
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944463
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944464
|
+
[1m[35m (0.2ms)[0m BEGIN [1:819 master]
|
944465
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944466
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944467
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944468
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944469
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944470
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944471
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944472
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944473
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944474
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944475
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944476
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944477
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944478
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944479
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944480
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944481
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944482
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944483
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944484
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944485
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944486
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944487
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944488
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944489
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944490
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944491
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944492
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944493
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944494
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944495
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944496
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944497
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944498
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944499
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944500
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944501
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944502
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944503
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944504
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944505
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944506
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944507
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944508
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944509
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944510
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944511
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944512
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944513
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944514
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 817 [test:817 master]
|
944515
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944516
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944517
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944518
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944519
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944520
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944521
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944522
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY "switchman_shards"."id" ASC [test:817 master]
|
944523
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944524
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944525
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944526
|
+
[1m[35mSwitchman::Shard Load (0.7ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944527
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944528
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944529
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944530
|
+
[1m[35mSwitchman::Shard Load (0.5ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944531
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944532
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944533
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944534
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944535
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944536
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944537
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944538
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944539
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944540
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944541
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944542
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944543
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944544
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944545
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944546
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944547
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944548
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944549
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944550
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944551
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944552
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944553
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944554
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944555
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944556
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944557
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944558
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944559
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944560
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944561
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944562
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 10819 LIMIT 1 [test:817 master]
|
944563
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944564
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944565
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944566
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944567
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944568
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944569
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944570
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944571
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944572
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944573
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944574
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944575
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944576
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944577
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944578
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944579
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944580
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944581
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944582
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944583
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944584
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 819 LIMIT 1 [test:817 master]
|
944585
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944586
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944587
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944588
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944589
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944590
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944591
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944592
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944593
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944594
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944595
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944596
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944597
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944598
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944599
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944600
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944601
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944602
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944603
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944604
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944605
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944606
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944607
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944608
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944609
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944610
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944611
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944612
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944613
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944614
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944615
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944616
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944617
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944618
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944619
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944620
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944621
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944622
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944623
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944624
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944625
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944626
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944627
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944628
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944629
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944630
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944631
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944632
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944633
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944634
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944635
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944636
|
+
[1m[35mSQL (1.0ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
944637
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944638
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944639
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [test:817 master]
|
944640
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", true], ["id", 817]] [test:817 master]
|
944641
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
944642
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944643
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944644
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id" [["id", 818], ["name", "shard1"]] [test:817 master]
|
944645
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [test:817 master]
|
944646
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944647
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
944648
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
944649
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944650
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944651
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944652
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944653
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944654
|
+
[1m[35mSwitchman::Shard Load (1.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=817 AND id<818) OR (id>=819 AND id<820)) ORDER BY "switchman_shards"."id" ASC [test:817 master]
|
944655
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944656
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944657
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944658
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944659
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944660
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944661
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944662
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (817)) [test:817 master]
|
944663
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944664
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944665
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944666
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944667
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944668
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944669
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944670
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=817 AND id<=818)) AND (id NOT IN (817)) [test:817 master]
|
944671
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944672
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944673
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944674
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944675
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944676
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944677
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944678
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id<=818)) ORDER BY "switchman_shards"."id" ASC [test:817 master]
|
944679
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944680
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944681
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944682
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944683
|
+
[1m[36mSwitchman::Shard Load (0.5ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944684
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944685
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944686
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=818)) ORDER BY "switchman_shards"."id" ASC [test:817 master]
|
944687
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944688
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944689
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944690
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944691
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944692
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944693
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944694
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=817 AND id<=818)) ORDER BY "switchman_shards"."id" ASC [test:817 master]
|
944695
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944696
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944697
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944698
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944699
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944700
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944701
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944702
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (817)) [test:817 master]
|
944703
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944704
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944705
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944706
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944707
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944708
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944709
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944710
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=817 AND id<818)) [test:817 master]
|
944711
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944712
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944713
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944714
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944715
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944716
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944717
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944718
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=818 AND id<=818)) AND (id NOT IN (817)) [test:817 master]
|
944719
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944720
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944721
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944722
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944723
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944724
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944725
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944726
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (817)) [test:817 master]
|
944727
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "switchman_shards"[0m [test:817 master]
|
944728
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944729
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944730
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944731
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944732
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944733
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944734
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944735
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944736
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944737
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [test:817 master]
|
944738
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944739
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944740
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [test:817 master]
|
944741
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id"[0m [["default", true], ["id", 817]] [test:817 master]
|
944742
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
944743
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944744
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944745
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("id", "name") VALUES ($1, $2) RETURNING "id"[0m [["id", 818], ["name", "shard1"]] [test:817 master]
|
944746
|
+
[1m[35m (0.3ms)[0m COMMIT [test:817 master]
|
944747
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944748
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 819], ["name", "shard2"]] [test:817 master]
|
944749
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [test:817 master]
|
944750
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944751
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944752
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944753
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944754
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944755
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944756
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944757
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944758
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 818 LIMIT 1 [test:817 master]
|
944759
|
+
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (2368) LIMIT 1[0m [test:818 master]
|
944760
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944761
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
944762
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944763
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944764
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944765
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944766
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944767
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944768
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944769
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944770
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2369 LIMIT 1 [test:818 master]
|
944771
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [1:819 master]
|
944772
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:818 master]
|
944773
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944774
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944775
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944776
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944777
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
944779
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944780
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944781
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [1:819 master]
|
944782
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["name", "multi-shard exists"], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [1:819 master]
|
944783
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [1:819 master]
|
944784
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [test:817 master]
|
944785
|
+
[1m[36mUser Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1[0m [test:817 master]
|
944786
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [test:818 master]
|
944787
|
+
[1m[36mUser Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1[0m [1:819 master]
|
944788
|
+
[1m[35m (0.2ms)[0m ROLLBACK [1:819 master]
|
944789
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:818 master]
|
944790
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944791
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944792
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944793
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944794
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944795
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944796
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944797
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944798
|
+
[1m[35mUser Exists (0.9ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."id" = 2371 LIMIT 1 [test:818 master]
|
944799
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [1:819 master]
|
944800
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:818 master]
|
944801
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944802
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [test:817 master]
|
944803
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 818]] [test:817 master]
|
944804
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 819]] [test:817 master]
|
944805
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [1:819 master]
|
944806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
944807
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944808
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944809
|
+
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2372]] [test:818 master]
|
944810
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944811
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
944812
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944813
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944814
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 818]] [test:817 master]
|
944815
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 819]] [test:817 master]
|
944816
|
+
[1m[35m (0.1ms)[0m BEGIN [1:819 master]
|
944817
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:818 master]
|
944818
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00], ["updated_at", Wed, 14 Oct 2015 12:32:47 UTC +00:00]] [test:818 master]
|
944819
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:818 master]
|
944820
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:818 master]
|
944821
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = $1[0m [["id", 2373]] [test:818 master]
|
944822
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:818 master]
|
944823
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 8180000000002373 ORDER BY "users"."id" ASC LIMIT 1[0m [test:818 master]
|
944824
|
+
[1m[35m (0.1ms)[0m ROLLBACK [1:819 master]
|
944825
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:818 master]
|
944826
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "switchman_shards" [test:817 master]
|
944827
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1[0m [test:817 master]
|
944828
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944829
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944830
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "14"], ["name", "non_existent_shard"]] [test:817 master]
|
944831
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944832
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944833
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "14"]] [test:817 master]
|
944834
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944835
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users"[0m [14:832 master]
|
944836
|
+
PG::UndefinedTable: ERROR: relation "users" does not exist
|
944837
|
+
LINE 1: SELECT COUNT(*) FROM "users"
|
944838
|
+
^
|
944839
|
+
: SELECT COUNT(*) FROM "users"
|
944840
|
+
[1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "users" [14:833 master]
|
944841
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944842
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944843
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944844
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "15"]] [test:817 master]
|
944845
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944846
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944847
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944848
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944849
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "16"]] [test:817 master]
|
944850
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944851
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|
944852
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944853
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944854
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "17"]] [test:817 master]
|
944855
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944856
|
+
[1m[35m (0.2ms)[0m ROLLBACK [test:817 master]
|
944857
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944858
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "18"]] [test:817 master]
|
944860
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944861
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
944862
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944863
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [test:817 master]
|
944864
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "19"]] [test:817 master]
|
944865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [test:817 master]
|
944866
|
+
[1m[35m (0.1ms)[0m ROLLBACK [test:817 master]
|
944867
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [test:817 master]
|
944868
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [test:817 master]
|
944869
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id"[0m [["database_server_id", "20"]] [test:817 master]
|
944870
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [test:817 master]
|
944871
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [test:817 master]
|
944872
|
+
[1m[35m (0.1ms)[0m BEGIN [test:817 master]
|
944873
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [test:817 master]
|