switchman 1.2.29 → 1.2.30

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a0339a5863cb11a5603acb9c86e996fbf443477
4
- data.tar.gz: c3f96d9064011d0b8361a791337887c693b60d70
3
+ metadata.gz: f9d43f90b72896c88d968454e98ab442ad18194b
4
+ data.tar.gz: e600c3c7f45533d7b738b366c8d717c9fb08d71f
5
5
  SHA512:
6
- metadata.gz: cf95242eeb586c0666f19dc93e52d06344cf724322031235a13ce125351bce4a1c391d49fb612219be7351a7f08a1ecaaa178fbe46b707616fe1387706c9edd6
7
- data.tar.gz: 95b1e233e18eee8584f07003094e3b629d70aef7af6395565e685b4628f573cc3eabfbeff8880ba89a78e20120b125c481bb7d836ae90a779c6f10ee334107d0
6
+ metadata.gz: cabd3142197a1660624817a21ed5ac4a5776f5cb73160c57d85dc481c7ec6dd2490b5aa2aa1a46186ae0cec9ec401a3768a5ec6ceb36cb063a2846b017bf00a8
7
+ data.tar.gz: f85ac155c530ce54a18b044771ce6e2702129fdb4a340e2433f6b516598df8f99c13b5c99bbb628f1da8d948156c78bd0f44dad6189f04867a29f7519cd7fe95
@@ -110,7 +110,7 @@ module Switchman
110
110
  end
111
111
 
112
112
  def hash
113
- global_id.hash
113
+ self.class.sharded_primary_key? ? global_id.hash : super
114
114
  end
115
115
 
116
116
  def to_param
@@ -60,7 +60,7 @@ module Switchman
60
60
  ConnectionHandler.make_sharing_automagic(spec.config)
61
61
  ConnectionHandler.make_sharing_automagic(Shard.default.database_server.config)
62
62
 
63
- ::ActiveRecord::Base.configurations[::Rails.env] = spec.config.stringify_keys
63
+ ::ActiveRecord::Base.configurations[::Rails.env] = spec.instance_variable_get(:@config).stringify_keys
64
64
  end
65
65
  @shard_connection_pools ||= { [:master, Shard.default.database_server.shareable? ? ::Rails.env : Shard.default] => pool}
66
66
 
@@ -17,7 +17,7 @@ module Switchman
17
17
  raise "Not postgres!" unless self.spec.config[:adapter] == 'postgresql'
18
18
  connection unless @schemas
19
19
  # default shard will not switch databases immediately, so it won't be set yet
20
- @schemas ||= connection.schemas
20
+ @schemas ||= connection.current_schemas
21
21
  @schemas.first
22
22
  end
23
23
 
@@ -65,7 +65,7 @@ module Switchman
65
65
 
66
66
  def switch_database(conn)
67
67
  if !@schemas && conn.adapter_name == 'PostgreSQL' && !self.shard.database_server.config[:shard_name]
68
- @schemas = conn.schemas
68
+ @schemas = conn.current_schemas
69
69
  end
70
70
 
71
71
  spec.config[:shard_name] = self.shard.name
@@ -5,7 +5,7 @@ module Switchman
5
5
  klass::NATIVE_DATABASE_TYPES[:primary_key] = "bigserial primary key".freeze
6
6
  end
7
7
 
8
- def schemas
8
+ def current_schemas
9
9
  select_values("SELECT * FROM unnest(current_schemas(false))")
10
10
  end
11
11
  end
@@ -255,7 +255,7 @@ module Switchman
255
255
  if shard == :bootstrap
256
256
  # rescue nil because the database may not exist yet; if it doesn't,
257
257
  # it will shortly, and this will be re-invoked
258
- ::ActiveRecord::Base.connection.schemas.first rescue nil
258
+ ::ActiveRecord::Base.connection.current_schemas.first rescue nil
259
259
  else
260
260
  shard.activate { ::ActiveRecord::Base.connection_pool.default_schema }
261
261
  end
@@ -1,3 +1,3 @@
1
1
  module Switchman
2
- VERSION = "1.2.29"
2
+ VERSION = "1.2.30"
3
3
  end
@@ -19,35 +19,35 @@ ActiveRecord::Schema.define(version: 20140219183820) do
19
19
  create_table "appendages", force: true do |t|
20
20
  t.integer "user_id", limit: 8
21
21
  t.integer "value"
22
- t.datetime "created_at", null: false
23
- t.datetime "updated_at", null: false
22
+ t.datetime "created_at"
23
+ t.datetime "updated_at"
24
24
  end
25
25
 
26
26
  create_table "digits", force: true do |t|
27
27
  t.integer "appendage_id", limit: 8
28
28
  t.integer "value"
29
- t.datetime "created_at", null: false
30
- t.datetime "updated_at", null: false
29
+ t.datetime "created_at"
30
+ t.datetime "updated_at"
31
31
  end
32
32
 
33
33
  create_table "features", force: true do |t|
34
34
  t.integer "owner_id", limit: 8
35
35
  t.string "owner_type"
36
36
  t.integer "value"
37
- t.datetime "created_at", null: false
38
- t.datetime "updated_at", null: false
37
+ t.datetime "created_at"
38
+ t.datetime "updated_at"
39
39
  end
40
40
 
41
41
  create_table "mirror_users", force: true do |t|
42
42
  t.integer "user_id", limit: 8
43
- t.datetime "created_at", null: false
44
- t.datetime "updated_at", null: false
43
+ t.datetime "created_at"
44
+ t.datetime "updated_at"
45
45
  end
46
46
 
47
47
  create_table "roots", force: true do |t|
48
48
  t.integer "user_id", limit: 8
49
- t.datetime "created_at", null: false
50
- t.datetime "updated_at", null: false
49
+ t.datetime "created_at"
50
+ t.datetime "updated_at"
51
51
  end
52
52
 
53
53
  create_table "switchman_shards", force: true do |t|
@@ -59,8 +59,8 @@ ActiveRecord::Schema.define(version: 20140219183820) do
59
59
  create_table "users", force: true do |t|
60
60
  t.string "name"
61
61
  t.integer "mirror_user_id", limit: 8
62
- t.datetime "created_at", null: false
63
- t.datetime "updated_at", null: false
62
+ t.datetime "created_at"
63
+ t.datetime "updated_at"
64
64
  t.integer "parent_id", limit: 8
65
65
  end
66
66
 
@@ -99,3 +99,52 @@ Connecting to database specified by database.yml
99
99
  Switchman::Shard Load (1.9ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL LIMIT 1
100
100
   (0.4ms) SELECT * FROM unnest(current_schemas(false)) [shard master]
101
101
  Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL LIMIT 1
102
+  (36.0ms) SELECT * FROM unnest(current_schemas(false))
103
+ Switchman::Shard Load (3.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
104
+  (0.3ms) SELECT * FROM unnest(current_schemas(false))
105
+ Switchman::Shard Load (2.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
106
+  (2.3ms) SELECT * FROM unnest(current_schemas(false)) [shard master]
107
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
108
+ Switchman::Shard Load (1.0ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1 deploy]
109
+ ActiveRecord::SchemaMigration Load (2.8ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1 deploy]
110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1 deploy]
111
+  (0.4ms) SELECT * FROM unnest(current_schemas(false))
112
+ Switchman::Shard Load (0.8ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
113
+  (0.4ms) SELECT * FROM unnest(current_schemas(false))
114
+ Switchman::Shard Load (0.7ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
115
+  (0.4ms) SELECT * FROM unnest(current_schemas(false)) [shard master]
116
+ Switchman::Shard Load (0.5ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
117
+  (0.6ms) SELECT COUNT(*) FROM "switchman_shards" [shard 1 master]
118
+ Switchman::Shard Load (2.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='development') AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1 master]
119
+  (0.2ms) BEGIN [shard 1 master]
120
+ SQL (1.0ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "development"], ["name", "public"]] [shard 1 master]
121
+  (2.8ms) CREATE SCHEMA switchman_development_shard_2 [shard 2 deploy]
122
+  (0.1ms) BEGIN [shard 2 deploy]
123
+  (9.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 2 deploy]
124
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 2 deploy]
125
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 2 deploy]
126
+ Migrating to CreateUsers (20130403132607)
127
+  (26.7ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
128
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 2 deploy]
129
+ Migrating to CreateAppendages (20130411202442)
130
+  (19.7ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
131
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 2 deploy]
132
+ Migrating to CreateMirrorUsers (20130411202551)
133
+  (16.1ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
134
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 2 deploy]
135
+ Migrating to CreateDigits (20131022202028)
136
+  (8.3ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
137
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 2 deploy]
138
+ Migrating to CreateFeatures (20131206172923)
139
+  (7.9ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
140
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 2 deploy]
141
+ Migrating to AddParentIdToUsers (20140123154135)
142
+  (0.4ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 2 deploy]
143
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 2 deploy]
144
+ Migrating to CreateRoots (20140219183820)
145
+  (7.3ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
146
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 2 deploy]
147
+  (6.5ms) COMMIT [shard 2 deploy]
148
+ SQL (0.2ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 2 [["name", "switchman_development_shard_2"]] [shard 1 master]
149
+  (0.4ms) COMMIT [shard 1 master]
150
+  (0.4ms) select current_user [shard 1 master]
@@ -223638,3 +223638,3536 @@ Connecting to database specified by database.yml
223638
223638
  SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["default", false], ["name", nil]]
223639
223639
   (0.1ms) RELEASE SAVEPOINT active_record_1
223640
223640
   (0.1ms) ROLLBACK
223641
+ Connecting to database specified by database.yml
223642
+  (0.5ms) SELECT * FROM unnest(current_schemas(false))
223643
+ Switchman::Shard Load (18.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223644
+ Connecting to database specified by database.yml
223645
+  (0.5ms) SELECT * FROM unnest(current_schemas(false))
223646
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223647
+ Connecting to database specified by database.yml
223648
+  (0.5ms) SELECT * FROM unnest(current_schemas(false))
223649
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223650
+ SQL (0.7ms) DELETE FROM "switchman_shards"
223651
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223652
+  (0.1ms) BEGIN
223653
+ Switchman::Shard Exists (0.4ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223654
+ SQL (24.0ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", nil], ["default", true], ["name", nil]]
223655
+  (0.5ms) COMMIT
223656
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
223657
+ Switchman::Shard Load (1.9ms) SELECT "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 id LIMIT 1
223658
+  (0.1ms) BEGIN
223659
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["default", false], ["name", "public"]]
223660
+  (1.3ms) CREATE SCHEMA switchman_test_shard_1743 [shard 1743 deploy]
223661
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 deploy]
223662
+  (27.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1743 deploy]
223663
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1743 deploy]
223664
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 1743 deploy]
223665
+ Migrating to CreateUsers (20130403132607)
223666
+  (28.7ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223667
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1743 deploy]
223668
+ Migrating to CreateAppendages (20130411202442)
223669
+  (11.8ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223670
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1743 deploy]
223671
+ Migrating to CreateMirrorUsers (20130411202551)
223672
+  (14.0ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223673
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1743 deploy]
223674
+ Migrating to CreateDigits (20131022202028)
223675
+  (7.8ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223676
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1743 deploy]
223677
+ Migrating to CreateFeatures (20131206172923)
223678
+  (14.2ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223679
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1743 deploy]
223680
+ Migrating to AddParentIdToUsers (20140123154135)
223681
+  (0.5ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1743 deploy]
223682
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1743 deploy]
223683
+ Migrating to CreateRoots (20140219183820)
223684
+  (26.0ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
223685
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1743 deploy]
223686
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 deploy]
223687
+  (0.3ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1743' WHERE "switchman_shards"."id" = 1743 [shard 1742 master]
223688
+  (1.2ms) COMMIT [shard 1742 master]
223689
+ Switchman::Shard Load (0.8ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '1' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
223690
+  (0.1ms) BEGIN [shard 1742 master]
223691
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["default", false], ["name", "public"]] [shard 1742 master]
223692
+  (0.3ms) COMMIT [shard 1742 master]
223693
+  (0.6ms) CREATE SCHEMA switchman_test_shard_1744 [shard 1744 deploy]
223694
+  (0.1ms) BEGIN [shard 1744 deploy]
223695
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1744 deploy]
223696
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1744 deploy]
223697
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 1744 deploy]
223698
+ Migrating to CreateUsers (20130403132607)
223699
+  (2.2ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223700
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1744 deploy]
223701
+ Migrating to CreateAppendages (20130411202442)
223702
+  (1.9ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223703
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1744 deploy]
223704
+ Migrating to CreateMirrorUsers (20130411202551)
223705
+  (1.9ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223706
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1744 deploy]
223707
+ Migrating to CreateDigits (20131022202028)
223708
+  (3.5ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223709
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1744 deploy]
223710
+ Migrating to CreateFeatures (20131206172923)
223711
+  (3.1ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223712
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1744 deploy]
223713
+ Migrating to AddParentIdToUsers (20140123154135)
223714
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1744 deploy]
223715
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1744 deploy]
223716
+ Migrating to CreateRoots (20140219183820)
223717
+  (3.2ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
223718
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1744 deploy]
223719
+  (1.1ms) COMMIT [shard 1744 deploy]
223720
+  (0.1ms) BEGIN [shard 1742 master]
223721
+  (0.3ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1744' WHERE "switchman_shards"."id" = 1744 [shard 1742 master]
223722
+  (0.3ms) COMMIT [shard 1742 master]
223723
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
223724
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223725
+  (0.1ms) BEGIN [shard 1742 master]
223726
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223727
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
223728
+  (0.3ms) COMMIT [shard 1742 master]
223729
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223730
+  (0.1ms) BEGIN [shard 1742 master]
223731
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
223732
+  (0.3ms) COMMIT [shard 1742 master]
223733
+  (0.0ms) BEGIN [shard 1742 master]
223734
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
223735
+  (0.2ms) COMMIT [shard 1742 master]
223736
+  (0.1ms) BEGIN [shard 1742 master]
223737
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223738
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223739
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223740
+  (0.1ms) BEGIN [shard 1744 master]
223741
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223742
+ SQL (8.0ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223743
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223744
+  (0.2ms) SAVEPOINT active_record_1 [shard 1743 master]
223745
+ SQL (6.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 1]] [shard 1743 master]
223746
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223747
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223748
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 2]] [shard 1743 master]
223749
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223750
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223751
+ SQL (12.0ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223752
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223753
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223754
+ SQL (1.0ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 3]] [shard 1744 master]
223755
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223756
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223757
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 4]] [shard 1744 master]
223758
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223759
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223760
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 5]] [shard 1744 master]
223761
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223762
+  (1.0ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 1 [shard 1743 master]
223763
+  (0.4ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1743 master]
223764
+  (0.4ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 1 [shard 1744 master]
223765
+  (0.2ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1744 master]
223766
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
223767
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
223768
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (1, 2) [shard 1743 master]
223769
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (1, 2, 3) [shard 1744 master]
223770
+  (0.1ms) ROLLBACK [shard 1744 master]
223771
+  (0.2ms) ROLLBACK [shard 1743 master]
223772
+  (0.1ms) BEGIN [shard 1742 master]
223773
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223774
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223775
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223776
+  (0.0ms) BEGIN [shard 1744 master]
223777
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223778
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223779
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223780
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223781
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 1]] [shard 1743 master]
223782
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223783
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223784
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 2]] [shard 1743 master]
223785
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223786
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223787
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223788
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223789
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223790
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 3]] [shard 1744 master]
223791
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223792
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223793
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 4]] [shard 1744 master]
223794
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223795
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223796
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 5]] [shard 1744 master]
223797
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223798
+  (0.3ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 2 [shard 1743 master]
223799
+  (0.2ms) SELECT COUNT(*) FROM "appendages" [shard 1743 master]
223800
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 2 [shard 1744 master]
223801
+  (0.1ms) SELECT COUNT(*) FROM "appendages" [shard 1744 master]
223802
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (3, 4) [shard 1743 master]
223803
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (4, 5, 6) [shard 1744 master]
223804
+  (0.1ms) ROLLBACK [shard 1744 master]
223805
+  (0.1ms) ROLLBACK [shard 1743 master]
223806
+  (0.1ms) BEGIN [shard 1742 master]
223807
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223808
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223809
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223810
+  (0.0ms) BEGIN [shard 1744 master]
223811
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223812
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223813
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223814
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223815
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 1]] [shard 1743 master]
223816
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223817
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223818
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 2]] [shard 1743 master]
223819
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223820
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223821
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223822
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223823
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223824
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 3]] [shard 1744 master]
223825
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223826
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223827
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 4]] [shard 1744 master]
223828
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223829
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223830
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 5]] [shard 1744 master]
223831
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223832
+  (0.5ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 3 [shard 1743 master]
223833
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1743 master]
223834
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 3 [shard 1744 master]
223835
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1744 master]
223836
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (5, 6) [shard 1743 master]
223837
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (7, 8, 9) [shard 1744 master]
223838
+  (0.1ms) ROLLBACK [shard 1744 master]
223839
+  (0.1ms) ROLLBACK [shard 1743 master]
223840
+  (0.0ms) BEGIN [shard 1742 master]
223841
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223842
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223843
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223844
+  (0.0ms) BEGIN [shard 1744 master]
223845
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223846
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223847
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223848
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223849
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 1]] [shard 1743 master]
223850
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223851
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223852
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 2]] [shard 1743 master]
223853
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223854
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223855
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223856
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223857
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223858
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 3]] [shard 1744 master]
223859
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223860
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223861
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 4]] [shard 1744 master]
223862
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223863
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223864
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 5]] [shard 1744 master]
223865
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223866
+  (1.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 4 [shard 1743 master]
223867
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1743 master]
223868
+  (0.3ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 4 [shard 1744 master]
223869
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1744 master]
223870
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (7, 8) [shard 1743 master]
223871
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (10, 11, 12) [shard 1744 master]
223872
+  (0.1ms) ROLLBACK [shard 1744 master]
223873
+  (0.1ms) ROLLBACK [shard 1743 master]
223874
+  (0.1ms) BEGIN [shard 1742 master]
223875
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223876
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223877
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223878
+  (0.1ms) BEGIN [shard 1744 master]
223879
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223880
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223881
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223882
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223883
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 1]] [shard 1743 master]
223884
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223885
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223886
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 2]] [shard 1743 master]
223887
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223888
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223889
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223890
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223891
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223892
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 3]] [shard 1744 master]
223893
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223894
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
223895
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 4]] [shard 1744 master]
223896
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223897
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223898
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 5]] [shard 1744 master]
223899
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223900
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 5 [shard 1743 master]
223901
+  (0.1ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1743 master]
223902
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 5 [shard 1744 master]
223903
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1744 master]
223904
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (9, 10) [shard 1743 master]
223905
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (13, 14, 15) [shard 1744 master]
223906
+  (0.1ms) ROLLBACK [shard 1744 master]
223907
+  (0.1ms) ROLLBACK [shard 1743 master]
223908
+  (0.0ms) BEGIN [shard 1742 master]
223909
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223910
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223911
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223912
+  (0.0ms) BEGIN [shard 1744 master]
223913
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223914
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223915
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223916
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223917
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223918
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223919
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223920
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 1]] [shard 1743 master]
223921
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223922
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223923
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000006], ["value", 3]] [shard 1743 master]
223924
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223925
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223926
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000006], ["value", 2]] [shard 1744 master]
223927
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223928
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223929
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 4]] [shard 1744 master]
223930
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223931
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223932
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 5]] [shard 1744 master]
223933
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223934
+  (0.1ms) SHOW max_identifier_length [shard 1742 master]
223935
+  (0.3ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223936
+  (0.3ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223937
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223938
+  (0.4ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223939
+  (0.1ms) SHOW max_identifier_length [shard 1744 master]
223940
+  (0.3ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223941
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223942
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1743 master]
223943
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1743 master]
223944
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1744 master]
223945
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
223946
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1744 master]
223947
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1743 master]
223948
+  (0.1ms) ROLLBACK [shard 1744 master]
223949
+  (0.1ms) ROLLBACK [shard 1743 master]
223950
+  (0.0ms) BEGIN [shard 1742 master]
223951
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223952
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223953
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223954
+  (0.0ms) BEGIN [shard 1744 master]
223955
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
223956
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223957
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223958
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223959
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
223960
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223961
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223962
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 1]] [shard 1743 master]
223963
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223964
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223965
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000007], ["value", 3]] [shard 1743 master]
223966
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223967
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223968
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000007], ["value", 2]] [shard 1744 master]
223969
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223970
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223971
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 4]] [shard 1744 master]
223972
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223973
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223974
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 5]] [shard 1744 master]
223975
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
223976
+  (0.3ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223977
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223978
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223979
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223980
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
223981
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
223982
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1743 master]
223983
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1743 master]
223984
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1744 master]
223985
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
223986
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1744 master]
223987
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1743 master]
223988
+  (0.1ms) ROLLBACK [shard 1744 master]
223989
+  (0.1ms) ROLLBACK [shard 1743 master]
223990
+  (0.1ms) BEGIN [shard 1742 master]
223991
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
223992
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
223993
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
223994
+  (0.1ms) BEGIN [shard 1744 master]
223995
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
223996
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
223997
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
223998
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
223999
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224000
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224001
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224002
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 1]] [shard 1743 master]
224003
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224004
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224005
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000008], ["value", 3]] [shard 1743 master]
224006
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224007
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224008
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000008], ["value", 2]] [shard 1744 master]
224009
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224010
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224011
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 4]] [shard 1744 master]
224012
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224013
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224014
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 5]] [shard 1744 master]
224015
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224016
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224017
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224018
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224019
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224020
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224021
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224022
+  (0.2ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1743 master]
224023
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1743 master]
224024
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1744 master]
224025
+  (0.2ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
224026
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1744 master]
224027
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1743 master]
224028
+  (0.1ms) ROLLBACK [shard 1744 master]
224029
+  (0.1ms) ROLLBACK [shard 1743 master]
224030
+  (0.1ms) BEGIN [shard 1742 master]
224031
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224032
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224033
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224034
+  (0.1ms) BEGIN [shard 1744 master]
224035
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224036
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224037
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224038
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224039
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224040
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224041
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224042
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 1]] [shard 1743 master]
224043
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224044
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224045
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000009], ["value", 3]] [shard 1743 master]
224046
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224047
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224048
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000009], ["value", 2]] [shard 1744 master]
224049
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224050
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
224051
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 4]] [shard 1744 master]
224052
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224053
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224054
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 5]] [shard 1744 master]
224055
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224056
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224057
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", nil]] [shard 1743 master]
224058
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224059
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224060
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224061
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224062
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224063
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", nil]] [shard 1743 master]
224064
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224065
+  (0.3ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id ORDER BY COUNT(*) DESC LIMIT 1 [shard 1743 master]
224066
+  (0.1ms) ROLLBACK [shard 1744 master]
224067
+  (0.1ms) ROLLBACK [shard 1743 master]
224068
+  (0.0ms) BEGIN [shard 1742 master]
224069
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224070
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224071
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224072
+  (0.0ms) BEGIN [shard 1744 master]
224073
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224074
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224075
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224076
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
224077
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224078
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224079
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224080
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 1]] [shard 1743 master]
224081
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224082
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224083
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000010], ["value", 3]] [shard 1743 master]
224084
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224085
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224086
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000011], ["value", 2]] [shard 1744 master]
224087
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224088
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224089
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", 4]] [shard 1744 master]
224090
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224091
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224092
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", 5]] [shard 1744 master]
224093
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224094
+  (0.2ms) 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 [shard 1743 master]
224095
+  (0.2ms) 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 [shard 1744 master]
224096
+  (0.2ms) 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 [shard 1743 master]
224097
+  (0.2ms) 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 [shard 1744 master]
224098
+  (0.2ms) 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 [shard 1743 master]
224099
+  (0.2ms) 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 [shard 1744 master]
224100
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1743 master]
224101
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1743 master]
224102
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (10) [shard 1744 master]
224103
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
224104
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (10) [shard 1744 master]
224105
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1743 master]
224106
+  (0.1ms) ROLLBACK [shard 1744 master]
224107
+  (0.1ms) ROLLBACK [shard 1743 master]
224108
+  (0.1ms) BEGIN [shard 1742 master]
224109
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224110
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224111
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224112
+  (0.0ms) BEGIN [shard 1744 master]
224113
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224114
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224115
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224116
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224117
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224118
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224119
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224120
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 12], ["value", 1]] [shard 1743 master]
224121
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224122
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224123
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000011], ["value", 3]] [shard 1743 master]
224124
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224125
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224126
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000012], ["value", 2]] [shard 1744 master]
224127
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224128
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224129
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 4]] [shard 1744 master]
224130
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224131
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224132
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 5]] [shard 1744 master]
224133
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224134
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224135
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224136
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224137
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224138
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
224139
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
224140
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1743 master]
224141
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (12) [shard 1743 master]
224142
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1744 master]
224143
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
224144
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1744 master]
224145
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (12) [shard 1743 master]
224146
+  (0.1ms) ROLLBACK [shard 1744 master]
224147
+  (0.1ms) ROLLBACK [shard 1743 master]
224148
+  (0.0ms) BEGIN [shard 1742 master]
224149
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224150
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224151
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224152
+  (0.0ms) BEGIN [shard 1744 master]
224153
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224155
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224156
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224157
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 1743 master]
224158
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224159
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224160
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224161
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224162
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224163
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 12], ["value", nil]] [shard 1744 master]
224164
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224165
+ SQL (0.3ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
224166
+ SQL (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1744 master]
224167
+ SQL (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
224168
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1744 master]
224169
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
224170
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1744 master]
224171
+  (0.1ms) ROLLBACK [shard 1744 master]
224172
+  (0.1ms) ROLLBACK [shard 1743 master]
224173
+  (0.0ms) BEGIN [shard 1742 master]
224174
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224175
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224176
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224177
+  (0.0ms) BEGIN [shard 1744 master]
224178
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224179
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224180
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224181
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224182
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 1743 master]
224183
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224184
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224185
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224186
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224187
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224188
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 1744 master]
224189
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224190
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26 [shard 1743 master]
224191
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
224192
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26 [shard 1743 master]
224193
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
224194
+ SQL (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26 [shard 1743 master]
224195
+ SQL (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
224196
+  (0.1ms) ROLLBACK [shard 1744 master]
224197
+  (0.1ms) ROLLBACK [shard 1743 master]
224198
+  (0.1ms) BEGIN [shard 1742 master]
224199
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224200
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224201
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224202
+  (0.0ms) BEGIN [shard 1744 master]
224203
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224204
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224205
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224206
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224207
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 1743 master]
224208
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224209
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224210
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224211
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224212
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224213
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 1744 master]
224214
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224215
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224216
+ SQL (1.9ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224217
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224218
+ SQL (0.8ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (2895) [shard 1742 master]
224219
+ SQL (0.4ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (15) [shard 1743 master]
224220
+ SQL (0.3ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (14) [shard 1744 master]
224221
+  (0.1ms) ROLLBACK [shard 1744 master]
224222
+  (0.1ms) ROLLBACK [shard 1743 master]
224223
+  (0.0ms) BEGIN [shard 1742 master]
224224
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224225
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224226
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224227
+  (0.1ms) BEGIN [shard 1744 master]
224228
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224229
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224230
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224231
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224232
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 1743 master]
224233
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224234
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224235
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224236
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224237
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224238
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 1744 master]
224239
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224240
+ SQL (0.2ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (16) [shard 1743 master]
224241
+ SQL (0.2ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (15) [shard 1744 master]
224242
+  (0.1ms) ROLLBACK [shard 1744 master]
224243
+  (0.1ms) ROLLBACK [shard 1743 master]
224244
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
224245
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224246
+  (0.1ms) BEGIN [shard 1742 master]
224247
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224248
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
224249
+  (0.3ms) COMMIT [shard 1742 master]
224250
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224251
+  (0.1ms) BEGIN [shard 1742 master]
224252
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
224253
+  (0.3ms) COMMIT [shard 1742 master]
224254
+  (0.1ms) BEGIN [shard 1742 master]
224255
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
224256
+  (0.3ms) COMMIT [shard 1742 master]
224257
+  (0.0ms) BEGIN [shard 1742 master]
224258
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224259
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224260
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224261
+  (0.0ms) BEGIN [shard 1744 master]
224262
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224263
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224264
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224265
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224266
+ SQL (4.0ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2896], ["value", nil]] [shard 1742 master]
224267
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224268
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224269
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224270
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224271
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224272
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17], ["value", nil]] [shard 1743 master]
224273
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224274
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224275
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224276
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224277
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224278
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224279
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 1744 master]
224280
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224281
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224282
+  (0.1ms) ROLLBACK [shard 1744 master]
224283
+  (0.1ms) ROLLBACK [shard 1742 master]
224284
+  (0.1ms) BEGIN [shard 1742 master]
224285
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224286
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224287
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224288
+  (0.1ms) BEGIN [shard 1744 master]
224289
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224290
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224291
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224292
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224293
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2897], ["value", nil]] [shard 1742 master]
224294
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224295
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224296
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224297
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224298
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224299
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 18], ["value", nil]] [shard 1743 master]
224300
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224301
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224302
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224303
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224304
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224305
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224306
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17], ["value", nil]] [shard 1744 master]
224307
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224308
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224309
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
224310
+  (0.1ms) ROLLBACK [shard 1744 master]
224311
+  (0.1ms) ROLLBACK [shard 1742 master]
224312
+  (0.0ms) BEGIN [shard 1742 master]
224313
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224314
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224315
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224316
+  (0.1ms) BEGIN [shard 1744 master]
224317
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224318
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224319
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224320
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224321
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2898], ["value", nil]] [shard 1742 master]
224322
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224323
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224324
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224325
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224326
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224327
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 19], ["value", nil]] [shard 1743 master]
224328
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224329
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224330
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224331
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224332
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224333
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224334
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 18], ["value", nil]] [shard 1744 master]
224335
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224336
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224337
+  (0.1ms) ROLLBACK [shard 1744 master]
224338
+  (0.1ms) ROLLBACK [shard 1742 master]
224339
+  (0.1ms) BEGIN [shard 1742 master]
224340
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224341
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224342
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224343
+  (0.1ms) BEGIN [shard 1744 master]
224344
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224345
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224346
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224347
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224348
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2899], ["value", nil]] [shard 1742 master]
224349
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224350
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224351
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224352
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224353
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224354
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 20], ["value", nil]] [shard 1743 master]
224355
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224356
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224357
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224358
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224359
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224360
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224361
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 19], ["value", nil]] [shard 1744 master]
224362
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224363
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224364
+  (0.1ms) ROLLBACK [shard 1744 master]
224365
+  (0.1ms) ROLLBACK [shard 1742 master]
224366
+  (0.0ms) BEGIN [shard 1742 master]
224367
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224368
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224369
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224370
+  (0.1ms) BEGIN [shard 1744 master]
224371
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224372
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224373
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224374
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224375
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2900], ["value", nil]] [shard 1742 master]
224376
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224377
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224378
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224379
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224380
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224381
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 21], ["value", nil]] [shard 1743 master]
224382
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224383
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224384
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224385
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224386
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224387
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224388
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 20], ["value", nil]] [shard 1744 master]
224389
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224390
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224391
+  (0.1ms) ROLLBACK [shard 1744 master]
224392
+  (0.1ms) ROLLBACK [shard 1742 master]
224393
+  (0.0ms) BEGIN [shard 1742 master]
224394
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224395
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224396
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224397
+  (0.1ms) BEGIN [shard 1744 master]
224398
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224399
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224400
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224401
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224402
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2901], ["value", nil]] [shard 1742 master]
224403
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224404
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224405
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224406
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224407
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224408
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 22], ["value", nil]] [shard 1743 master]
224409
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224410
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224411
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224412
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224413
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224414
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224415
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 21], ["value", nil]] [shard 1744 master]
224416
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224417
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224418
+  (0.1ms) ROLLBACK [shard 1744 master]
224419
+  (0.1ms) ROLLBACK [shard 1742 master]
224420
+  (0.0ms) BEGIN [shard 1742 master]
224421
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224422
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224423
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224424
+  (0.1ms) BEGIN [shard 1744 master]
224425
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224426
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224427
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224428
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224429
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2902], ["value", nil]] [shard 1742 master]
224430
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224431
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224432
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224433
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224434
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224435
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 23], ["value", nil]] [shard 1743 master]
224436
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224437
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224438
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224439
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224440
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224441
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224442
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 22], ["value", nil]] [shard 1744 master]
224443
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224444
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224445
+  (0.1ms) ROLLBACK [shard 1744 master]
224446
+  (0.1ms) ROLLBACK [shard 1742 master]
224447
+  (0.1ms) BEGIN [shard 1742 master]
224448
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224449
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224450
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224451
+  (0.0ms) BEGIN [shard 1744 master]
224452
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224453
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224454
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224455
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224456
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2903], ["value", nil]] [shard 1742 master]
224457
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224458
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224459
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224460
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224461
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224462
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 24], ["value", nil]] [shard 1743 master]
224463
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224464
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224465
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224466
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224467
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224468
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224469
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 23], ["value", nil]] [shard 1744 master]
224470
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224471
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224472
+  (0.1ms) ROLLBACK [shard 1744 master]
224473
+  (0.1ms) ROLLBACK [shard 1742 master]
224474
+  (0.0ms) BEGIN [shard 1742 master]
224475
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224476
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224477
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224478
+  (0.1ms) BEGIN [shard 1744 master]
224479
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224480
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224481
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224482
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224483
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2904], ["value", nil]] [shard 1742 master]
224484
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224485
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224486
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224487
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224488
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224489
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 25], ["value", nil]] [shard 1743 master]
224490
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224491
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224492
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224493
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224494
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224495
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224496
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 24], ["value", nil]] [shard 1744 master]
224497
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224498
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224499
+  (0.1ms) ROLLBACK [shard 1744 master]
224500
+  (0.1ms) ROLLBACK [shard 1742 master]
224501
+  (0.0ms) BEGIN [shard 1742 master]
224502
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224503
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224504
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224505
+  (0.0ms) BEGIN [shard 1744 master]
224506
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224507
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224508
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224509
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224510
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2905], ["value", nil]] [shard 1742 master]
224511
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224512
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224513
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224514
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224515
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224516
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 26], ["value", nil]] [shard 1743 master]
224517
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224518
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224519
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224520
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224521
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224522
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224523
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 25], ["value", nil]] [shard 1744 master]
224524
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224525
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224526
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224527
+ SQL (0.7ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", nil]] [shard 1743 master]
224528
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224529
+  (0.1ms) ROLLBACK [shard 1744 master]
224530
+  (0.1ms) ROLLBACK [shard 1743 master]
224531
+  (0.1ms) BEGIN [shard 1742 master]
224532
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224533
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224534
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224535
+  (0.0ms) BEGIN [shard 1744 master]
224536
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224537
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224538
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224539
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224540
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2906], ["value", nil]] [shard 1742 master]
224541
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224542
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224543
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224544
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224545
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224546
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 27], ["value", nil]] [shard 1743 master]
224547
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224548
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224549
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224550
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224551
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224552
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224553
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 26], ["value", nil]] [shard 1744 master]
224554
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224555
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224556
+  (0.1ms) ROLLBACK [shard 1744 master]
224557
+  (0.1ms) ROLLBACK [shard 1742 master]
224558
+  (0.0ms) BEGIN [shard 1742 master]
224559
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224560
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224561
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224562
+  (0.0ms) BEGIN [shard 1744 master]
224563
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224564
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224565
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224566
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224567
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2907], ["value", nil]] [shard 1742 master]
224568
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224569
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224570
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224571
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224572
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224573
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 28], ["value", nil]] [shard 1743 master]
224574
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224575
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224576
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224577
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224578
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224579
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224580
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 27], ["value", nil]] [shard 1744 master]
224581
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224582
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224583
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224584
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 2907], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224585
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224586
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224587
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 2908], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224588
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224589
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2908]] [shard 1742 master]
224590
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2907 LIMIT 1 [shard 1742 master]
224591
+ User Load (0.4ms) SELECT "users".* FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = 2907 [shard 1742 master]
224592
+  (0.1ms) ROLLBACK [shard 1744 master]
224593
+  (0.2ms) ROLLBACK [shard 1742 master]
224594
+  (0.1ms) BEGIN [shard 1742 master]
224595
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224596
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224597
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224598
+  (0.1ms) BEGIN [shard 1744 master]
224599
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224600
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224601
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224602
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224603
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2910], ["value", nil]] [shard 1742 master]
224604
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224605
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224606
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224607
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224608
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224609
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 29], ["value", nil]] [shard 1743 master]
224610
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224611
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224612
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224613
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224614
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224615
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224616
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 28], ["value", nil]] [shard 1744 master]
224617
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224618
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224619
+  (0.1ms) ROLLBACK [shard 1744 master]
224620
+  (0.1ms) ROLLBACK [shard 1742 master]
224621
+  (0.0ms) BEGIN [shard 1742 master]
224622
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224623
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224624
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224625
+  (0.0ms) BEGIN [shard 1744 master]
224626
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224627
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224628
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224629
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224630
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2911], ["value", nil]] [shard 1742 master]
224631
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224632
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224633
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224634
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224635
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224636
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 30], ["value", nil]] [shard 1743 master]
224637
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224638
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224639
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224640
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224641
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224642
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224643
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 29], ["value", nil]] [shard 1744 master]
224644
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224645
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224646
+  (0.1ms) ROLLBACK [shard 1744 master]
224647
+  (0.1ms) ROLLBACK [shard 1742 master]
224648
+  (0.0ms) BEGIN [shard 1742 master]
224649
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224650
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224651
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224652
+  (0.0ms) BEGIN [shard 1744 master]
224653
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
224655
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224656
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224657
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2912], ["value", nil]] [shard 1742 master]
224658
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224659
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224660
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
224661
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224662
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224663
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 31], ["value", nil]] [shard 1743 master]
224664
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224665
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224666
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
224667
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224668
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224669
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224670
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 30], ["value", nil]] [shard 1744 master]
224671
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224672
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224673
+  (0.1ms) ROLLBACK [shard 1744 master]
224674
+  (0.1ms) ROLLBACK [shard 1742 master]
224675
+  (0.1ms) BEGIN [shard 1742 master]
224676
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224677
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224678
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224679
+  (0.0ms) BEGIN [shard 1744 master]
224680
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224681
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224682
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224683
+  (0.4ms) SAVEPOINT active_record_1 [shard 1742 master]
224684
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 2913], ["value", nil]] [shard 1742 master]
224685
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224686
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224687
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
224688
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224689
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224690
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 32], ["value", nil]] [shard 1743 master]
224691
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224692
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224693
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
224694
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224695
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224696
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
224697
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 31], ["value", nil]] [shard 1744 master]
224698
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
224699
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224700
+  (0.1ms) ROLLBACK [shard 1744 master]
224701
+  (0.1ms) ROLLBACK [shard 1742 master]
224702
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
224703
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224704
+  (0.1ms) BEGIN [shard 1742 master]
224705
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224706
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
224707
+  (0.3ms) COMMIT [shard 1742 master]
224708
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224709
+  (0.1ms) BEGIN [shard 1742 master]
224710
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
224711
+  (0.2ms) COMMIT [shard 1742 master]
224712
+  (0.1ms) BEGIN [shard 1742 master]
224713
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
224714
+  (0.2ms) COMMIT [shard 1742 master]
224715
+  (0.1ms) BEGIN [shard 1742 master]
224716
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224717
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224718
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224719
+  (0.1ms) BEGIN [shard 1744 master]
224720
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
224721
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
224722
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224723
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
224724
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
224725
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
224726
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
224727
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224728
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224729
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1743 master]
224730
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 1742 master]
224731
+  (0.1ms) ROLLBACK [shard 1744 master]
224732
+  (0.1ms) ROLLBACK [shard 1742 master]
224733
+  (0.1ms) BEGIN [shard 1742 master]
224734
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224735
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224736
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224737
+  (0.1ms) BEGIN [shard 1744 master]
224738
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224739
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224740
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224741
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1742 master]
224742
+ SQL (0.2ms) DELETE FROM "users" [shard 1742 master]
224743
+  (0.1ms) ROLLBACK [shard 1744 master]
224744
+  (0.1ms) ROLLBACK [shard 1742 master]
224745
+  (0.0ms) BEGIN [shard 1742 master]
224746
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224747
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224748
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224749
+  (0.0ms) BEGIN [shard 1744 master]
224750
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224751
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224752
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224753
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1742 master]
224754
+ SQL (0.1ms) DELETE FROM "users" [shard 1742 master]
224755
+  (0.1ms) ROLLBACK [shard 1744 master]
224756
+  (0.1ms) ROLLBACK [shard 1742 master]
224757
+  (0.0ms) BEGIN [shard 1742 master]
224758
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224759
+  (0.2ms) COMMIT [shard 1742 master]
224760
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 1742 master]
224761
+ SQL (0.9ms) DELETE FROM "users" [shard 1742 master]
224762
+ SQL (0.2ms) DELETE FROM "users" [shard 1742 master]
224763
+  (0.1ms) BEGIN [shard 1742 master]
224764
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224765
+  (0.2ms) COMMIT [shard 1742 master]
224766
+  (0.1ms) BEGIN [shard 1742 master]
224767
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "a"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224768
+  (0.2ms) COMMIT [shard 1742 master]
224769
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]] [shard 1742 master]
224770
+ CACHE (0.0ms) 1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]]
224771
+ CACHE (0.0ms) 1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]]
224772
+  (0.1ms) BEGIN [shard 1742 master]
224773
+  (0.3ms) UPDATE "users" SET "name" = 'b', "updated_at" = '2015-03-10 19:18:07.064654' WHERE "users"."id" = 2919 [shard 1742 master]
224774
+  (0.3ms) COMMIT [shard 1742 master]
224775
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]] [shard 1742 master]
224776
+ CACHE (0.0ms) 1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]]
224777
+ SQL (0.4ms) DELETE FROM "users" [shard 1742 master]
224778
+  (0.1ms) BEGIN [shard 1742 master]
224779
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224780
+  (0.3ms) COMMIT [shard 1742 master]
224781
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1742 master]
224782
+ SQL (0.3ms) DELETE FROM "users" [shard 1742 master]
224783
+ SQL (0.1ms) DELETE FROM "users" [shard 1742 master]
224784
+  (0.1ms) BEGIN [shard 1742 master]
224785
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224786
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224787
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224788
+  (0.1ms) BEGIN [shard 1744 master]
224789
+  (0.1ms) ROLLBACK [shard 1744 master]
224790
+  (0.1ms) ROLLBACK [shard 1742 master]
224791
+  (0.0ms) BEGIN [shard 1742 master]
224792
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224793
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224794
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224795
+  (0.0ms) BEGIN [shard 1744 master]
224796
+  (0.0ms) ROLLBACK [shard 1744 master]
224797
+  (0.0ms) ROLLBACK [shard 1742 master]
224798
+  (0.0ms) BEGIN [shard 1742 master]
224799
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224800
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224801
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224802
+  (0.0ms) BEGIN [shard 1744 master]
224803
+  (0.1ms) ROLLBACK [shard 1744 master]
224804
+  (0.1ms) ROLLBACK [shard 1742 master]
224805
+  (0.0ms) BEGIN [shard 1742 master]
224806
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224807
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224808
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224809
+  (0.0ms) BEGIN [shard 1744 master]
224810
+  (0.1ms) ROLLBACK [shard 1744 master]
224811
+  (0.1ms) ROLLBACK [shard 1742 master]
224812
+  (0.1ms) BEGIN [shard 1742 master]
224813
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224814
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224815
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224816
+  (0.0ms) BEGIN [shard 1744 master]
224817
+  (0.1ms) ROLLBACK [shard 1744 master]
224818
+  (0.1ms) ROLLBACK [shard 1742 master]
224819
+  (0.0ms) BEGIN [shard 1742 master]
224820
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224821
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224822
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224823
+  (0.1ms) BEGIN [shard 1744 master]
224824
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 1742 master]
224825
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224826
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224827
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224828
+  (0.1ms) ROLLBACK [shard 1744 master]
224829
+  (0.1ms) ROLLBACK [shard 1742 master]
224830
+  (0.0ms) BEGIN [shard 1742 master]
224831
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224832
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224833
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224834
+  (0.0ms) BEGIN [shard 1744 master]
224835
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1742 master]
224836
+  (0.1ms) BEGIN [shard 1742 master]
224837
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224838
+  (0.2ms) COMMIT [shard 1742 master]
224839
+  (0.1ms) ROLLBACK [shard 1744 master]
224840
+  (0.1ms) ROLLBACK [shard 1742 master]
224841
+  (0.0ms) BEGIN [shard 1742 master]
224842
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224843
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224844
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224845
+  (0.1ms) BEGIN [shard 1744 master]
224846
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 1742 master]
224847
+  (0.0ms) BEGIN [shard 1742 master]
224848
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224849
+  (0.3ms) COMMIT [shard 1742 master]
224850
+  (0.1ms) ROLLBACK [shard 1744 master]
224851
+  (0.1ms) ROLLBACK [shard 1742 master]
224852
+  (0.0ms) BEGIN [shard 1742 master]
224853
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224854
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224855
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224856
+  (0.0ms) BEGIN [shard 1744 master]
224857
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1742 master]
224858
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224859
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224860
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224861
+  (0.1ms) ROLLBACK [shard 1744 master]
224862
+  (0.1ms) ROLLBACK [shard 1742 master]
224863
+  (0.0ms) BEGIN [shard 1742 master]
224864
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224865
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224866
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224867
+  (0.0ms) BEGIN [shard 1744 master]
224868
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 1742 master]
224869
+  (0.0ms) ROLLBACK [shard 1744 master]
224870
+  (0.1ms) ROLLBACK [shard 1742 master]
224871
+  (0.0ms) BEGIN [shard 1742 master]
224872
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224873
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224874
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224875
+  (0.0ms) BEGIN [shard 1744 master]
224876
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 1742 master]
224877
+  (0.1ms) ROLLBACK [shard 1744 master]
224878
+  (0.1ms) ROLLBACK [shard 1742 master]
224879
+  (0.1ms) BEGIN [shard 1742 master]
224880
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224881
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224882
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224883
+  (0.1ms) BEGIN [shard 1744 master]
224884
+ User Load (0.2ms) SELECT "users".* FROM "users" FOR UPDATE [shard 1742 master]
224885
+  (0.1ms) ROLLBACK [shard 1744 master]
224886
+  (0.1ms) ROLLBACK [shard 1742 master]
224887
+  (0.1ms) BEGIN [shard 1742 master]
224888
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224889
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224890
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224891
+  (0.0ms) BEGIN [shard 1744 master]
224892
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 1742 master]
224893
+  (0.1ms) ROLLBACK [shard 1744 master]
224894
+  (0.1ms) ROLLBACK [shard 1742 master]
224895
+  (0.1ms) BEGIN [shard 1742 master]
224896
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224897
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224898
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224899
+  (0.0ms) BEGIN [shard 1744 master]
224900
+  (0.1ms) ROLLBACK [shard 1744 master]
224901
+  (0.1ms) ROLLBACK [shard 1742 master]
224902
+  (0.1ms) BEGIN [shard 1742 master]
224903
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224904
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224905
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224906
+  (0.0ms) BEGIN [shard 1744 master]
224907
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224908
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224909
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224910
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 1742 master]
224911
+ SQL (0.1ms) UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.134578' [shard 1742 master]
224912
+  (0.1ms) ROLLBACK [shard 1744 master]
224913
+  (0.1ms) ROLLBACK [shard 1742 master]
224914
+  (0.1ms) BEGIN [shard 1742 master]
224915
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224916
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224917
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224918
+  (0.0ms) BEGIN [shard 1744 master]
224919
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
224920
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224921
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
224922
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 1742 master]
224923
+ SQL (0.1ms) UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.141045' [shard 1742 master]
224924
+  (0.1ms) ROLLBACK [shard 1744 master]
224925
+  (0.1ms) ROLLBACK [shard 1742 master]
224926
+  (0.0ms) BEGIN [shard 1742 master]
224927
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224928
+  (0.4ms) COMMIT [shard 1742 master]
224929
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1742 master]
224930
+ SQL (0.4ms) UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.144989' [shard 1742 master]
224931
+ SQL (0.2ms) DELETE FROM "users" [shard 1742 master]
224932
+  (0.0ms) BEGIN [shard 1742 master]
224933
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
224934
+  (0.3ms) COMMIT [shard 1742 master]
224935
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1742 master]
224936
+ SQL (0.3ms) UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.149163' [shard 1742 master]
224937
+ SQL (0.2ms) DELETE FROM "users" [shard 1742 master]
224938
+  (0.0ms) BEGIN [shard 1742 master]
224939
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224940
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224941
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224942
+  (0.0ms) BEGIN [shard 1744 master]
224943
+  (0.1ms) ROLLBACK [shard 1744 master]
224944
+  (0.1ms) ROLLBACK [shard 1742 master]
224945
+  (0.0ms) BEGIN [shard 1742 master]
224946
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224947
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224948
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224949
+  (0.0ms) BEGIN [shard 1744 master]
224950
+  (0.1ms) ROLLBACK [shard 1744 master]
224951
+  (0.1ms) ROLLBACK [shard 1742 master]
224952
+  (0.0ms) BEGIN [shard 1742 master]
224953
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224954
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224955
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224956
+  (0.0ms) BEGIN [shard 1744 master]
224957
+  (0.0ms) ROLLBACK [shard 1744 master]
224958
+  (0.0ms) ROLLBACK [shard 1742 master]
224959
+  (0.0ms) BEGIN [shard 1742 master]
224960
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224961
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224962
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224963
+  (0.0ms) BEGIN [shard 1744 master]
224964
+  (0.0ms) ROLLBACK [shard 1744 master]
224965
+  (0.0ms) ROLLBACK [shard 1742 master]
224966
+  (0.0ms) BEGIN [shard 1742 master]
224967
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224968
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224969
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224970
+  (0.1ms) BEGIN [shard 1744 master]
224971
+  (0.1ms) ROLLBACK [shard 1744 master]
224972
+  (0.1ms) ROLLBACK [shard 1742 master]
224973
+  (0.1ms) BEGIN [shard 1742 master]
224974
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224975
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
224976
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
224977
+  (0.1ms) BEGIN [shard 1744 master]
224978
+  (0.1ms) ROLLBACK [shard 1744 master]
224979
+  (0.1ms) ROLLBACK [shard 1742 master]
224980
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
224981
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224982
+  (0.1ms) BEGIN [shard 1742 master]
224983
+  (0.1ms) ROLLBACK [shard 1742 master]
224984
+  (0.0ms) BEGIN [shard 1742 master]
224985
+  (0.0ms) ROLLBACK [shard 1742 master]
224986
+  (0.1ms) BEGIN [shard 1742 master]
224987
+  (0.1ms) ROLLBACK [shard 1742 master]
224988
+  (0.1ms) BEGIN [shard 1742 master]
224989
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224990
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
224991
+  (0.2ms) COMMIT [shard 1742 master]
224992
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
224993
+  (0.1ms) BEGIN [shard 1742 master]
224994
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
224995
+  (0.2ms) COMMIT [shard 1742 master]
224996
+  (0.0ms) BEGIN [shard 1742 master]
224997
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
224998
+  (0.2ms) COMMIT [shard 1742 master]
224999
+  (0.1ms) BEGIN [shard 1742 master]
225000
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225001
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225002
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225003
+  (0.0ms) BEGIN [shard 1744 master]
225004
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '2' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
225005
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225006
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "2"], ["default", false], ["name", "public"]] [shard 1742 master]
225007
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225008
+  (0.7ms) CREATE SCHEMA switchman_test_shard_1745 [shard 1745 deploy]
225009
+  (0.1ms) BEGIN [shard 1745 deploy]
225010
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1745 deploy]
225011
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1745 deploy]
225012
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 1745 deploy]
225013
+ Migrating to CreateUsers (20130403132607)
225014
+  (3.5ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225015
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1745 deploy]
225016
+ Migrating to CreateAppendages (20130411202442)
225017
+  (3.3ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225018
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1745 deploy]
225019
+ Migrating to CreateMirrorUsers (20130411202551)
225020
+  (2.1ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225021
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1745 deploy]
225022
+ Migrating to CreateDigits (20131022202028)
225023
+  (1.8ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225024
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1745 deploy]
225025
+ Migrating to CreateFeatures (20131206172923)
225026
+  (2.1ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225027
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1745 deploy]
225028
+ Migrating to AddParentIdToUsers (20140123154135)
225029
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1745 deploy]
225030
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1745 deploy]
225031
+ Migrating to CreateRoots (20140219183820)
225032
+  (1.8ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
225033
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1745 deploy]
225034
+  (0.9ms) COMMIT [shard 1745 deploy]
225035
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225036
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1745' WHERE "switchman_shards"."id" = 1745 [shard 1742 master]
225037
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225038
+  (0.1ms) BEGIN [shard 1745 master]
225039
+ SQL (6.6ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1745 master]
225040
+  (11.2ms) COMMIT [shard 1745 master]
225041
+  (8.3ms) DROP SCHEMA switchman_test_shard_1745 CASCADE [shard 1745 deploy]
225042
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225043
+ SQL (0.4ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1745]] [shard 1742 master]
225044
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225045
+  (0.1ms) ROLLBACK [shard 1744 master]
225046
+  (0.1ms) ROLLBACK [shard 1742 master]
225047
+  (0.0ms) BEGIN [shard 1742 master]
225048
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225049
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225050
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225051
+  (0.1ms) BEGIN [shard 1744 master]
225052
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" IS NULL AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
225053
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225054
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 1742 master]
225055
+  (0.1ms) ROLLBACK [shard 1744 master]
225056
+  (0.1ms) ROLLBACK [shard 1742 master]
225057
+  (0.1ms) BEGIN [shard 1742 master]
225058
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225059
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225060
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225061
+  (0.0ms) BEGIN [shard 1744 master]
225062
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '3' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
225063
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225064
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "3"], ["default", false], ["name", nil]] [shard 1742 master]
225065
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225066
+  (0.1ms) select sqlite_version(*) [shard 1746 deploy]
225067
+  (0.0ms) begin transaction [shard 1746 deploy]
225068
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [shard 1746 deploy]
225069
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1746 deploy]
225070
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 1746 deploy]
225071
+ Migrating to CreateUsers (20130403132607)
225072
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "mirror_user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225073
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1746 deploy]
225074
+ Migrating to CreateAppendages (20130411202442)
225075
+  (0.1ms) CREATE TABLE "appendages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225076
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1746 deploy]
225077
+ Migrating to CreateMirrorUsers (20130411202551)
225078
+  (0.1ms) CREATE TABLE "mirror_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225079
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1746 deploy]
225080
+ Migrating to CreateDigits (20131022202028)
225081
+  (0.1ms) CREATE TABLE "digits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "appendage_id" integer(8), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225082
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1746 deploy]
225083
+ Migrating to CreateFeatures (20131206172923)
225084
+  (0.3ms) CREATE TABLE "features" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer(8), "owner_type" varchar(255), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225085
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1746 deploy]
225086
+ Migrating to AddParentIdToUsers (20140123154135)
225087
+  (0.2ms) ALTER TABLE "users" ADD "parent_id" integer(8) [shard 1746 deploy]
225088
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1746 deploy]
225089
+ Migrating to CreateRoots (20140219183820)
225090
+  (0.1ms) CREATE TABLE "roots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  [shard 1746 deploy]
225091
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1746 deploy]
225092
+  (0.9ms) commit transaction [shard 1746 deploy]
225093
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225094
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'db/shard_1746.sqlite3' WHERE "switchman_shards"."id" = 1746 [shard 1742 master]
225095
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225096
+  (0.1ms) begin transaction [shard 1746 master]
225097
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1746 master]
225098
+  (0.6ms) commit transaction [shard 1746 master]
225099
+ Drop failed: No such file or directory @ unlink_internal - db/shard_1746.sqlite3
225100
+  (0.2ms) SAVEPOINT active_record_1 [shard 1742 master]
225101
+ SQL (0.4ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1746]] [shard 1742 master]
225102
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225103
+  (0.2ms) ROLLBACK [shard 1744 master]
225104
+  (0.1ms) ROLLBACK [shard 1742 master]
225105
+  (0.1ms) BEGIN [shard 1742 master]
225106
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225107
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225108
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225109
+  (0.0ms) BEGIN [shard 1744 master]
225110
+ Switchman::Shard Load (0.3ms) SELECT "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 id LIMIT 1 [shard 1742 master]
225111
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225112
+ SQL (0.4ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["default", false], ["name", "public"]] [shard 1742 master]
225113
+  (0.2ms) CREATE SCHEMA switchman_test_shard_1747 [shard 1747 deploy]
225114
+  (0.1ms) SAVEPOINT active_record_2 [shard 1747 deploy]
225115
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1747 deploy]
225116
+  (7.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1747 deploy]
225117
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 1747 deploy]
225118
+ Migrating to CreateUsers (20130403132607)
225119
+  (3.3ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225120
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1747 deploy]
225121
+ Migrating to CreateAppendages (20130411202442)
225122
+  (1.7ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225123
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1747 deploy]
225124
+ Migrating to CreateMirrorUsers (20130411202551)
225125
+  (1.7ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225126
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1747 deploy]
225127
+ Migrating to CreateDigits (20131022202028)
225128
+  (2.0ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225129
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1747 deploy]
225130
+ Migrating to CreateFeatures (20131206172923)
225131
+  (2.1ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225132
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1747 deploy]
225133
+ Migrating to AddParentIdToUsers (20140123154135)
225134
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1747 deploy]
225135
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1747 deploy]
225136
+ Migrating to CreateRoots (20140219183820)
225137
+  (3.8ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
225138
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1747 deploy]
225139
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 1747 deploy]
225140
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1747' WHERE "switchman_shards"."id" = 1747 [shard 1742 master]
225141
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225142
+  (0.1ms) SAVEPOINT active_record_1 [shard 1747 master]
225143
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1747 master]
225144
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1747 master]
225145
+  (2.9ms) DROP SCHEMA switchman_test_shard_1747 CASCADE [shard 1747 deploy]
225146
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225147
+ SQL (0.3ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1747]] [shard 1742 master]
225148
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225149
+  (0.1ms) ROLLBACK [shard 1744 master]
225150
+  (2.2ms) ROLLBACK [shard 1742 master]
225151
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
225152
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225153
+  (0.1ms) BEGIN [shard 1742 master]
225154
+  (0.1ms) ROLLBACK [shard 1742 master]
225155
+  (0.1ms) BEGIN [shard 1742 master]
225156
+  (0.1ms) ROLLBACK [shard 1742 master]
225157
+  (0.0ms) BEGIN [shard 1742 master]
225158
+  (0.2ms) ROLLBACK [shard 1742 master]
225159
+  (0.1ms) BEGIN [shard 1742 master]
225160
+  (0.1ms) ROLLBACK [shard 1742 master]
225161
+  (0.0ms) BEGIN [shard 1742 master]
225162
+  (0.0ms) ROLLBACK [shard 1742 master]
225163
+  (0.0ms) BEGIN [shard 1742 master]
225164
+  (0.0ms) ROLLBACK [shard 1742 master]
225165
+  (0.1ms) BEGIN [shard 1742 master]
225166
+  (0.0ms) ROLLBACK [shard 1742 master]
225167
+  (0.1ms) BEGIN [shard 1742 master]
225168
+  (0.1ms) ROLLBACK [shard 1742 master]
225169
+  (0.1ms) BEGIN [shard 1742 master]
225170
+  (0.1ms) ROLLBACK [shard 1742 master]
225171
+  (0.1ms) BEGIN [shard 1742 master]
225172
+  (0.1ms) ROLLBACK [shard 1742 master]
225173
+  (0.1ms) BEGIN [shard 1742 master]
225174
+  (0.2ms) ROLLBACK [shard 1742 master]
225175
+  (0.1ms) BEGIN [shard 1742 master]
225176
+  (0.1ms) ROLLBACK [shard 1742 master]
225177
+  (0.1ms) BEGIN [shard 1742 master]
225178
+ Switchman::Shard Exists (0.3ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225179
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225180
+  (6.1ms) COMMIT [shard 1742 master]
225181
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225182
+  (0.1ms) BEGIN [shard 1742 master]
225183
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225184
+  (10.8ms) COMMIT [shard 1742 master]
225185
+  (0.1ms) BEGIN [shard 1742 master]
225186
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225187
+  (0.4ms) COMMIT [shard 1742 master]
225188
+  (0.1ms) BEGIN [shard 1742 master]
225189
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225190
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225191
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225192
+  (0.1ms) BEGIN [shard 1744 master]
225193
+  (0.1ms) ROLLBACK [shard 1744 master]
225194
+  (0.1ms) ROLLBACK [shard 1742 master]
225195
+  (0.0ms) BEGIN [shard 1742 master]
225196
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225197
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225198
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225199
+  (0.0ms) BEGIN [shard 1744 master]
225200
+  (0.1ms) ROLLBACK [shard 1744 master]
225201
+  (0.1ms) ROLLBACK [shard 1742 master]
225202
+  (0.1ms) BEGIN [shard 1742 master]
225203
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225204
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225205
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225206
+  (0.0ms) BEGIN [shard 1744 master]
225207
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225208
+ SQL (2.3ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", nil]] [shard 1742 master]
225209
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225210
+ MirrorUser Load (0.2ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 67]] [shard 1742 master]
225211
+ MirrorUser Load (0.1ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 67]] [shard 1742 master]
225212
+ MirrorUser Load (0.2ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = 67 LIMIT 1 [shard 1743 master]
225213
+  (0.1ms) ROLLBACK [shard 1744 master]
225214
+  (0.1ms) ROLLBACK [shard 1743 master]
225215
+  (0.0ms) BEGIN [shard 1742 master]
225216
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225217
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225218
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225219
+  (0.0ms) BEGIN [shard 1744 master]
225220
+  (0.0ms) ROLLBACK [shard 1744 master]
225221
+  (0.0ms) ROLLBACK [shard 1742 master]
225222
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
225223
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225224
+  (0.1ms) BEGIN [shard 1742 master]
225225
+ Switchman::Shard Exists (0.3ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225226
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225227
+  (5.8ms) COMMIT [shard 1742 master]
225228
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225229
+  (0.1ms) BEGIN [shard 1742 master]
225230
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225231
+  (6.1ms) COMMIT [shard 1742 master]
225232
+  (0.1ms) BEGIN [shard 1742 master]
225233
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225234
+  (30.8ms) COMMIT [shard 1742 master]
225235
+  (0.1ms) BEGIN [shard 1742 master]
225236
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225237
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225238
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225239
+  (0.1ms) BEGIN [shard 1744 master]
225240
+  (0.1ms) ROLLBACK [shard 1744 master]
225241
+  (0.1ms) ROLLBACK [shard 1742 master]
225242
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
225243
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225244
+  (0.1ms) BEGIN [shard 1742 master]
225245
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225246
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225247
+  (0.3ms) COMMIT [shard 1742 master]
225248
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225249
+  (0.1ms) BEGIN [shard 1742 master]
225250
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225251
+  (0.2ms) COMMIT [shard 1742 master]
225252
+  (0.0ms) BEGIN [shard 1742 master]
225253
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225254
+  (0.2ms) COMMIT [shard 1742 master]
225255
+  (0.0ms) BEGIN [shard 1744 master]
225256
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
225257
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
225258
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
225259
+  (0.1ms) BEGIN [shard 1742 master]
225260
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225261
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225262
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225263
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
225264
+  (0.3ms) SELECT COUNT(*) FROM "users"  [shard 1744 master]
225265
+  (0.1ms) SAVEPOINT active_record_2 [shard 1744 master]
225266
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
225267
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 1744 master]
225268
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 1744 master]
225269
+  (0.1ms) ROLLBACK [shard 1742 master]
225270
+  (0.2ms) SELECT COUNT(*) FROM "users"  [shard 1744 master]
225271
+  (0.1ms) ROLLBACK [shard 1744 master]
225272
+ SQL (6.1ms) DELETE FROM "switchman_shards" [shard 1742 master]
225273
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225274
+  (0.1ms) BEGIN [shard 1742 master]
225275
+  (0.1ms) ROLLBACK [shard 1742 master]
225276
+  (0.1ms) BEGIN [shard 1742 master]
225277
+  (0.0ms) ROLLBACK [shard 1742 master]
225278
+  (0.0ms) BEGIN [shard 1742 master]
225279
+  (0.2ms) SELECT COUNT(*) FROM "switchman_shards" [shard 1742 master]
225280
+  (0.1ms) ROLLBACK [shard 1742 master]
225281
+  (0.0ms) BEGIN [shard 1742 master]
225282
+  (0.1ms) ROLLBACK [shard 1742 master]
225283
+  (0.1ms) BEGIN [shard 1742 master]
225284
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225285
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "9"], ["default", false], ["name", nil]] [shard 1742 master]
225286
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225287
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225288
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "9"], ["default", false], ["name", nil]] [shard 1742 master]
225289
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225290
+  (0.1ms) ROLLBACK [shard 1742 master]
225291
+  (0.0ms) BEGIN [shard 1742 master]
225292
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225293
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225294
+  (6.1ms) COMMIT [shard 1742 master]
225295
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225296
+  (0.1ms) BEGIN [shard 1742 master]
225297
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225298
+  (0.3ms) COMMIT [shard 1742 master]
225299
+  (0.1ms) BEGIN [shard 1742 master]
225300
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225301
+  (0.2ms) COMMIT [shard 1742 master]
225302
+  (0.0ms) BEGIN [shard 1742 master]
225303
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225304
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225305
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225306
+  (0.0ms) BEGIN [shard 1744 master]
225307
+  (0.2ms) SAVEPOINT active_record_1 [shard 1742 master]
225308
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
225309
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225310
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
225311
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
225312
+  (0.1ms) ROLLBACK [shard 1744 master]
225313
+  (0.1ms) ROLLBACK [shard 1742 master]
225314
+  (0.1ms) BEGIN [shard 1742 master]
225315
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225316
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225317
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225318
+  (0.0ms) BEGIN [shard 1744 master]
225319
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225320
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225321
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225322
+  (0.2ms) SAVEPOINT active_record_1 [shard 1742 master]
225323
+ SQL (23.1ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["owner_id", 2929], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["value", nil]] [shard 1742 master]
225324
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225325
+ Feature Load (0.2ms) SELECT owner_id FROM "features" WHERE "features"."id" = 137 LIMIT 1 [shard 1742 master]
225326
+  (0.1ms) ROLLBACK [shard 1744 master]
225327
+  (0.1ms) ROLLBACK [shard 1742 master]
225328
+  (0.1ms) BEGIN [shard 1742 master]
225329
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225330
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225331
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225332
+  (0.0ms) BEGIN [shard 1744 master]
225333
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225334
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225335
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225336
+  (0.1ms) ROLLBACK [shard 1744 master]
225337
+  (0.1ms) ROLLBACK [shard 1742 master]
225338
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
225339
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225340
+  (0.0ms) BEGIN [shard 1742 master]
225341
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225342
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225343
+  (0.2ms) COMMIT [shard 1742 master]
225344
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225345
+  (0.1ms) BEGIN [shard 1742 master]
225346
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225347
+  (0.2ms) COMMIT [shard 1742 master]
225348
+  (0.1ms) BEGIN [shard 1742 master]
225349
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225350
+  (0.2ms) COMMIT [shard 1742 master]
225351
+  (0.0ms) BEGIN [shard 1742 master]
225352
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225353
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225354
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225355
+  (0.0ms) BEGIN [shard 1744 master]
225356
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225357
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225358
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225359
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225360
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
225361
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225362
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
225363
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (2931) [shard 1742 master]
225364
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (35) [shard 1743 master]
225365
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2931]] [shard 1742 master]
225366
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 35]] [shard 1743 master]
225367
+  (0.1ms) ROLLBACK [shard 1744 master]
225368
+  (0.1ms) ROLLBACK [shard 1743 master]
225369
+  (0.1ms) BEGIN [shard 1742 master]
225370
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225371
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225372
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225373
+  (0.0ms) BEGIN [shard 1744 master]
225374
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225375
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225376
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225377
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225378
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
225379
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225380
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" = 36 [shard 1743 master]
225381
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2932]] [shard 1742 master]
225382
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 36]] [shard 1743 master]
225383
+  (0.1ms) ROLLBACK [shard 1744 master]
225384
+  (0.1ms) ROLLBACK [shard 1743 master]
225385
+  (0.0ms) BEGIN [shard 1742 master]
225386
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225387
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225388
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225389
+  (0.1ms) BEGIN [shard 1744 master]
225390
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225391
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225392
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225393
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225394
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
225395
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225396
+  (0.1ms) ROLLBACK [shard 1744 master]
225397
+  (0.1ms) ROLLBACK [shard 1743 master]
225398
+  (0.0ms) BEGIN [shard 1742 master]
225399
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225400
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225401
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225402
+  (0.0ms) BEGIN [shard 1744 master]
225403
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225404
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225405
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225406
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
225407
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
225408
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225409
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (2934) [shard 1742 master]
225410
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (38) [shard 1743 master]
225411
+  (0.1ms) ROLLBACK [shard 1744 master]
225412
+  (0.1ms) ROLLBACK [shard 1743 master]
225413
+  (0.1ms) BEGIN [shard 1742 master]
225414
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225415
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225416
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225417
+  (0.1ms) BEGIN [shard 1744 master]
225418
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225419
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
225420
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225421
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
225422
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
225423
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225424
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 39 LIMIT 1 [shard 1743 master]
225425
+  (0.1ms) ROLLBACK [shard 1744 master]
225426
+  (0.1ms) ROLLBACK [shard 1743 master]
225427
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
225428
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225429
+  (0.1ms) BEGIN [shard 1742 master]
225430
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225431
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "10"], ["default", false], ["name", "non_existent_shard"]] [shard 1742 master]
225432
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225433
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225434
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "10"], ["default", false], ["name", nil]] [shard 1742 master]
225435
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225436
+  (0.6ms) SELECT COUNT(*) FROM "users"  [shard 1750 master]
225437
+ PG::UndefinedTable: ERROR: relation "users" does not exist
225438
+ LINE 1: SELECT COUNT(*) FROM "users"
225439
+ ^
225440
+ : SELECT COUNT(*) FROM "users"
225441
+  (0.9ms) SELECT COUNT(*) FROM "users" [shard 1751 master]
225442
+  (0.1ms) ROLLBACK [shard 1742 master]
225443
+  (0.1ms) BEGIN [shard 1742 master]
225444
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225445
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "11"], ["default", false], ["name", nil]] [shard 1742 master]
225446
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225447
+  (0.1ms) ROLLBACK [shard 1742 master]
225448
+  (0.1ms) BEGIN [shard 1742 master]
225449
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225450
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "12"], ["default", false], ["name", nil]] [shard 1742 master]
225451
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225452
+  (0.1ms) ROLLBACK [shard 1742 master]
225453
+  (0.1ms) BEGIN [shard 1742 master]
225454
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225455
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "13"], ["default", false], ["name", nil]] [shard 1742 master]
225456
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225457
+  (0.1ms) ROLLBACK [shard 1742 master]
225458
+  (0.1ms) BEGIN [shard 1742 master]
225459
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225460
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "14"], ["default", false], ["name", nil]] [shard 1742 master]
225461
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225462
+  (0.1ms) ROLLBACK [shard 1742 master]
225463
+  (0.1ms) BEGIN [shard 1742 master]
225464
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225465
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "15"], ["default", false], ["name", nil]] [shard 1742 master]
225466
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225467
+  (0.1ms) ROLLBACK [shard 1742 master]
225468
+  (0.1ms) BEGIN [shard 1742 master]
225469
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225470
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "16"], ["default", false], ["name", nil]] [shard 1742 master]
225471
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225472
+  (0.1ms) ROLLBACK [shard 1742 master]
225473
+  (0.1ms) BEGIN [shard 1742 master]
225474
+ Switchman::Shard Exists (0.3ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225475
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225476
+  (0.3ms) COMMIT [shard 1742 master]
225477
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225478
+  (0.1ms) BEGIN [shard 1742 master]
225479
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225480
+  (0.4ms) COMMIT [shard 1742 master]
225481
+  (0.1ms) BEGIN [shard 1742 master]
225482
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225483
+  (0.4ms) COMMIT [shard 1742 master]
225484
+  (0.1ms) BEGIN [shard 1742 master]
225485
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225486
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225487
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225488
+  (0.0ms) BEGIN [shard 1744 master]
225489
+  (0.0ms) ROLLBACK [shard 1744 master]
225490
+  (0.1ms) ROLLBACK [shard 1742 master]
225491
+  (0.0ms) BEGIN [shard 1742 master]
225492
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225493
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225494
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225495
+  (0.0ms) BEGIN [shard 1744 master]
225496
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
225497
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
225498
+  (0.1ms) ROLLBACK [shard 1744 master]
225499
+  (0.1ms) ROLLBACK [shard 1742 master]
225500
+  (0.0ms) BEGIN [shard 1742 master]
225501
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225502
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225503
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225504
+  (0.1ms) BEGIN [shard 1744 master]
225505
+  (0.1ms) ROLLBACK [shard 1744 master]
225506
+  (0.1ms) ROLLBACK [shard 1742 master]
225507
+  (0.1ms) BEGIN [shard 1742 master]
225508
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225509
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225510
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225511
+  (0.1ms) BEGIN [shard 1744 master]
225512
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 11744 LIMIT 1 [shard 1742 master]
225513
+  (0.2ms) ROLLBACK [shard 1744 master]
225514
+  (0.1ms) ROLLBACK [shard 1742 master]
225515
+  (0.0ms) BEGIN [shard 1742 master]
225516
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225517
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225518
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225519
+  (0.1ms) BEGIN [shard 1744 master]
225520
+  (0.1ms) ROLLBACK [shard 1744 master]
225521
+  (0.1ms) ROLLBACK [shard 1742 master]
225522
+  (0.1ms) BEGIN [shard 1742 master]
225523
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225524
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225525
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225526
+  (0.1ms) BEGIN [shard 1744 master]
225527
+  (0.1ms) ROLLBACK [shard 1744 master]
225528
+  (0.1ms) ROLLBACK [shard 1742 master]
225529
+  (0.1ms) BEGIN [shard 1742 master]
225530
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225531
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225532
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225533
+  (0.1ms) BEGIN [shard 1744 master]
225534
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '17' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
225535
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225536
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "17"], ["default", false], ["name", "public"]] [shard 1742 master]
225537
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225538
+  (2.0ms) CREATE SCHEMA switchman_test_shard_1758 [shard 1758 deploy]
225539
+  (0.1ms) BEGIN [shard 1758 deploy]
225540
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1758 deploy]
225541
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1758 deploy]
225542
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 1758 deploy]
225543
+ Migrating to CreateUsers (20130403132607)
225544
+  (4.1ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225545
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1758 deploy]
225546
+ Migrating to CreateAppendages (20130411202442)
225547
+  (2.1ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225548
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1758 deploy]
225549
+ Migrating to CreateMirrorUsers (20130411202551)
225550
+  (4.6ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225551
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1758 deploy]
225552
+ Migrating to CreateDigits (20131022202028)
225553
+  (2.4ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225554
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1758 deploy]
225555
+ Migrating to CreateFeatures (20131206172923)
225556
+  (1.6ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225557
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1758 deploy]
225558
+ Migrating to AddParentIdToUsers (20140123154135)
225559
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1758 deploy]
225560
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1758 deploy]
225561
+ Migrating to CreateRoots (20140219183820)
225562
+  (2.5ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
225563
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1758 deploy]
225564
+  (0.6ms) COMMIT [shard 1758 deploy]
225565
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225566
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1758' WHERE "switchman_shards"."id" = 1758 [shard 1742 master]
225567
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225568
+  (0.1ms) BEGIN [shard 1758 master]
225569
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1758 master]
225570
+  (0.3ms) COMMIT [shard 1758 master]
225571
+  (0.2ms) SELECT COUNT(*) FROM "users"  [shard 1758 master]
225572
+  (4.8ms) DROP SCHEMA switchman_test_shard_1758 CASCADE [shard 1758 deploy]
225573
+  (0.3ms) SELECT COUNT(*) FROM "users"  [shard 1758 master]
225574
+ PG::UndefinedTable: ERROR: relation "users" does not exist
225575
+ LINE 1: SELECT COUNT(*) FROM "users"
225576
+ ^
225577
+ : SELECT COUNT(*) FROM "users"
225578
+  (0.1ms) ROLLBACK [shard 1744 master]
225579
+  (0.1ms) ROLLBACK [shard 1742 master]
225580
+  (0.1ms) BEGIN [shard 1742 master]
225581
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225582
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225583
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225584
+  (0.1ms) BEGIN [shard 1744 master]
225585
+  (0.1ms) ROLLBACK [shard 1744 master]
225586
+  (0.1ms) ROLLBACK [shard 1742 master]
225587
+  (0.1ms) BEGIN [shard 1742 master]
225588
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225589
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225590
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225591
+  (0.1ms) BEGIN [shard 1744 master]
225592
+ Switchman::Shard Load (0.8ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225593
+  (0.1ms) ROLLBACK [shard 1744 master]
225594
+  (0.1ms) ROLLBACK [shard 1742 master]
225595
+  (0.0ms) BEGIN [shard 1742 master]
225596
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225597
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225598
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225599
+  (0.0ms) BEGIN [shard 1744 master]
225600
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225601
+  (0.1ms) ROLLBACK [shard 1744 master]
225602
+  (0.1ms) ROLLBACK [shard 1742 master]
225603
+  (0.0ms) BEGIN [shard 1742 master]
225604
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225605
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225606
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225607
+  (0.0ms) BEGIN [shard 1744 master]
225608
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225609
+  (0.0ms) ROLLBACK [shard 1744 master]
225610
+  (0.1ms) ROLLBACK [shard 1742 master]
225611
+  (0.1ms) BEGIN [shard 1742 master]
225612
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225613
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225614
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225615
+  (0.0ms) BEGIN [shard 1744 master]
225616
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225617
+  (0.1ms) ROLLBACK [shard 1744 master]
225618
+  (0.0ms) ROLLBACK [shard 1742 master]
225619
+  (0.1ms) BEGIN [shard 1742 master]
225620
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225621
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225622
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225623
+  (0.0ms) BEGIN [shard 1744 master]
225624
+  (0.1ms) ROLLBACK [shard 1744 master]
225625
+  (0.1ms) ROLLBACK [shard 1742 master]
225626
+  (0.0ms) BEGIN [shard 1742 master]
225627
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225628
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225629
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225630
+  (0.1ms) BEGIN [shard 1744 master]
225631
+  (0.1ms) ROLLBACK [shard 1744 master]
225632
+  (0.1ms) ROLLBACK [shard 1742 master]
225633
+  (0.1ms) BEGIN [shard 1742 master]
225634
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225635
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225636
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225637
+  (0.1ms) BEGIN [shard 1744 master]
225638
+  (0.1ms) ROLLBACK [shard 1744 master]
225639
+  (0.1ms) ROLLBACK [shard 1742 master]
225640
+  (0.0ms) BEGIN [shard 1742 master]
225641
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225642
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225643
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225644
+  (0.0ms) BEGIN [shard 1744 master]
225645
+  (0.1ms) ROLLBACK [shard 1744 master]
225646
+  (0.1ms) ROLLBACK [shard 1742 master]
225647
+  (0.1ms) BEGIN [shard 1742 master]
225648
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225649
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225650
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225651
+  (0.1ms) BEGIN [shard 1744 master]
225652
+  (0.1ms) ROLLBACK [shard 1744 master]
225653
+  (0.1ms) ROLLBACK [shard 1742 master]
225654
+  (0.0ms) BEGIN [shard 1742 master]
225655
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225656
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225657
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225658
+  (0.1ms) BEGIN [shard 1744 master]
225659
+  (0.0ms) ROLLBACK [shard 1744 master]
225660
+  (0.1ms) ROLLBACK [shard 1742 master]
225661
+  (0.1ms) BEGIN [shard 1742 master]
225662
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225663
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225664
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225665
+  (0.0ms) BEGIN [shard 1744 master]
225666
+  (0.1ms) ROLLBACK [shard 1744 master]
225667
+  (0.1ms) ROLLBACK [shard 1742 master]
225668
+  (0.1ms) BEGIN [shard 1742 master]
225669
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225670
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225671
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225672
+  (0.1ms) BEGIN [shard 1744 master]
225673
+  (0.1ms) ROLLBACK [shard 1744 master]
225674
+  (0.1ms) ROLLBACK [shard 1742 master]
225675
+  (0.0ms) BEGIN [shard 1742 master]
225676
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225677
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225678
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225679
+  (0.0ms) BEGIN [shard 1744 master]
225680
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225681
+ SQL (0.4ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", nil], ["default", false], ["name", nil]] [shard 1742 master]
225682
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225683
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225684
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1759]] [shard 1742 master]
225685
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225686
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1759 LIMIT 1 [shard 1742 master]
225687
+  (0.1ms) ROLLBACK [shard 1744 master]
225688
+  (0.1ms) ROLLBACK [shard 1742 master]
225689
+  (0.0ms) BEGIN [shard 1742 master]
225690
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225691
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225692
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225693
+  (0.0ms) BEGIN [shard 1744 master]
225694
+  (0.1ms) ROLLBACK [shard 1744 master]
225695
+  (0.1ms) ROLLBACK [shard 1742 master]
225696
+  (0.0ms) BEGIN [shard 1742 master]
225697
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225698
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225699
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225700
+  (0.1ms) BEGIN [shard 1744 master]
225701
+  (0.1ms) ROLLBACK [shard 1744 master]
225702
+  (0.1ms) ROLLBACK [shard 1742 master]
225703
+  (0.1ms) BEGIN [shard 1742 master]
225704
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225705
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225706
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225707
+  (0.0ms) BEGIN [shard 1744 master]
225708
+  (0.0ms) ROLLBACK [shard 1744 master]
225709
+  (0.1ms) ROLLBACK [shard 1742 master]
225710
+  (0.0ms) BEGIN [shard 1742 master]
225711
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225712
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225713
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225714
+  (0.1ms) BEGIN [shard 1744 master]
225715
+  (0.1ms) ROLLBACK [shard 1744 master]
225716
+  (0.1ms) ROLLBACK [shard 1742 master]
225717
+  (0.1ms) BEGIN [shard 1742 master]
225718
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225719
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225720
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225721
+  (0.1ms) BEGIN [shard 1744 master]
225722
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225723
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", nil], ["default", false], ["name", nil]] [shard 1742 master]
225724
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225725
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225726
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1760]] [shard 1742 master]
225727
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225728
+  (0.1ms) ROLLBACK [shard 1744 master]
225729
+  (0.1ms) ROLLBACK [shard 1742 master]
225730
+  (0.0ms) BEGIN [shard 1742 master]
225731
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225732
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225733
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225734
+  (0.1ms) BEGIN [shard 1744 master]
225735
+  (0.1ms) ROLLBACK [shard 1744 master]
225736
+  (0.1ms) ROLLBACK [shard 1742 master]
225737
+  (0.0ms) BEGIN [shard 1742 master]
225738
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225739
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225740
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225741
+  (0.1ms) BEGIN [shard 1744 master]
225742
+  (0.1ms) ROLLBACK [shard 1744 master]
225743
+  (0.1ms) ROLLBACK [shard 1742 master]
225744
+  (0.1ms) BEGIN [shard 1742 master]
225745
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225746
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225747
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225748
+  (0.1ms) BEGIN [shard 1744 master]
225749
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225750
+  (0.1ms) ROLLBACK [shard 1744 master]
225751
+  (0.1ms) ROLLBACK [shard 1742 master]
225752
+  (0.0ms) BEGIN [shard 1742 master]
225753
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225754
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225755
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225756
+  (0.0ms) BEGIN [shard 1744 master]
225757
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
225758
+  (0.1ms) ROLLBACK [shard 1744 master]
225759
+  (0.1ms) ROLLBACK [shard 1742 master]
225760
+  (0.1ms) BEGIN [shard 1742 master]
225761
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225762
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225763
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225764
+  (0.1ms) BEGIN [shard 1744 master]
225765
+  (0.1ms) ROLLBACK [shard 1744 master]
225766
+  (0.1ms) ROLLBACK [shard 1742 master]
225767
+  (0.1ms) BEGIN [shard 1742 master]
225768
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225769
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225770
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225771
+  (0.1ms) BEGIN [shard 1744 master]
225772
+  (0.1ms) ROLLBACK [shard 1744 master]
225773
+  (0.1ms) ROLLBACK [shard 1742 master]
225774
+  (0.0ms) BEGIN [shard 1742 master]
225775
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225776
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225777
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225778
+  (0.1ms) BEGIN [shard 1744 master]
225779
+  (0.1ms) ROLLBACK [shard 1744 master]
225780
+  (0.1ms) ROLLBACK [shard 1742 master]
225781
+  (0.1ms) BEGIN [shard 1742 master]
225782
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225783
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225784
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225785
+  (0.1ms) BEGIN [shard 1744 master]
225786
+  (0.1ms) ROLLBACK [shard 1744 master]
225787
+  (0.1ms) ROLLBACK [shard 1742 master]
225788
+  (0.1ms) BEGIN [shard 1742 master]
225789
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225790
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225791
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225792
+  (0.0ms) BEGIN [shard 1744 master]
225793
+  (0.0ms) ROLLBACK [shard 1744 master]
225794
+  (0.1ms) ROLLBACK [shard 1742 master]
225795
+  (0.0ms) BEGIN [shard 1742 master]
225796
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225797
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225798
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225799
+  (0.1ms) BEGIN [shard 1744 master]
225800
+  (0.1ms) ROLLBACK [shard 1744 master]
225801
+  (0.1ms) ROLLBACK [shard 1742 master]
225802
+  (0.0ms) BEGIN [shard 1742 master]
225803
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225804
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225805
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225806
+  (0.1ms) BEGIN [shard 1744 master]
225807
+  (0.0ms) ROLLBACK [shard 1744 master]
225808
+  (0.1ms) ROLLBACK [shard 1742 master]
225809
+  (0.1ms) BEGIN [shard 1742 master]
225810
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225811
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225812
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225813
+  (0.0ms) BEGIN [shard 1744 master]
225814
+  (0.0ms) ROLLBACK [shard 1744 master]
225815
+  (0.1ms) ROLLBACK [shard 1742 master]
225816
+  (0.0ms) BEGIN [shard 1742 master]
225817
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225818
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225819
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225820
+  (0.1ms) BEGIN [shard 1744 master]
225821
+  (0.1ms) ROLLBACK [shard 1744 master]
225822
+  (0.1ms) ROLLBACK [shard 1742 master]
225823
+  (0.0ms) BEGIN [shard 1742 master]
225824
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225825
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225826
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225827
+  (0.0ms) BEGIN [shard 1744 master]
225828
+  (0.1ms) ROLLBACK [shard 1744 master]
225829
+  (0.1ms) ROLLBACK [shard 1742 master]
225830
+  (0.1ms) BEGIN [shard 1742 master]
225831
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225832
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225833
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225834
+  (0.1ms) BEGIN [shard 1744 master]
225835
+  (0.1ms) ROLLBACK [shard 1744 master]
225836
+  (0.1ms) ROLLBACK [shard 1742 master]
225837
+  (0.0ms) BEGIN [shard 1742 master]
225838
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225839
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225840
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225841
+  (0.0ms) BEGIN [shard 1744 master]
225842
+  (0.1ms) ROLLBACK [shard 1744 master]
225843
+  (0.1ms) ROLLBACK [shard 1742 master]
225844
+  (0.0ms) BEGIN [shard 1742 master]
225845
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225846
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225847
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225848
+  (0.1ms) BEGIN [shard 1744 master]
225849
+  (0.1ms) ROLLBACK [shard 1744 master]
225850
+  (0.1ms) ROLLBACK [shard 1742 master]
225851
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
225852
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225853
+  (0.1ms) BEGIN [shard 1742 master]
225854
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225855
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225856
+  (0.3ms) COMMIT [shard 1742 master]
225857
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225858
+  (0.1ms) BEGIN [shard 1742 master]
225859
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225860
+  (0.2ms) COMMIT [shard 1742 master]
225861
+  (0.0ms) BEGIN [shard 1742 master]
225862
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225863
+  (0.2ms) COMMIT [shard 1742 master]
225864
+  (0.1ms) BEGIN [shard 1742 master]
225865
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225866
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225867
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225868
+  (0.0ms) BEGIN [shard 1744 master]
225869
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225870
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
225871
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225872
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225873
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
225874
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225875
+  (0.1ms) ROLLBACK [shard 1744 master]
225876
+  (0.1ms) ROLLBACK [shard 1743 master]
225877
+  (0.0ms) BEGIN [shard 1742 master]
225878
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225879
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225880
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225881
+  (0.0ms) BEGIN [shard 1744 master]
225882
+  (0.1ms) ROLLBACK [shard 1744 master]
225883
+  (0.1ms) ROLLBACK [shard 1742 master]
225884
+  (0.0ms) BEGIN [shard 1742 master]
225885
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225886
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225887
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225888
+  (0.0ms) BEGIN [shard 1744 master]
225889
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225890
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
225891
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225892
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
225893
+  (0.1ms) ROLLBACK [shard 1744 master]
225894
+  (0.1ms) ROLLBACK [shard 1742 master]
225895
+  (0.1ms) BEGIN [shard 1742 master]
225896
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225897
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225898
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225899
+  (0.1ms) BEGIN [shard 1744 master]
225900
+  (0.1ms) ROLLBACK [shard 1744 master]
225901
+  (0.1ms) ROLLBACK [shard 1742 master]
225902
+  (0.0ms) BEGIN [shard 1742 master]
225903
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225904
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225905
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225906
+  (0.0ms) BEGIN [shard 1744 master]
225907
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225908
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
225909
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225910
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
225911
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1743 master]
225912
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225913
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
225914
+ SQL (1.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1744 master]
225915
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
225916
+  (0.1ms) ROLLBACK [shard 1744 master]
225917
+  (0.1ms) ROLLBACK [shard 1743 master]
225918
+  (0.1ms) BEGIN [shard 1742 master]
225919
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225920
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225921
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225922
+  (0.1ms) BEGIN [shard 1744 master]
225923
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225924
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
225925
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225926
+  (0.1ms) ROLLBACK [shard 1744 master]
225927
+  (0.1ms) ROLLBACK [shard 1742 master]
225928
+  (0.1ms) BEGIN [shard 1742 master]
225929
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225930
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225931
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225932
+  (0.1ms) BEGIN [shard 1744 master]
225933
+  (0.1ms) ROLLBACK [shard 1744 master]
225934
+  (0.1ms) ROLLBACK [shard 1742 master]
225935
+  (0.0ms) BEGIN [shard 1742 master]
225936
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225937
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225938
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225939
+  (0.0ms) BEGIN [shard 1744 master]
225940
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225941
+ SQL (1.9ms) INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil]] [shard 1742 master]
225942
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
225943
+  (0.1ms) ROLLBACK [shard 1744 master]
225944
+  (0.1ms) ROLLBACK [shard 1742 master]
225945
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
225946
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225947
+  (0.1ms) BEGIN [shard 1742 master]
225948
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225949
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
225950
+  (0.3ms) COMMIT [shard 1742 master]
225951
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225952
+  (0.1ms) BEGIN [shard 1742 master]
225953
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
225954
+  (0.3ms) COMMIT [shard 1742 master]
225955
+  (0.1ms) BEGIN [shard 1742 master]
225956
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
225957
+  (0.3ms) COMMIT [shard 1742 master]
225958
+  (0.1ms) BEGIN [shard 1742 master]
225959
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225960
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225961
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225962
+  (0.0ms) BEGIN [shard 1744 master]
225963
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225964
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
225965
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225966
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
225967
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
225968
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
225969
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
225970
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 43], ["value", nil]] [shard 1743 master]
225971
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225972
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
225973
+ Appendage Load (0.4ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 46]] [shard 1743 master]
225974
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 43 LIMIT 1 [shard 1743 master]
225975
+  (0.1ms) ROLLBACK [shard 1744 master]
225976
+  (0.1ms) ROLLBACK [shard 1743 master]
225977
+  (0.0ms) BEGIN [shard 1742 master]
225978
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225979
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225980
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225981
+  (0.0ms) BEGIN [shard 1744 master]
225982
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225983
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
225984
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225985
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
225986
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
225987
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
225988
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
225989
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 44], ["value", nil]] [shard 1743 master]
225990
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
225991
+  (0.1ms) ROLLBACK [shard 1744 master]
225992
+  (0.1ms) ROLLBACK [shard 1743 master]
225993
+  (0.0ms) BEGIN [shard 1742 master]
225994
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
225995
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
225996
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
225997
+  (0.0ms) BEGIN [shard 1744 master]
225998
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
225999
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226000
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226001
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226002
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226003
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226004
+  (0.1ms) ROLLBACK [shard 1744 master]
226005
+  (0.1ms) ROLLBACK [shard 1743 master]
226006
+  (0.0ms) BEGIN [shard 1742 master]
226007
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226008
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226009
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226010
+  (0.1ms) BEGIN [shard 1744 master]
226011
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226012
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226013
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226014
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226015
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226016
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226017
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226018
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 46], ["value", nil]] [shard 1743 master]
226019
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226020
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226021
+ SQL (0.7ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", nil], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
226022
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226023
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
226024
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226025
+ SQL (6.6ms) INSERT INTO "digits" ("appendage_id", "created_at", "id", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["appendage_id", 48], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["id", 17440000000000001], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226026
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226027
+ Digit Load (0.4ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 46 AND "digits"."id" = $1 LIMIT 1 [["id", 17440000000000001]] [shard 1743 master]
226028
+  (0.1ms) ROLLBACK [shard 1744 master]
226029
+  (0.1ms) ROLLBACK [shard 1743 master]
226030
+  (0.0ms) BEGIN [shard 1742 master]
226031
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226032
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226033
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226034
+  (0.1ms) BEGIN [shard 1744 master]
226035
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226036
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226037
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226038
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226039
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226040
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226041
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226042
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 47], ["value", nil]] [shard 1743 master]
226043
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226044
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 47 AND "appendages"."id" = $1 LIMIT 1 [["id", 49]] [shard 1743 master]
226045
+ Appendage Load (0.4ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 38 AND "appendages"."id" = $1 LIMIT 1 [["id", 17430000000000049]] [shard 1744 master]
226046
+  (0.1ms) ROLLBACK [shard 1744 master]
226047
+  (0.1ms) ROLLBACK [shard 1742 master]
226048
+  (0.1ms) BEGIN [shard 1742 master]
226049
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226050
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226051
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226052
+  (0.0ms) BEGIN [shard 1744 master]
226053
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226054
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226055
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226056
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226057
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226058
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226059
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226060
+ SQL (0.6ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil]] [shard 1743 master]
226061
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226062
+  (0.1ms) ROLLBACK [shard 1744 master]
226063
+  (0.1ms) ROLLBACK [shard 1742 master]
226064
+  (0.1ms) BEGIN [shard 1742 master]
226065
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226066
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226067
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226068
+  (0.0ms) BEGIN [shard 1744 master]
226069
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226070
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226071
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226072
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226073
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226074
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226075
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226076
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 49], ["value", nil]] [shard 1743 master]
226077
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226078
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226079
+ SQL (0.4ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 50], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226080
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226081
+ Digit Load (0.5ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 49 AND "digits"."id" = $1 LIMIT 1 [["id", 1]] [shard 1743 master]
226082
+  (0.1ms) ROLLBACK [shard 1744 master]
226083
+  (0.1ms) ROLLBACK [shard 1743 master]
226084
+  (0.0ms) BEGIN [shard 1742 master]
226085
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226086
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226087
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226088
+  (0.0ms) BEGIN [shard 1744 master]
226089
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226090
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226091
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226092
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226093
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226094
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226095
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226096
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 50], ["value", nil]] [shard 1743 master]
226097
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226098
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226099
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226100
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 41], ["value", nil]] [shard 1744 master]
226101
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226102
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226103
+  (0.1ms) ROLLBACK [shard 1744 master]
226104
+  (0.1ms) ROLLBACK [shard 1742 master]
226105
+  (0.1ms) BEGIN [shard 1742 master]
226106
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226107
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226108
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226109
+  (0.1ms) BEGIN [shard 1744 master]
226110
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226111
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226112
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226113
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226114
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226115
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226116
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226117
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 51], ["value", nil]] [shard 1743 master]
226118
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226119
+  (0.1ms) ROLLBACK [shard 1744 master]
226120
+  (0.1ms) ROLLBACK [shard 1743 master]
226121
+  (0.0ms) BEGIN [shard 1742 master]
226122
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226123
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226124
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226125
+  (0.1ms) BEGIN [shard 1744 master]
226126
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226127
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226128
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226129
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226130
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226131
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226132
+  (0.1ms) ROLLBACK [shard 1744 master]
226133
+  (0.1ms) ROLLBACK [shard 1743 master]
226134
+  (0.0ms) BEGIN [shard 1742 master]
226135
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226136
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226137
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226138
+  (0.1ms) BEGIN [shard 1744 master]
226139
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226140
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226141
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226142
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226143
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226144
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226145
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226146
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 53], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226147
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226148
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226149
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 54], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226150
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226151
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 53]] [shard 1743 master]
226152
+  (0.1ms) SHOW max_identifier_length [shard 1743 master]
226153
+ User Exists (0.3ms) 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" = 53 AND "users"."id" = 55 LIMIT 1 [shard 1743 master]
226154
+ WARNING: Can't mass-assign protected attributes: id
226155
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226156
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226157
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226158
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 53]] [shard 1743 master]
226159
+ User Exists (0.3ms) 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" = 53 AND "users"."id" = 17440000000000045 LIMIT 1 [shard 1743 master]
226160
+  (0.1ms) ROLLBACK [shard 1744 master]
226161
+  (0.1ms) ROLLBACK [shard 1743 master]
226162
+  (0.0ms) BEGIN [shard 1742 master]
226163
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226164
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226165
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226166
+  (0.1ms) BEGIN [shard 1744 master]
226167
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226168
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226169
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226170
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226171
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226172
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226173
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226174
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 56], ["value", nil]] [shard 1743 master]
226175
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226176
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 56 [shard 1743 master]
226177
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 56]] [shard 1743 master]
226178
+  (0.1ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 56 [shard 1743 master]
226179
+  (0.1ms) ROLLBACK [shard 1744 master]
226180
+  (0.1ms) ROLLBACK [shard 1743 master]
226181
+  (0.0ms) BEGIN [shard 1742 master]
226182
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226183
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226184
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226185
+  (0.1ms) BEGIN [shard 1744 master]
226186
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226187
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226188
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226189
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226190
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226191
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226192
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226193
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 57], ["value", 1]] [shard 1743 master]
226194
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226195
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226196
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000057], ["value", nil]] [shard 1744 master]
226197
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226198
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 57 AND "appendages"."value" IS NULL [shard 1743 master]
226199
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000057 AND "appendages"."value" IS NULL [shard 1744 master]
226200
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 57]] [shard 1743 master]
226201
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 57 AND "appendages"."value" IS NULL [shard 1743 master]
226202
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000057 AND "appendages"."value" IS NULL [shard 1744 master]
226203
+  (0.1ms) ROLLBACK [shard 1744 master]
226204
+  (0.1ms) ROLLBACK [shard 1743 master]
226205
+  (0.0ms) BEGIN [shard 1742 master]
226206
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226207
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226208
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226209
+  (0.1ms) BEGIN [shard 1744 master]
226210
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226211
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226212
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226213
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226214
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226215
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226216
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226217
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 58], ["value", nil]] [shard 1743 master]
226218
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226219
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226220
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 55], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226221
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226222
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226223
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000058], ["value", nil]] [shard 1744 master]
226224
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226225
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226226
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 57], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
226227
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226228
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 58 AND "digits"."value" IS NULL [shard 1743 master]
226229
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000058 AND "digits"."value" IS NULL [shard 1744 master]
226230
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 58]] [shard 1743 master]
226231
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 58 AND "digits"."value" IS NULL [shard 1743 master]
226232
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000058 AND "digits"."value" IS NULL [shard 1744 master]
226233
+  (0.1ms) ROLLBACK [shard 1744 master]
226234
+  (0.1ms) ROLLBACK [shard 1743 master]
226235
+  (0.0ms) BEGIN [shard 1742 master]
226236
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226237
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226238
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226239
+  (0.1ms) BEGIN [shard 1744 master]
226240
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226242
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226243
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226244
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226245
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226246
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226247
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 59], ["value", nil]] [shard 1743 master]
226248
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226249
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226250
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 56], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226251
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226252
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226253
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000059], ["value", nil]] [shard 1744 master]
226254
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226255
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226256
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
226257
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226258
+  (0.3ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 59 AND "digits"."value" IS NULL [shard 1743 master]
226259
+  (0.2ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000059 AND "digits"."value" IS NULL [shard 1744 master]
226260
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 59]] [shard 1743 master]
226261
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 59 AND "digits"."value" IS NULL [shard 1743 master]
226262
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000059 AND "digits"."value" IS NULL [shard 1744 master]
226263
+  (0.1ms) ROLLBACK [shard 1744 master]
226264
+  (0.1ms) ROLLBACK [shard 1743 master]
226265
+  (0.0ms) BEGIN [shard 1742 master]
226266
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226267
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226268
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226269
+  (0.1ms) BEGIN [shard 1744 master]
226270
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226271
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226272
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226273
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226274
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226275
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226276
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226277
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1743 master]
226278
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226279
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226280
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 57], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
226281
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226282
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226283
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000060], ["value", nil]] [shard 1744 master]
226284
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226285
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226286
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 59], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
226287
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226288
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 60 [shard 1743 master]
226289
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 60]] [shard 1743 master]
226290
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 60 [shard 1743 master]
226291
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000060 [shard 1744 master]
226292
+  (0.1ms) ROLLBACK [shard 1744 master]
226293
+  (0.1ms) ROLLBACK [shard 1743 master]
226294
+  (0.0ms) BEGIN [shard 1742 master]
226295
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226296
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226297
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226298
+  (0.0ms) BEGIN [shard 1744 master]
226299
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226300
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226301
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226302
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226303
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226304
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226305
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226306
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 61], ["value", nil]] [shard 1743 master]
226307
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226308
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226309
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226310
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226311
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226312
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
226313
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226314
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226315
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000061], ["value", nil]] [shard 1744 master]
226316
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226317
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226318
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 60], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
226319
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226320
+  (0.4ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 61 AND (digits.value IS NOT NULL) [shard 1743 master]
226321
+  (0.4ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000061 AND (digits.value IS NOT NULL) [shard 1744 master]
226322
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 61]] [shard 1743 master]
226323
+  (0.3ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 61 AND (digits.value IS NOT NULL) [shard 1743 master]
226324
+  (0.3ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000061 AND (digits.value IS NOT NULL) [shard 1744 master]
226325
+  (0.1ms) ROLLBACK [shard 1744 master]
226326
+  (0.1ms) ROLLBACK [shard 1743 master]
226327
+  (0.0ms) BEGIN [shard 1742 master]
226328
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226329
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226330
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226331
+  (0.0ms) BEGIN [shard 1744 master]
226332
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226333
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226334
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226335
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226336
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226337
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226338
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226339
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 62], ["value", 1]] [shard 1743 master]
226340
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226341
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226342
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000062], ["value", 2]] [shard 1744 master]
226343
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226344
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 62 [shard 1743 master]
226345
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 62]] [shard 1743 master]
226346
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 62 [shard 1743 master]
226347
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000062 [shard 1744 master]
226348
+  (0.1ms) ROLLBACK [shard 1744 master]
226349
+  (0.1ms) ROLLBACK [shard 1743 master]
226350
+  (0.1ms) BEGIN [shard 1742 master]
226351
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226352
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226353
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226354
+  (0.0ms) BEGIN [shard 1744 master]
226355
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226356
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226357
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226358
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226359
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226360
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226361
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226362
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 63], ["value", 1]] [shard 1743 master]
226363
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226364
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226365
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000063], ["value", nil]] [shard 1744 master]
226366
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226367
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226368
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226369
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 63], ["value", 2]] [shard 1743 master]
226370
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226371
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226372
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 63]] [shard 1743 master]
226373
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 63 AND (appendages.value IS NOT NULL) [shard 1743 master]
226374
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 17430000000000063 AND (appendages.value IS NOT NULL) [shard 1744 master]
226375
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 63]] [shard 1743 master]
226376
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 63 AND (appendages.value IS NOT NULL) [shard 1743 master]
226377
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 17430000000000063 AND (appendages.value IS NOT NULL) [shard 1744 master]
226378
+  (0.1ms) ROLLBACK [shard 1744 master]
226379
+  (0.2ms) ROLLBACK [shard 1743 master]
226380
+  (0.0ms) BEGIN [shard 1742 master]
226381
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226382
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226383
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226384
+  (0.1ms) BEGIN [shard 1744 master]
226385
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226386
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226387
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226388
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226389
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226390
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226391
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226392
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1744 master]
226393
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226394
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226395
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 64 LIMIT 1 [shard 1743 master]
226396
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 64], ["value", nil]] [shard 1743 master]
226397
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226398
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 62]] [shard 1743 master]
226399
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 64 LIMIT 1 [shard 1743 master]
226400
+  (0.1ms) ROLLBACK [shard 1744 master]
226401
+  (0.1ms) ROLLBACK [shard 1743 master]
226402
+  (0.1ms) BEGIN [shard 1742 master]
226403
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226404
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226405
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226406
+  (0.0ms) BEGIN [shard 1744 master]
226407
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226408
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226409
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226410
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226411
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226412
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226413
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226414
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000055], ["value", nil]] [shard 1743 master]
226415
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226416
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 63]] [shard 1743 master]
226417
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 55 LIMIT 1 [shard 1744 master]
226418
+  (0.1ms) ROLLBACK [shard 1744 master]
226419
+  (0.1ms) ROLLBACK [shard 1743 master]
226420
+  (0.1ms) BEGIN [shard 1742 master]
226421
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226422
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226423
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226424
+  (0.1ms) BEGIN [shard 1744 master]
226425
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226426
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226427
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226428
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226429
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226430
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226431
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226432
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 66], ["value", nil]] [shard 1743 master]
226433
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226434
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226435
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000066], ["value", nil]] [shard 1744 master]
226436
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226437
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226438
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000056], ["value", nil]] [shard 1743 master]
226439
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226440
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (66) [shard 1743 master]
226441
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (66) [shard 1743 master]
226442
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (17430000000000066) [shard 1744 master]
226443
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 1744 master]
226444
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (56) [shard 1744 master]
226445
+ SQL (0.2ms) DELETE FROM "appendages" WHERE "appendages"."id" = 64 [shard 1743 master]
226446
+  (0.1ms) ROLLBACK [shard 1744 master]
226447
+  (0.1ms) ROLLBACK [shard 1743 master]
226448
+  (0.0ms) BEGIN [shard 1742 master]
226449
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226450
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226451
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226452
+  (0.1ms) BEGIN [shard 1744 master]
226453
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226454
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226455
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226456
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226457
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226458
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226459
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226460
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000067], ["value", nil]] [shard 1742 master]
226461
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226462
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226463
+ SQL (13.5ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1451], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
226464
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226465
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226466
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000057], ["value", nil]] [shard 1743 master]
226467
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226468
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226469
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17430000000000066], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
226470
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226471
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" [shard 1742 master]
226472
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (1451) [shard 1742 master]
226473
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (66) [shard 1743 master]
226474
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67) [shard 1743 master]
226475
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (57) [shard 1744 master]
226476
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 67 [shard 1743 master]
226477
+  (0.1ms) ROLLBACK [shard 1744 master]
226478
+  (0.1ms) ROLLBACK [shard 1743 master]
226479
+  (0.0ms) BEGIN [shard 1742 master]
226480
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226481
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226482
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226483
+  (0.1ms) BEGIN [shard 1744 master]
226484
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226485
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226486
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226487
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226489
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226490
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226491
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
226492
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226493
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226494
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1452], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
226495
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226496
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226497
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17420000000001452], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226498
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226499
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 1452 LIMIT 1 [shard 1742 master]
226500
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (1452) [shard 1742 master]
226501
+  (0.1ms) ROLLBACK [shard 1744 master]
226502
+  (0.1ms) ROLLBACK [shard 1742 master]
226503
+  (0.0ms) BEGIN [shard 1742 master]
226504
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226505
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226506
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226507
+  (0.1ms) BEGIN [shard 1744 master]
226508
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226509
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226510
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226511
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226512
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226513
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226514
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226515
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000069], ["value", nil]] [shard 1742 master]
226516
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226517
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226518
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000059], ["value", nil]] [shard 1742 master]
226519
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226520
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
226522
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226523
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226524
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 2938], ["value", nil]] [shard 1742 master]
226525
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226526
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages"  [shard 1742 master]
226527
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (69) [shard 1743 master]
226528
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (59) [shard 1744 master]
226529
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (2938) [shard 1742 master]
226530
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = 69 [shard 1743 master]
226531
+  (0.1ms) ROLLBACK [shard 1744 master]
226532
+  (0.1ms) ROLLBACK [shard 1743 master]
226533
+  (0.0ms) BEGIN [shard 1742 master]
226534
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226535
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226536
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226537
+  (0.1ms) BEGIN [shard 1744 master]
226538
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226539
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226540
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226541
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226542
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226543
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226544
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226545
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 70], ["value", nil]] [shard 1743 master]
226546
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226547
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226548
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000070], ["value", nil]] [shard 1744 master]
226549
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226550
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226551
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000070], ["value", nil]] [shard 1744 master]
226552
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226553
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226554
+ SQL (0.4ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 67], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226555
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226556
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226557
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226558
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 65], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
226559
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226560
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226561
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226562
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17440000000000065], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226563
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226564
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226565
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17440000000000066], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226566
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226567
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226568
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000060], ["value", nil]] [shard 1743 master]
226569
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226570
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226571
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226572
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1744 master]
226573
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226574
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226575
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226576
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226577
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1744 master]
226578
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226579
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226580
+  (0.0ms) SAVEPOINT active_record_1 [shard 1744 master]
226581
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17430000000000068], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
226582
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226583
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226584
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17440000000000067], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
226585
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226586
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226587
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 68], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
226588
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226589
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 1743 master]
226590
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (70) [shard 1743 master]
226591
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (17430000000000070) [shard 1744 master]
226592
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (67) [shard 1743 master]
226593
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (65, 66) [shard 1744 master]
226594
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (60) [shard 1744 master]
226595
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (60) [shard 1744 master]
226596
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (67, 68) [shard 1744 master]
226597
+ SQL (0.2ms) DELETE FROM "digits" WHERE "digits"."id" = 8 [shard 1743 master]
226598
+  (0.1ms) ROLLBACK [shard 1744 master]
226599
+  (0.1ms) ROLLBACK [shard 1743 master]
226600
+  (0.0ms) BEGIN [shard 1742 master]
226601
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226602
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226603
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226604
+  (0.0ms) BEGIN [shard 1744 master]
226605
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226606
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226607
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226608
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226609
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226610
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226611
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226612
+ SQL (5.5ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 71], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
226613
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226614
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226615
+ SQL (0.9ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 17430000000000071], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
226616
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226617
+ Feature Load (0.4ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 71 AND "features"."owner_type" = 'User' [shard 1743 master]
226618
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 71]] [shard 1743 master]
226619
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 71 AND "features"."owner_type" = 'User' [shard 1743 master]
226620
+ Feature Load (0.5ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 17430000000000071 AND "features"."owner_type" = 'User' [shard 1744 master]
226621
+  (0.1ms) ROLLBACK [shard 1744 master]
226622
+  (0.1ms) ROLLBACK [shard 1743 master]
226623
+  (0.0ms) BEGIN [shard 1742 master]
226624
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226625
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226626
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226627
+  (0.1ms) BEGIN [shard 1744 master]
226628
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226629
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226630
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226631
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226632
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226633
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226634
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226635
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
226636
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226637
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226638
+ SQL (0.5ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 1456], ["owner_type", "Appendage"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
226639
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226640
+ Feature Load (0.3ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 138]] [shard 1742 master]
226641
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 1456 LIMIT 1 [shard 1742 master]
226642
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226643
+  (0.2ms) UPDATE "features" SET "owner_id" = 17430000000000072, "owner_type" = 'User', "updated_at" = '2015-03-10 19:18:08.615368' WHERE "features"."id" = 138 [shard 1742 master]
226644
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226645
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 138]] [shard 1742 master]
226646
+  (0.1ms) ROLLBACK [shard 1744 master]
226647
+  (0.1ms) ROLLBACK [shard 1742 master]
226648
+  (0.0ms) BEGIN [shard 1742 master]
226649
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226650
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226651
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226652
+  (0.1ms) BEGIN [shard 1744 master]
226653
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226655
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226656
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226657
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226658
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226659
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226660
+ SQL (0.3ms) INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000063]] [shard 1742 master]
226661
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226662
+ Root Load (0.3ms) SELECT "roots".* FROM "roots" WHERE "roots"."id" = $1 LIMIT 1 [["id", 68]] [shard 1742 master]
226663
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 63 LIMIT 1 [shard 1744 master]
226664
+  (0.1ms) ROLLBACK [shard 1744 master]
226665
+  (0.1ms) ROLLBACK [shard 1742 master]
226666
+  (0.0ms) BEGIN [shard 1742 master]
226667
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226668
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226669
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226670
+  (0.0ms) BEGIN [shard 1744 master]
226671
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226672
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226673
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226674
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
226675
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
226676
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
226677
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226678
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226679
+  (0.1ms) ROLLBACK [shard 1744 master]
226680
+  (0.1ms) ROLLBACK [shard 1743 master]
226681
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
226682
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226683
+  (0.1ms) BEGIN [shard 1742 master]
226684
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226685
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226686
+  (0.2ms) COMMIT [shard 1742 master]
226687
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226688
+  (0.1ms) BEGIN [shard 1742 master]
226689
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226690
+  (0.2ms) COMMIT [shard 1742 master]
226691
+  (0.1ms) BEGIN [shard 1742 master]
226692
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226693
+  (0.3ms) COMMIT [shard 1742 master]
226694
+  (0.0ms) BEGIN [shard 1742 master]
226695
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226696
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226697
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226698
+  (0.0ms) BEGIN [shard 1744 master]
226699
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
226700
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:19:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:19:08 UTC +00:00]] [shard 1743 master]
226701
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226702
+  (0.0ms) ROLLBACK [shard 1744 master]
226703
+  (0.0ms) ROLLBACK [shard 1743 master]
226704
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
226705
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226706
+  (0.1ms) BEGIN [shard 1742 master]
226707
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226708
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226709
+  (0.3ms) COMMIT [shard 1742 master]
226710
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226711
+  (0.1ms) BEGIN [shard 1742 master]
226712
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226713
+  (0.2ms) COMMIT [shard 1742 master]
226714
+  (0.1ms) BEGIN [shard 1742 master]
226715
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226716
+  (0.2ms) COMMIT [shard 1742 master]
226717
+  (0.1ms) BEGIN [shard 1742 master]
226718
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226719
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226720
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226721
+  (0.0ms) BEGIN [shard 1744 master]
226722
+  (0.1ms) ROLLBACK [shard 1744 master]
226723
+  (0.1ms) ROLLBACK [shard 1742 master]
226724
+  (0.1ms) BEGIN [shard 1742 master]
226725
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226726
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226727
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226728
+  (0.0ms) BEGIN [shard 1744 master]
226729
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" IN (1742, 1743) AND (id IN (1743,1744)) [shard 1742 master]
226730
+  (0.1ms) ROLLBACK [shard 1744 master]
226731
+  (0.1ms) ROLLBACK [shard 1742 master]
226732
+  (0.1ms) BEGIN [shard 1742 master]
226733
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226734
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226735
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226736
+  (0.1ms) BEGIN [shard 1744 master]
226737
+  (0.1ms) ROLLBACK [shard 1744 master]
226738
+  (0.1ms) ROLLBACK [shard 1742 master]
226739
+  (0.1ms) BEGIN [shard 1742 master]
226740
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226741
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226742
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226743
+  (0.0ms) BEGIN [shard 1744 master]
226744
+  (0.0ms) ROLLBACK [shard 1744 master]
226745
+  (0.1ms) ROLLBACK [shard 1742 master]
226746
+  (0.1ms) BEGIN [shard 1742 master]
226747
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226748
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226749
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226750
+  (0.0ms) BEGIN [shard 1744 master]
226751
+  (0.0ms) ROLLBACK [shard 1744 master]
226752
+  (0.1ms) ROLLBACK [shard 1742 master]
226753
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
226754
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226755
+  (0.1ms) BEGIN [shard 1742 master]
226756
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226757
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226758
+  (0.3ms) COMMIT [shard 1742 master]
226759
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226760
+  (0.1ms) BEGIN [shard 1742 master]
226761
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226762
+  (0.2ms) COMMIT [shard 1742 master]
226763
+  (0.1ms) BEGIN [shard 1742 master]
226764
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226765
+  (0.3ms) COMMIT [shard 1742 master]
226766
+  (0.0ms) BEGIN [shard 1742 master]
226767
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226768
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226769
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226770
+  (0.1ms) BEGIN [shard 1744 master]
226771
+  (0.1ms) ROLLBACK [shard 1744 master]
226772
+  (0.1ms) ROLLBACK [shard 1742 master]
226773
+  (0.1ms) BEGIN [shard 1742 master]
226774
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226775
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226776
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226777
+  (0.1ms) BEGIN [shard 1744 master]
226778
+  (0.1ms) ROLLBACK [shard 1744 master]
226779
+  (0.1ms) ROLLBACK [shard 1742 master]
226780
+  (0.0ms) BEGIN [shard 1742 master]
226781
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226782
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226783
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226784
+  (0.1ms) BEGIN [shard 1744 master]
226785
+  (0.1ms) ROLLBACK [shard 1744 master]
226786
+  (0.1ms) ROLLBACK [shard 1742 master]
226787
+  (0.0ms) BEGIN [shard 1742 master]
226788
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226789
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226790
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226791
+  (0.0ms) BEGIN [shard 1744 master]
226792
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226793
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "19"], ["default", false], ["name", nil]] [shard 1742 master]
226794
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226795
+  (0.0ms) SAVEPOINT active_record_1 [shard 1742 master]
226796
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "19"], ["default", false], ["name", nil]] [shard 1742 master]
226797
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226798
+  (0.1ms) ROLLBACK [shard 1744 master]
226799
+  (0.1ms) ROLLBACK [shard 1742 master]
226800
+ SQL (5.7ms) DELETE FROM "switchman_shards" [shard 1742 master]
226801
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226802
+  (0.1ms) BEGIN [shard 1742 master]
226803
+  (0.1ms) ROLLBACK [shard 1742 master]
226804
+  (0.0ms) BEGIN [shard 1742 master]
226805
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226806
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226807
+  (5.1ms) COMMIT [shard 1742 master]
226808
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226809
+  (0.1ms) BEGIN [shard 1742 master]
226810
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226811
+  (0.3ms) COMMIT [shard 1742 master]
226812
+  (0.1ms) BEGIN [shard 1742 master]
226813
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226814
+  (0.2ms) COMMIT [shard 1742 master]
226815
+  (0.1ms) BEGIN [shard 1742 master]
226816
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226817
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226818
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226819
+  (0.0ms) BEGIN [shard 1744 master]
226820
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226821
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "20"], ["default", false], ["name", nil]] [shard 1742 master]
226822
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226823
+  (0.1ms) ROLLBACK [shard 1744 master]
226824
+  (0.1ms) ROLLBACK [shard 1742 master]
226825
+  (0.1ms) BEGIN [shard 1742 master]
226826
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226827
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226828
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226829
+  (0.1ms) BEGIN [shard 1744 master]
226830
+  (0.1ms) ROLLBACK [shard 1744 master]
226831
+  (0.1ms) ROLLBACK [shard 1742 master]
226832
+  (0.0ms) BEGIN [shard 1742 master]
226833
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226834
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226835
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226836
+  (0.1ms) BEGIN [shard 1744 master]
226837
+  (0.1ms) ROLLBACK [shard 1744 master]
226838
+  (0.1ms) ROLLBACK [shard 1742 master]
226839
+  (0.1ms) BEGIN [shard 1742 master]
226840
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226841
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226842
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226843
+  (0.1ms) BEGIN [shard 1744 master]
226844
+  (0.1ms) ROLLBACK [shard 1744 master]
226845
+  (0.1ms) ROLLBACK [shard 1742 master]
226846
+  (0.0ms) BEGIN [shard 1742 master]
226847
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226848
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226849
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226850
+  (0.0ms) BEGIN [shard 1744 master]
226851
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226852
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "21"], ["default", false], ["name", nil]] [shard 1742 master]
226853
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226854
+  (0.1ms) ROLLBACK [shard 1744 master]
226855
+  (0.1ms) ROLLBACK [shard 1742 master]
226856
+  (0.1ms) BEGIN [shard 1742 master]
226857
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226858
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226859
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226860
+  (0.1ms) BEGIN [shard 1744 master]
226861
+  (0.1ms) ROLLBACK [shard 1744 master]
226862
+  (0.1ms) ROLLBACK [shard 1742 master]
226863
+  (0.0ms) BEGIN [shard 1742 master]
226864
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226865
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226866
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226867
+  (0.0ms) BEGIN [shard 1744 master]
226868
+  (0.1ms) SAVEPOINT active_record_1 [shard 1742 master]
226869
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
226870
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1742 master]
226871
+  (0.1ms) ROLLBACK [shard 1744 master]
226872
+  (0.1ms) ROLLBACK [shard 1742 master]
226873
+ SQL (0.9ms) DELETE FROM "switchman_shards" [shard 1742 master]
226874
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226875
+  (0.1ms) BEGIN [shard 1742 master]
226876
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226877
+ SQL (0.4ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226878
+  (0.3ms) COMMIT [shard 1742 master]
226879
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226880
+  (0.1ms) BEGIN [shard 1742 master]
226881
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226882
+  (0.3ms) COMMIT [shard 1742 master]
226883
+  (0.0ms) BEGIN [shard 1742 master]
226884
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226885
+  (0.3ms) COMMIT [shard 1742 master]
226886
+  (0.0ms) BEGIN [shard 1742 master]
226887
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226888
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226889
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226890
+  (0.1ms) BEGIN [shard 1744 master]
226891
+  (0.1ms) ROLLBACK [shard 1744 master]
226892
+  (0.1ms) ROLLBACK [shard 1742 master]
226893
+  (0.0ms) BEGIN [shard 1742 master]
226894
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226895
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226896
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226897
+  (0.1ms) BEGIN [shard 1744 master]
226898
+  (0.1ms) ROLLBACK [shard 1744 master]
226899
+  (0.1ms) ROLLBACK [shard 1742 master]
226900
+  (0.0ms) BEGIN [shard 1742 master]
226901
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226902
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226903
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226904
+  (0.0ms) BEGIN [shard 1744 master]
226905
+  (0.1ms) ROLLBACK [shard 1744 master]
226906
+  (0.1ms) ROLLBACK [shard 1742 master]
226907
+  (0.1ms) BEGIN [shard 1742 master]
226908
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226909
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226910
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226911
+  (0.0ms) BEGIN [shard 1744 master]
226912
+  (0.0ms) ROLLBACK [shard 1744 master]
226913
+  (0.1ms) ROLLBACK [shard 1742 master]
226914
+  (0.0ms) BEGIN [shard 1742 master]
226915
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226916
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226917
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226918
+  (0.1ms) BEGIN [shard 1744 master]
226919
+  (0.1ms) ROLLBACK [shard 1744 master]
226920
+  (0.1ms) ROLLBACK [shard 1742 master]
226921
+  (0.0ms) BEGIN [shard 1742 master]
226922
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226923
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226924
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226925
+  (0.1ms) BEGIN [shard 1744 master]
226926
+  (0.1ms) ROLLBACK [shard 1744 master]
226927
+  (0.1ms) ROLLBACK [shard 1742 master]
226928
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
226929
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226930
+  (0.1ms) BEGIN [shard 1742 master]
226931
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226932
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226933
+  (0.3ms) COMMIT [shard 1742 master]
226934
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226935
+  (0.1ms) BEGIN [shard 1742 master]
226936
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226937
+  (0.3ms) COMMIT [shard 1742 master]
226938
+  (0.0ms) BEGIN [shard 1742 master]
226939
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226940
+  (0.3ms) COMMIT [shard 1742 master]
226941
+  (0.0ms) BEGIN [shard 1742 master]
226942
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226943
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226944
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226945
+  (0.0ms) BEGIN [shard 1744 master]
226946
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226947
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226948
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226949
+  (0.1ms) ROLLBACK [shard 1744 master]
226950
+  (0.1ms) ROLLBACK [shard 1743 master]
226951
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
226952
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226953
+  (0.1ms) BEGIN [shard 1742 master]
226954
+  (0.1ms) ROLLBACK [shard 1742 master]
226955
+  (0.1ms) BEGIN [shard 1742 master]
226956
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226957
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226958
+  (0.3ms) COMMIT [shard 1742 master]
226959
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226960
+  (0.1ms) BEGIN [shard 1742 master]
226961
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226962
+  (0.3ms) COMMIT [shard 1742 master]
226963
+  (0.1ms) BEGIN [shard 1742 master]
226964
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226965
+  (0.2ms) COMMIT [shard 1742 master]
226966
+  (0.1ms) BEGIN [shard 1742 master]
226967
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226968
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226969
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226970
+  (0.0ms) BEGIN [shard 1744 master]
226971
+  (0.0ms) ROLLBACK [shard 1744 master]
226972
+  (0.1ms) ROLLBACK [shard 1742 master]
226973
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1742 master]
226974
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226975
+  (0.1ms) BEGIN [shard 1742 master]
226976
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226977
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
226978
+  (0.3ms) COMMIT [shard 1742 master]
226979
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226980
+  (0.0ms) BEGIN [shard 1742 master]
226981
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
226982
+  (0.2ms) COMMIT [shard 1742 master]
226983
+  (0.1ms) BEGIN [shard 1742 master]
226984
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
226985
+  (0.3ms) COMMIT [shard 1742 master]
226986
+  (0.1ms) BEGIN [shard 1742 master]
226987
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
226988
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
226989
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
226990
+  (0.0ms) BEGIN [shard 1744 master]
226991
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
226992
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
226993
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
226994
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
226995
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (77) LIMIT 1 [shard 1743 master]
226996
+  (0.1ms) ROLLBACK [shard 1744 master]
226997
+  (0.1ms) ROLLBACK [shard 1743 master]
226998
+  (0.0ms) BEGIN [shard 1742 master]
226999
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227000
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227001
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227002
+  (0.0ms) BEGIN [shard 1744 master]
227003
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
227004
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
227005
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227006
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 78 LIMIT 1 [shard 1743 master]
227007
+  (0.1ms) ROLLBACK [shard 1744 master]
227008
+  (0.1ms) ROLLBACK [shard 1743 master]
227009
+  (0.1ms) BEGIN [shard 1742 master]
227010
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227011
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227012
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227013
+  (0.1ms) BEGIN [shard 1744 master]
227014
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
227015
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
227016
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227017
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
227018
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 79]] [shard 1743 master]
227019
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227020
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 17430000000000079 LIMIT 1 [shard 1743 master]
227021
+  (0.1ms) ROLLBACK [shard 1744 master]
227022
+  (0.1ms) ROLLBACK [shard 1743 master]
227023
+  (0.0ms) BEGIN [shard 1742 master]
227024
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227025
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227026
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227027
+  (0.0ms) BEGIN [shard 1744 master]
227028
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
227029
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
227030
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227031
+  (0.1ms) SAVEPOINT active_record_1 [shard 1744 master]
227032
+ SQL (1.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", "multi-shard exists"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1744 master]
227033
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1744 master]
227034
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards"  [shard 1742 master]
227035
+ User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1742 master]
227036
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1743 master]
227037
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1744 master]
227038
+  (0.1ms) ROLLBACK [shard 1744 master]
227039
+  (0.1ms) ROLLBACK [shard 1743 master]
227040
+  (0.1ms) BEGIN [shard 1742 master]
227041
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227042
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227043
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227044
+  (0.1ms) BEGIN [shard 1744 master]
227045
+  (0.1ms) SAVEPOINT active_record_1 [shard 1743 master]
227046
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
227047
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227048
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."id" = 81 LIMIT 1 [shard 1743 master]
227049
+  (0.1ms) ROLLBACK [shard 1744 master]
227050
+  (0.1ms) ROLLBACK [shard 1743 master]
227051
+  (0.0ms) BEGIN [shard 1742 master]
227052
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227053
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227054
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227055
+  (0.0ms) BEGIN [shard 1744 master]
227056
+  (0.0ms) SAVEPOINT active_record_1 [shard 1743 master]
227057
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
227058
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1743 master]
227059
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 82]] [shard 1743 master]
227060
+  (0.1ms) ROLLBACK [shard 1744 master]
227061
+  (0.1ms) ROLLBACK [shard 1743 master]
227062
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
227063
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227064
+  (0.1ms) BEGIN [shard 1742 master]
227065
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227066
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
227067
+  (0.2ms) COMMIT [shard 1742 master]
227068
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227069
+  (0.1ms) BEGIN [shard 1742 master]
227070
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
227071
+  (0.2ms) COMMIT [shard 1742 master]
227072
+  (0.0ms) BEGIN [shard 1742 master]
227073
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
227074
+  (0.2ms) COMMIT [shard 1742 master]
227075
+  (0.1ms) BEGIN [shard 1742 master]
227076
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227077
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227078
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227079
+  (0.0ms) BEGIN [shard 1744 master]
227080
+ Switchman::Shard Load (1.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<1743) OR (id>=1744 AND id<1745)) ORDER BY id [shard 1742 master]
227081
+  (0.1ms) ROLLBACK [shard 1744 master]
227082
+  (0.1ms) ROLLBACK [shard 1742 master]
227083
+  (0.0ms) BEGIN [shard 1742 master]
227084
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227085
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227086
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227087
+  (0.0ms) BEGIN [shard 1744 master]
227088
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<1743)) [shard 1742 master]
227089
+  (0.0ms) ROLLBACK [shard 1744 master]
227090
+  (0.0ms) ROLLBACK [shard 1742 master]
227091
+  (0.1ms) BEGIN [shard 1742 master]
227092
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227093
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227094
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227095
+  (0.1ms) BEGIN [shard 1744 master]
227096
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ('f') [shard 1742 master]
227097
+  (0.1ms) ROLLBACK [shard 1744 master]
227098
+  (0.1ms) ROLLBACK [shard 1742 master]
227099
+  (0.0ms) BEGIN [shard 1742 master]
227100
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227101
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227102
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227103
+  (0.0ms) BEGIN [shard 1744 master]
227104
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<=1743)) AND (id NOT IN (1742)) [shard 1742 master]
227105
+  (0.1ms) ROLLBACK [shard 1744 master]
227106
+  (0.1ms) ROLLBACK [shard 1742 master]
227107
+  (0.0ms) BEGIN [shard 1742 master]
227108
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227109
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227110
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227111
+  (0.0ms) BEGIN [shard 1744 master]
227112
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1742)) [shard 1742 master]
227113
+  (0.1ms) SELECT COUNT(*) FROM "switchman_shards" [shard 1742 master]
227114
+  (0.0ms) ROLLBACK [shard 1744 master]
227115
+  (0.0ms) ROLLBACK [shard 1742 master]
227116
+  (0.1ms) BEGIN [shard 1742 master]
227117
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227118
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227119
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227120
+  (0.0ms) BEGIN [shard 1744 master]
227121
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1743 AND id<=1743)) AND (id NOT IN (1742)) [shard 1742 master]
227122
+  (0.1ms) ROLLBACK [shard 1744 master]
227123
+  (0.1ms) ROLLBACK [shard 1742 master]
227124
+  (0.0ms) BEGIN [shard 1742 master]
227125
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227126
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227127
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227128
+  (0.0ms) BEGIN [shard 1744 master]
227129
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id<=1743)) ORDER BY id [shard 1742 master]
227130
+  (0.1ms) ROLLBACK [shard 1744 master]
227131
+  (0.1ms) ROLLBACK [shard 1742 master]
227132
+  (0.1ms) BEGIN [shard 1742 master]
227133
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227134
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227135
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227136
+  (0.0ms) BEGIN [shard 1744 master]
227137
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1742)) [shard 1742 master]
227138
+  (0.1ms) ROLLBACK [shard 1744 master]
227139
+  (0.1ms) ROLLBACK [shard 1742 master]
227140
+  (0.1ms) BEGIN [shard 1742 master]
227141
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227142
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227143
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227144
+  (0.1ms) BEGIN [shard 1744 master]
227145
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (1742)) [shard 1742 master]
227146
+  (0.1ms) ROLLBACK [shard 1744 master]
227147
+  (0.1ms) ROLLBACK [shard 1742 master]
227148
+  (0.0ms) BEGIN [shard 1742 master]
227149
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227150
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227151
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227152
+  (0.0ms) BEGIN [shard 1744 master]
227153
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1743)) ORDER BY id [shard 1742 master]
227154
+  (0.1ms) ROLLBACK [shard 1744 master]
227155
+  (0.1ms) ROLLBACK [shard 1742 master]
227156
+  (0.0ms) BEGIN [shard 1742 master]
227157
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227158
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
227159
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
227160
+  (0.0ms) BEGIN [shard 1744 master]
227161
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<=1743)) ORDER BY id [shard 1742 master]
227162
+  (0.0ms) ROLLBACK [shard 1744 master]
227163
+  (0.0ms) ROLLBACK [shard 1742 master]
227164
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1742 master]
227165
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
227166
+  (6.2ms) DROP SCHEMA switchman_test_shard_1743 CASCADE [shard 1743 deploy]
227167
+  (0.1ms) BEGIN
227168
+ SQL (0.3ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1743]]
227169
+  (0.1ms) COMMIT
227170
+  (6.1ms) DROP SCHEMA switchman_test_shard_1744 CASCADE [shard 1744 deploy]
227171
+  (0.2ms) BEGIN
227172
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1744]]
227173
+  (0.1ms) COMMIT