switchman 1.2.31 → 1.2.32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 53cd4e7fcce2f4407fe0949804d90639a512c995
4
- data.tar.gz: ce3c82b47b980fd7f6ec7cd6b5dfd11780b2c915
3
+ metadata.gz: d8b6039fc60b8a5db9ef9281e88c08877f7e1d26
4
+ data.tar.gz: 91f66cda658940618dcdb0da4629cbc8a7f17efc
5
5
  SHA512:
6
- metadata.gz: b5beda385f90fba2690e06f03c290721036fc6052f4606b660db51902ede7f6d6135c10309f50412abab80c6d91ce8a85943f2813c1add35812675a61d9246f6
7
- data.tar.gz: 48f1fbb16e4ffa1a63bc07ed6d0faf83f4d3eba59d9a2361da775a351fd705b219bc9a638d89e96d030ca2f6b31a246ecd4b86630258612b1d460f47ec6222f4
6
+ metadata.gz: 647c24616377cff9c9d3f5fcbc57186ae5886ce04d3a6297fbcd27990f1bba8211ba5acb0db20eaf9bfb3fa13a4f88837fea10eda4b985e4652c896d2ba90cbc
7
+ data.tar.gz: 3a87e1c36cd2a001029ac5aae33a7dcd6cda63028c152e9191248d2517c2de888632f003286831cf2001b81a3daf8cebdfaea3f58333486baccbb4492a4974e4
@@ -226,6 +226,7 @@ module Switchman
226
226
  rescue
227
227
  shard.destroy
228
228
  shard.drop_database if shard.name == name rescue nil
229
+ reset_column_information
229
230
  raise
230
231
  end
231
232
  end
@@ -1,3 +1,3 @@
1
1
  module Switchman
2
- VERSION = "1.2.31"
2
+ VERSION = "1.2.32"
3
3
  end
Binary file
@@ -240966,3 +240966,3560 @@ Migrating to CreateRoots (20140219183820)
240966
240966
   (0.2ms) BEGIN
240967
240967
  SQL (0.5ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 83]]
240968
240968
   (0.2ms) COMMIT
240969
+ Connecting to database specified by database.yml
240970
+  (0.5ms) SELECT * FROM unnest(current_schemas(false))
240971
+ Switchman::Shard Load (6.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
240972
+ SQL (0.8ms) DELETE FROM "switchman_shards"
240973
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
240974
+  (0.2ms) BEGIN
240975
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
240976
+ SQL (0.5ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", nil], ["default", true], ["name", nil]]
240977
+  (0.4ms) COMMIT
240978
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
240979
+ Switchman::Shard Load (0.8ms) 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
240980
+  (0.1ms) BEGIN
240981
+ 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"]]
240982
+  (0.4ms) CREATE SCHEMA switchman_test_shard_105 [shard 105 deploy]
240983
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 deploy]
240984
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 105 deploy]
240985
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 105 deploy]
240986
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 105 deploy]
240987
+ Migrating to CreateSwitchmanShards (20130328212039)
240988
+  (3.2ms) CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL) [shard 105 deploy]
240989
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 105 deploy]
240990
+ Migrating to CreateDefaultShard (20130328224244)
240991
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 105 deploy]
240992
+ Migrating to CreateUsers (20130403132607)
240993
+  (1.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 105 deploy]
240994
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 105 deploy]
240995
+ Migrating to CreateAppendages (20130411202442)
240996
+  (1.6ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  [shard 105 deploy]
240997
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 105 deploy]
240998
+ Migrating to CreateMirrorUsers (20130411202551)
240999
+  (1.9ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  [shard 105 deploy]
241000
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 105 deploy]
241001
+ Migrating to CreateDigits (20131022202028)
241002
+  (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 105 deploy]
241003
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 105 deploy]
241004
+ Migrating to CreateFeatures (20131206172923)
241005
+  (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 105 deploy]
241006
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 105 deploy]
241007
+ Migrating to AddParentIdToUsers (20140123154135)
241008
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 105 deploy]
241009
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 105 deploy]
241010
+ Migrating to CreateRoots (20140219183820)
241011
+  (1.9ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  [shard 105 deploy]
241012
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 105 deploy]
241013
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 deploy]
241014
+  (0.3ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_105' WHERE "switchman_shards"."id" = 105 [shard 104 master]
241015
+  (1.1ms) COMMIT [shard 104 master]
241016
+ Switchman::Shard Load (0.6ms) 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 104 master]
241017
+  (0.1ms) BEGIN [shard 104 master]
241018
+ 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", "public"]] [shard 104 master]
241019
+  (0.2ms) COMMIT [shard 104 master]
241020
+  (0.5ms) CREATE SCHEMA switchman_test_shard_106 [shard 106 deploy]
241021
+  (0.1ms) BEGIN [shard 106 deploy]
241022
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [shard 106 deploy]
241023
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 106 deploy]
241024
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 106 deploy]
241025
+ Migrating to CreateSwitchmanShards (20130328212039)
241026
+  (3.0ms) CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL)  [shard 106 deploy]
241027
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 106 deploy]
241028
+ Migrating to CreateDefaultShard (20130328224244)
241029
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 106 deploy]
241030
+ Migrating to CreateUsers (20130403132607)
241031
+  (1.9ms) 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 106 deploy]
241032
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 106 deploy]
241033
+ Migrating to CreateAppendages (20130411202442)
241034
+  (2.2ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 106 deploy]
241035
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 106 deploy]
241036
+ Migrating to CreateMirrorUsers (20130411202551)
241037
+  (1.7ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 106 deploy]
241038
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 106 deploy]
241039
+ Migrating to CreateDigits (20131022202028)
241040
+  (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 106 deploy]
241041
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 106 deploy]
241042
+ Migrating to CreateFeatures (20131206172923)
241043
+  (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 106 deploy]
241044
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 106 deploy]
241045
+ Migrating to AddParentIdToUsers (20140123154135)
241046
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 106 deploy]
241047
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 106 deploy]
241048
+ Migrating to CreateRoots (20140219183820)
241049
+  (1.9ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 106 deploy]
241050
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 106 deploy]
241051
+  (0.8ms) COMMIT [shard 106 deploy]
241052
+  (0.1ms) BEGIN [shard 104 master]
241053
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_106' WHERE "switchman_shards"."id" = 106 [shard 104 master]
241054
+  (0.3ms) COMMIT [shard 104 master]
241055
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
241056
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241057
+  (0.1ms) BEGIN [shard 104 master]
241058
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241059
+ 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", 104], ["name", nil]] [shard 104 master]
241060
+  (0.2ms) COMMIT [shard 104 master]
241061
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241062
+  (0.0ms) BEGIN [shard 104 master]
241063
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241064
+  (0.2ms) COMMIT [shard 104 master]
241065
+  (0.1ms) BEGIN [shard 104 master]
241066
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241067
+  (0.2ms) COMMIT [shard 104 master]
241068
+  (0.1ms) BEGIN [shard 104 master]
241069
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241070
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241071
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241072
+  (0.1ms) BEGIN [shard 106 master]
241073
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241074
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241075
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241076
+  (0.1ms) ROLLBACK [shard 106 master]
241077
+  (0.1ms) ROLLBACK [shard 104 master]
241078
+  (0.1ms) BEGIN [shard 104 master]
241079
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241080
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241081
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241082
+  (0.0ms) BEGIN [shard 106 master]
241083
+  (0.1ms) ROLLBACK [shard 106 master]
241084
+  (0.1ms) ROLLBACK [shard 104 master]
241085
+  (0.0ms) BEGIN [shard 104 master]
241086
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241087
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241088
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241089
+  (0.1ms) BEGIN [shard 106 master]
241090
+  (0.1ms) ROLLBACK [shard 106 master]
241091
+  (0.1ms) ROLLBACK [shard 104 master]
241092
+  (0.1ms) BEGIN [shard 104 master]
241093
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241094
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241095
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241096
+  (0.0ms) BEGIN [shard 106 master]
241097
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241098
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "2"], ["default", false], ["name", nil]] [shard 104 master]
241099
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241100
+  (0.1ms) ROLLBACK [shard 106 master]
241101
+  (0.1ms) ROLLBACK [shard 104 master]
241102
+  (0.1ms) BEGIN [shard 104 master]
241103
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241104
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241105
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241106
+  (0.1ms) BEGIN [shard 106 master]
241107
+  (0.1ms) ROLLBACK [shard 106 master]
241108
+  (0.1ms) ROLLBACK [shard 104 master]
241109
+  (0.1ms) BEGIN [shard 104 master]
241110
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241111
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241112
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241113
+  (0.1ms) BEGIN [shard 106 master]
241114
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241115
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "3"], ["default", false], ["name", nil]] [shard 104 master]
241116
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241117
+  (0.1ms) ROLLBACK [shard 106 master]
241118
+  (0.1ms) ROLLBACK [shard 104 master]
241119
+  (0.0ms) BEGIN [shard 104 master]
241120
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241121
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241122
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241123
+  (0.0ms) BEGIN [shard 106 master]
241124
+  (0.1ms) ROLLBACK [shard 106 master]
241125
+  (0.1ms) ROLLBACK [shard 104 master]
241126
+ SQL (1.0ms) DELETE FROM "switchman_shards" [shard 104 master]
241127
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241128
+  (0.1ms) BEGIN [shard 104 master]
241129
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241130
+ 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", 104], ["name", nil]] [shard 104 master]
241131
+  (0.3ms) COMMIT [shard 104 master]
241132
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241133
+  (0.0ms) BEGIN [shard 104 master]
241134
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241135
+  (0.2ms) COMMIT [shard 104 master]
241136
+  (0.0ms) BEGIN [shard 104 master]
241137
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241138
+  (0.2ms) COMMIT [shard 104 master]
241139
+  (0.1ms) BEGIN [shard 104 master]
241140
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241141
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241142
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241143
+  (0.1ms) BEGIN [shard 106 master]
241144
+  (0.1ms) ROLLBACK [shard 106 master]
241145
+  (0.1ms) ROLLBACK [shard 104 master]
241146
+  (0.1ms) BEGIN [shard 104 master]
241147
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241148
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241149
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241150
+  (0.1ms) BEGIN [shard 106 master]
241151
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241152
+ SQL (0.9ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", nil]] [shard 104 master]
241153
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241154
+ MirrorUser Load (0.6ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 5]] [shard 104 master]
241155
+ MirrorUser Load (0.1ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 5]] [shard 104 master]
241156
+ MirrorUser Load (0.6ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = 5 LIMIT 1 [shard 105 master]
241157
+  (0.1ms) ROLLBACK [shard 106 master]
241158
+  (0.1ms) ROLLBACK [shard 105 master]
241159
+  (0.1ms) BEGIN [shard 104 master]
241160
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241161
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241162
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241163
+  (0.1ms) BEGIN [shard 106 master]
241164
+  (0.1ms) ROLLBACK [shard 106 master]
241165
+  (0.1ms) ROLLBACK [shard 104 master]
241166
+  (0.1ms) BEGIN [shard 104 master]
241167
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241168
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241169
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241170
+  (0.1ms) BEGIN [shard 106 master]
241171
+  (0.0ms) ROLLBACK [shard 106 master]
241172
+  (0.1ms) ROLLBACK [shard 104 master]
241173
+ SQL (6.1ms) DELETE FROM "switchman_shards" [shard 104 master]
241174
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241175
+  (0.1ms) BEGIN [shard 104 master]
241176
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241177
+ 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", 104], ["name", nil]] [shard 104 master]
241178
+  (4.9ms) COMMIT [shard 104 master]
241179
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241180
+  (0.1ms) BEGIN [shard 104 master]
241181
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241182
+  (0.3ms) COMMIT [shard 104 master]
241183
+  (0.1ms) BEGIN [shard 104 master]
241184
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241185
+  (0.3ms) COMMIT [shard 104 master]
241186
+  (0.0ms) BEGIN [shard 104 master]
241187
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241188
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241189
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241190
+  (0.0ms) BEGIN [shard 106 master]
241191
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241192
+ SQL (0.5ms) INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", nil]] [shard 104 master]
241193
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241194
+  (0.1ms) ROLLBACK [shard 106 master]
241195
+  (0.1ms) ROLLBACK [shard 104 master]
241196
+  (0.1ms) BEGIN [shard 104 master]
241197
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241198
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241199
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241200
+  (0.1ms) BEGIN [shard 106 master]
241201
+  (0.1ms) ROLLBACK [shard 106 master]
241202
+  (0.1ms) ROLLBACK [shard 104 master]
241203
+  (0.0ms) BEGIN [shard 104 master]
241204
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241205
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241206
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241207
+  (0.0ms) BEGIN [shard 106 master]
241208
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241209
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241210
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241211
+  (0.1ms) ROLLBACK [shard 106 master]
241212
+  (0.1ms) ROLLBACK [shard 104 master]
241213
+  (0.1ms) BEGIN [shard 104 master]
241214
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241215
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241216
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241217
+  (0.0ms) BEGIN [shard 106 master]
241218
+  (0.0ms) ROLLBACK [shard 106 master]
241219
+  (0.0ms) ROLLBACK [shard 104 master]
241220
+  (0.0ms) BEGIN [shard 104 master]
241221
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241222
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241223
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241224
+  (0.0ms) BEGIN [shard 106 master]
241225
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241226
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241227
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241228
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
241229
+  (0.1ms) ROLLBACK [shard 106 master]
241230
+  (0.1ms) ROLLBACK [shard 104 master]
241231
+  (0.1ms) BEGIN [shard 104 master]
241232
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241233
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241234
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241235
+  (0.0ms) BEGIN [shard 106 master]
241236
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241237
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241238
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241239
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241240
+ SQL (0.6ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 105 master]
241241
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241242
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241243
+ SQL (1.6ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 106 master]
241244
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241245
+  (0.1ms) ROLLBACK [shard 106 master]
241246
+  (0.1ms) ROLLBACK [shard 105 master]
241247
+  (0.1ms) BEGIN [shard 104 master]
241248
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241249
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241250
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241251
+  (0.1ms) BEGIN [shard 106 master]
241252
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241253
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241254
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241255
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241256
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241257
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241258
+  (0.1ms) ROLLBACK [shard 106 master]
241259
+  (0.1ms) ROLLBACK [shard 105 master]
241260
+  (0.1ms) BEGIN [shard 104 master]
241261
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241262
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241263
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241264
+  (0.1ms) BEGIN [shard 106 master]
241265
+  (0.1ms) ROLLBACK [shard 106 master]
241266
+  (0.1ms) ROLLBACK [shard 104 master]
241267
+ SQL (4.9ms) DELETE FROM "switchman_shards" [shard 104 master]
241268
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241269
+  (0.1ms) BEGIN [shard 104 master]
241270
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241271
+ SQL (0.4ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "4"], ["default", false], ["name", "non_existent_shard"]] [shard 104 master]
241272
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241273
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241274
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "4"], ["default", false], ["name", nil]] [shard 104 master]
241275
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241276
+  (0.4ms) SELECT COUNT(*) FROM "users"  [shard 109 master]
241277
+ PG::UndefinedTable: ERROR: relation "users" does not exist
241278
+ LINE 1: SELECT COUNT(*) FROM "users"
241279
+ ^
241280
+ : SELECT COUNT(*) FROM "users"
241281
+  (1.0ms) SELECT COUNT(*) FROM "users" [shard 110 master]
241282
+  (0.1ms) ROLLBACK [shard 104 master]
241283
+  (0.1ms) BEGIN [shard 104 master]
241284
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241285
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "5"], ["default", false], ["name", nil]] [shard 104 master]
241286
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241287
+  (0.1ms) ROLLBACK [shard 104 master]
241288
+  (0.1ms) BEGIN [shard 104 master]
241289
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241290
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "6"], ["default", false], ["name", nil]] [shard 104 master]
241291
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241292
+  (0.1ms) ROLLBACK [shard 104 master]
241293
+  (0.1ms) BEGIN [shard 104 master]
241294
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241295
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "7"], ["default", false], ["name", nil]] [shard 104 master]
241296
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241297
+  (0.1ms) ROLLBACK [shard 104 master]
241298
+  (0.1ms) BEGIN [shard 104 master]
241299
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241300
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "8"], ["default", false], ["name", nil]] [shard 104 master]
241301
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241302
+  (0.1ms) ROLLBACK [shard 104 master]
241303
+  (0.0ms) BEGIN [shard 104 master]
241304
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241305
+ 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 104 master]
241306
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241307
+  (0.1ms) ROLLBACK [shard 104 master]
241308
+  (0.0ms) BEGIN [shard 104 master]
241309
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241310
+ 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 104 master]
241311
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241312
+  (0.0ms) ROLLBACK [shard 104 master]
241313
+  (0.0ms) BEGIN [shard 104 master]
241314
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241315
+ 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", 104], ["name", nil]] [shard 104 master]
241316
+  (0.4ms) COMMIT [shard 104 master]
241317
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241318
+  (0.1ms) BEGIN [shard 104 master]
241319
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241320
+  (0.3ms) COMMIT [shard 104 master]
241321
+  (0.0ms) BEGIN [shard 104 master]
241322
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241323
+  (0.3ms) COMMIT [shard 104 master]
241324
+  (0.0ms) BEGIN [shard 104 master]
241325
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241326
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241327
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241328
+  (0.0ms) BEGIN [shard 106 master]
241329
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241330
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241331
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241332
+  (0.1ms) ROLLBACK [shard 106 master]
241333
+  (0.1ms) ROLLBACK [shard 105 master]
241334
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
241335
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241336
+  (0.1ms) BEGIN [shard 104 master]
241337
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241338
+ 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", 104], ["name", nil]] [shard 104 master]
241339
+  (0.3ms) COMMIT [shard 104 master]
241340
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241341
+  (0.1ms) BEGIN [shard 104 master]
241342
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241343
+  (0.3ms) COMMIT [shard 104 master]
241344
+  (0.1ms) BEGIN [shard 104 master]
241345
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241346
+  (0.2ms) COMMIT [shard 104 master]
241347
+  (0.0ms) BEGIN [shard 104 master]
241348
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241349
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241350
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241351
+  (0.1ms) BEGIN [shard 106 master]
241352
+  (0.1ms) ROLLBACK [shard 106 master]
241353
+  (0.1ms) ROLLBACK [shard 104 master]
241354
+  (0.0ms) BEGIN [shard 104 master]
241355
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241356
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241357
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241358
+  (0.0ms) BEGIN [shard 106 master]
241359
+  (0.0ms) ROLLBACK [shard 106 master]
241360
+  (0.0ms) ROLLBACK [shard 104 master]
241361
+  (0.0ms) BEGIN [shard 104 master]
241362
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241363
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241364
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241365
+  (0.0ms) BEGIN [shard 106 master]
241366
+  (0.0ms) ROLLBACK [shard 106 master]
241367
+  (0.0ms) ROLLBACK [shard 104 master]
241368
+  (0.1ms) BEGIN [shard 104 master]
241369
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241370
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241371
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241372
+  (0.0ms) BEGIN [shard 106 master]
241373
+  (0.0ms) ROLLBACK [shard 106 master]
241374
+  (0.0ms) ROLLBACK [shard 104 master]
241375
+  (0.0ms) BEGIN [shard 104 master]
241376
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241377
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241378
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241379
+  (0.0ms) BEGIN [shard 106 master]
241380
+  (0.0ms) ROLLBACK [shard 106 master]
241381
+  (0.0ms) ROLLBACK [shard 104 master]
241382
+  (0.0ms) BEGIN [shard 104 master]
241383
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241384
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241385
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241386
+  (0.0ms) BEGIN [shard 106 master]
241387
+  (0.0ms) ROLLBACK [shard 106 master]
241388
+  (0.0ms) ROLLBACK [shard 104 master]
241389
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
241390
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241391
+  (0.0ms) BEGIN [shard 104 master]
241392
+  (0.1ms) ROLLBACK [shard 104 master]
241393
+  (0.1ms) BEGIN [shard 104 master]
241394
+  (0.1ms) ROLLBACK [shard 104 master]
241395
+  (0.1ms) BEGIN [shard 104 master]
241396
+  (0.0ms) ROLLBACK [shard 104 master]
241397
+  (0.0ms) BEGIN [shard 104 master]
241398
+  (0.1ms) ROLLBACK [shard 104 master]
241399
+  (0.1ms) BEGIN [shard 104 master]
241400
+  (0.0ms) ROLLBACK [shard 104 master]
241401
+  (0.0ms) BEGIN [shard 104 master]
241402
+  (0.0ms) ROLLBACK [shard 104 master]
241403
+  (0.0ms) BEGIN [shard 104 master]
241404
+  (0.0ms) ROLLBACK [shard 104 master]
241405
+  (0.0ms) BEGIN [shard 104 master]
241406
+  (0.0ms) ROLLBACK [shard 104 master]
241407
+  (0.0ms) BEGIN [shard 104 master]
241408
+  (0.0ms) ROLLBACK [shard 104 master]
241409
+  (0.0ms) BEGIN [shard 104 master]
241410
+  (0.0ms) ROLLBACK [shard 104 master]
241411
+  (0.0ms) BEGIN [shard 104 master]
241412
+  (0.1ms) ROLLBACK [shard 104 master]
241413
+  (0.1ms) BEGIN [shard 104 master]
241414
+  (0.0ms) ROLLBACK [shard 104 master]
241415
+  (0.0ms) BEGIN [shard 104 master]
241416
+  (0.0ms) ROLLBACK [shard 104 master]
241417
+  (0.0ms) BEGIN [shard 104 master]
241418
+  (0.0ms) ROLLBACK [shard 104 master]
241419
+  (0.0ms) BEGIN [shard 104 master]
241420
+  (0.0ms) ROLLBACK [shard 104 master]
241421
+  (0.0ms) BEGIN [shard 104 master]
241422
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241423
+ 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", 104], ["name", nil]] [shard 104 master]
241424
+  (6.1ms) COMMIT [shard 104 master]
241425
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241426
+  (0.1ms) BEGIN [shard 104 master]
241427
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241428
+  (5.9ms) COMMIT [shard 104 master]
241429
+  (0.1ms) BEGIN [shard 104 master]
241430
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241431
+  (0.3ms) COMMIT [shard 104 master]
241432
+  (0.0ms) BEGIN [shard 104 master]
241433
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241434
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241435
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241436
+  (0.0ms) BEGIN [shard 106 master]
241437
+ Switchman::Shard Load (0.6ms) 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 104 master]
241438
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241439
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 104 master]
241440
+  (0.1ms) ROLLBACK [shard 106 master]
241441
+  (0.1ms) ROLLBACK [shard 104 master]
241442
+  (0.1ms) BEGIN [shard 104 master]
241443
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241444
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241445
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241446
+  (0.0ms) BEGIN [shard 106 master]
241447
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '25' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 104 master]
241448
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241449
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "25"], ["default", false], ["name", nil]] [shard 104 master]
241450
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241451
+  (0.0ms) select sqlite_version(*) [shard 117 deploy]
241452
+  (0.0ms) begin transaction [shard 117 deploy]
241453
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [shard 117 deploy]
241454
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 117 deploy]
241455
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 117 deploy]
241456
+ Migrating to CreateSwitchmanShards (20130328212039)
241457
+  (0.2ms) CREATE TABLE "switchman_shards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "database_server_id" varchar(255), "default" boolean DEFAULT 'f' NOT NULL)  [shard 117 deploy]
241458
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 117 deploy]
241459
+ Migrating to CreateDefaultShard (20130328224244)
241460
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 117 deploy]
241461
+ Migrating to CreateUsers (20130403132607)
241462
+  (0.1ms) 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 117 deploy]
241463
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 117 deploy]
241464
+ Migrating to CreateAppendages (20130411202442)
241465
+  (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 117 deploy]
241466
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 117 deploy]
241467
+ Migrating to CreateMirrorUsers (20130411202551)
241468
+  (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 117 deploy]
241469
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 117 deploy]
241470
+ Migrating to CreateDigits (20131022202028)
241471
+  (0.2ms) 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 117 deploy]
241472
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 117 deploy]
241473
+ Migrating to CreateFeatures (20131206172923)
241474
+  (0.1ms) 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 117 deploy]
241475
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 117 deploy]
241476
+ Migrating to AddParentIdToUsers (20140123154135)
241477
+  (0.1ms) ALTER TABLE "users" ADD "parent_id" integer(8) [shard 117 deploy]
241478
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 117 deploy]
241479
+ Migrating to CreateRoots (20140219183820)
241480
+  (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 117 deploy]
241481
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 117 deploy]
241482
+  (1.2ms) commit transaction [shard 117 deploy]
241483
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241484
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'db/shard_117.sqlite3' WHERE "switchman_shards"."id" = 117 [shard 104 master]
241485
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241486
+  (0.0ms) begin transaction [shard 117 master]
241487
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 117 master]
241488
+  (0.6ms) commit transaction [shard 117 master]
241489
+ Drop failed: No such file or directory @ unlink_internal - db/shard_117.sqlite3
241490
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241491
+ SQL (0.3ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 117]] [shard 104 master]
241492
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241493
+  (0.1ms) ROLLBACK [shard 106 master]
241494
+  (0.1ms) ROLLBACK [shard 104 master]
241495
+  (0.1ms) BEGIN [shard 104 master]
241496
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241497
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241498
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241499
+  (0.0ms) BEGIN [shard 106 master]
241500
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '26' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 104 master]
241501
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241502
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "26"], ["default", false], ["name", "public"]] [shard 104 master]
241503
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241504
+  (6.4ms) CREATE SCHEMA switchman_test_shard_118 [shard 118 deploy]
241505
+  (0.1ms) BEGIN [shard 118 deploy]
241506
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 118 deploy]
241507
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 118 deploy]
241508
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  [shard 118 deploy]
241509
+ Migrating to CreateSwitchmanShards (20130328212039)
241510
+  (3.6ms) CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL) [shard 118 deploy]
241511
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 118 deploy]
241512
+ Migrating to CreateDefaultShard (20130328224244)
241513
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 118 deploy]
241514
+ Migrating to CreateUsers (20130403132607)
241515
+  (2.0ms) 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 118 deploy]
241516
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 118 deploy]
241517
+ Migrating to CreateAppendages (20130411202442)
241518
+  (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 118 deploy]
241519
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 118 deploy]
241520
+ Migrating to CreateMirrorUsers (20130411202551)
241521
+  (2.0ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  [shard 118 deploy]
241522
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 118 deploy]
241523
+ Migrating to CreateDigits (20131022202028)
241524
+  (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 118 deploy]
241525
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 118 deploy]
241526
+ Migrating to CreateFeatures (20131206172923)
241527
+  (1.7ms) 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 118 deploy]
241528
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 118 deploy]
241529
+ Migrating to AddParentIdToUsers (20140123154135)
241530
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 118 deploy]
241531
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 118 deploy]
241532
+ Migrating to CreateRoots (20140219183820)
241533
+  (2.1ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  [shard 118 deploy]
241534
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 118 deploy]
241535
+  (0.7ms) COMMIT [shard 118 deploy]
241536
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241537
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_118' WHERE "switchman_shards"."id" = 118 [shard 104 master]
241538
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241539
+  (0.1ms) BEGIN [shard 118 master]
241540
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 118 master]
241541
+  (0.2ms) COMMIT [shard 118 master]
241542
+  (5.4ms) DROP SCHEMA switchman_test_shard_118 CASCADE [shard 118 deploy]
241543
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241544
+ SQL (0.4ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 118]] [shard 104 master]
241545
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241546
+  (0.1ms) ROLLBACK [shard 106 master]
241547
+  (0.1ms) ROLLBACK [shard 104 master]
241548
+  (0.1ms) BEGIN [shard 104 master]
241549
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241550
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241551
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241552
+  (0.0ms) BEGIN [shard 106 master]
241553
+ Switchman::Shard Load (0.2ms) 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 104 master]
241554
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241555
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["default", false], ["name", "public"]] [shard 104 master]
241556
+  (0.3ms) CREATE SCHEMA switchman_test_shard_119 [shard 119 deploy]
241557
+  (0.1ms) SAVEPOINT active_record_2 [shard 119 deploy]
241558
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [shard 119 deploy]
241559
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 119 deploy]
241560
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 119 deploy]
241561
+ Migrating to CreateSwitchmanShards (20130328212039)
241562
+  (2.7ms) CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL)  [shard 119 deploy]
241563
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 119 deploy]
241564
+ Migrating to CreateDefaultShard (20130328224244)
241565
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 119 deploy]
241566
+ Migrating to CreateUsers (20130403132607)
241567
+  (2.4ms) 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 119 deploy]
241568
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 119 deploy]
241569
+ Migrating to CreateAppendages (20130411202442)
241570
+  (2.0ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 119 deploy]
241571
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 119 deploy]
241572
+ Migrating to CreateMirrorUsers (20130411202551)
241573
+  (7.3ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 119 deploy]
241574
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 119 deploy]
241575
+ Migrating to CreateDigits (20131022202028)
241576
+  (7.7ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 119 deploy]
241577
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 119 deploy]
241578
+ Migrating to CreateFeatures (20131206172923)
241579
+  (7.0ms) 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 119 deploy]
241580
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 119 deploy]
241581
+ Migrating to AddParentIdToUsers (20140123154135)
241582
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 119 deploy]
241583
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 119 deploy]
241584
+ Migrating to CreateRoots (20140219183820)
241585
+  (2.0ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 119 deploy]
241586
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 119 deploy]
241587
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 119 deploy]
241588
+  (0.2ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_119' WHERE "switchman_shards"."id" = 119 [shard 104 master]
241589
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241590
+  (0.1ms) SAVEPOINT active_record_1 [shard 119 master]
241591
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 119 master]
241592
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 119 master]
241593
+  (3.4ms) DROP SCHEMA switchman_test_shard_119 CASCADE [shard 119 deploy]
241594
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241595
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 119]] [shard 104 master]
241596
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241597
+  (0.1ms) ROLLBACK [shard 106 master]
241598
+  (2.0ms) ROLLBACK [shard 104 master]
241599
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
241600
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241601
+  (0.1ms) BEGIN [shard 104 master]
241602
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241603
+ 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", 104], ["name", nil]] [shard 104 master]
241604
+  (0.3ms) COMMIT [shard 104 master]
241605
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241606
+  (0.1ms) BEGIN [shard 104 master]
241607
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
241608
+  (0.2ms) COMMIT [shard 104 master]
241609
+  (0.1ms) BEGIN [shard 104 master]
241610
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
241611
+  (0.2ms) COMMIT [shard 104 master]
241612
+  (0.1ms) BEGIN [shard 104 master]
241613
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241614
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241615
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241616
+  (0.0ms) BEGIN [shard 106 master]
241617
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241618
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241619
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241620
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241621
+ SQL (0.6ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 178], ["value", nil]] [shard 104 master]
241622
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241623
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241624
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241625
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241626
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241627
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 5], ["value", nil]] [shard 105 master]
241628
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241629
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241630
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241631
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241632
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241633
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
241634
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 1], ["value", nil]] [shard 106 master]
241635
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241636
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241637
+  (0.1ms) ROLLBACK [shard 106 master]
241638
+  (0.1ms) ROLLBACK [shard 104 master]
241639
+  (0.0ms) BEGIN [shard 104 master]
241640
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241641
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241642
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241643
+  (0.0ms) BEGIN [shard 106 master]
241644
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241645
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241646
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241647
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241648
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 179], ["value", nil]] [shard 104 master]
241649
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241650
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241651
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241652
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241653
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241654
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 6], ["value", nil]] [shard 105 master]
241655
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241656
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241657
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241658
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241659
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241660
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241661
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 2], ["value", nil]] [shard 106 master]
241662
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241663
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241664
+  (0.1ms) ROLLBACK [shard 106 master]
241665
+  (0.2ms) ROLLBACK [shard 104 master]
241666
+  (0.0ms) BEGIN [shard 104 master]
241667
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241668
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241669
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241670
+  (0.1ms) BEGIN [shard 106 master]
241671
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241672
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241673
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241674
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241675
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 180], ["value", nil]] [shard 104 master]
241676
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241677
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241678
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241679
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241680
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241681
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 7], ["value", nil]] [shard 105 master]
241682
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241683
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241684
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241685
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241686
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241687
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241688
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 3], ["value", nil]] [shard 106 master]
241689
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241690
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241691
+  (0.1ms) ROLLBACK [shard 106 master]
241692
+  (0.1ms) ROLLBACK [shard 104 master]
241693
+  (0.1ms) BEGIN [shard 104 master]
241694
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241695
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241696
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241697
+  (0.0ms) BEGIN [shard 106 master]
241698
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241699
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241700
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241701
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241702
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 181], ["value", nil]] [shard 104 master]
241703
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241704
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241705
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241706
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241707
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241708
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 8], ["value", nil]] [shard 105 master]
241709
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241710
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241711
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241712
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241713
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241714
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241715
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 4], ["value", nil]] [shard 106 master]
241716
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241717
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241718
+  (0.1ms) ROLLBACK [shard 106 master]
241719
+  (0.1ms) ROLLBACK [shard 104 master]
241720
+  (0.1ms) BEGIN [shard 104 master]
241721
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241722
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241723
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241724
+  (0.1ms) BEGIN [shard 106 master]
241725
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241726
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241727
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241728
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241729
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 182], ["value", nil]] [shard 104 master]
241730
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241731
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241732
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241733
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241734
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241735
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 9], ["value", nil]] [shard 105 master]
241736
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241737
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241738
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241739
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241740
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241741
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241742
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 5], ["value", nil]] [shard 106 master]
241743
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241744
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241745
+  (0.1ms) ROLLBACK [shard 106 master]
241746
+  (0.1ms) ROLLBACK [shard 104 master]
241747
+  (0.0ms) BEGIN [shard 104 master]
241748
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241749
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241750
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241751
+  (0.0ms) BEGIN [shard 106 master]
241752
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241753
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241754
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241755
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241756
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 183], ["value", nil]] [shard 104 master]
241757
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241758
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241759
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241760
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241761
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241762
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 10], ["value", nil]] [shard 105 master]
241763
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241764
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
241765
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241766
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241767
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241768
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241769
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 6], ["value", nil]] [shard 106 master]
241770
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241771
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241772
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241773
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 183], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241774
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241775
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241776
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 184], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241777
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241778
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 184]] [shard 104 master]
241779
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 183 LIMIT 1 [shard 104 master]
241780
+  (0.1ms) SHOW max_identifier_length [shard 104 master]
241781
+ 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" = 183 [shard 104 master]
241782
+  (0.1ms) ROLLBACK [shard 106 master]
241783
+  (0.1ms) ROLLBACK [shard 104 master]
241784
+  (0.0ms) BEGIN [shard 104 master]
241785
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241786
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241787
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241788
+  (0.1ms) BEGIN [shard 106 master]
241789
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241790
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241791
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241792
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241793
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 186], ["value", nil]] [shard 104 master]
241794
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241795
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241796
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241797
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241798
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241799
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 11], ["value", nil]] [shard 105 master]
241800
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241801
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241802
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241803
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241804
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241805
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
241806
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 7], ["value", nil]] [shard 106 master]
241807
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241808
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241809
+  (0.1ms) ROLLBACK [shard 106 master]
241810
+  (0.1ms) ROLLBACK [shard 104 master]
241811
+  (0.0ms) BEGIN [shard 104 master]
241812
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241813
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241814
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241815
+  (0.0ms) BEGIN [shard 106 master]
241816
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241817
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241818
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241819
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241820
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 187], ["value", nil]] [shard 104 master]
241821
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241822
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241823
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241824
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241825
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241826
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 12], ["value", nil]] [shard 105 master]
241827
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241828
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241829
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241830
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241831
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241832
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241833
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 8], ["value", nil]] [shard 106 master]
241834
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241835
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241836
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241837
+ SQL (0.5ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", nil]] [shard 105 master]
241838
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241839
+  (0.1ms) ROLLBACK [shard 106 master]
241840
+  (0.1ms) ROLLBACK [shard 105 master]
241841
+  (0.1ms) BEGIN [shard 104 master]
241842
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241843
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241844
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241845
+  (0.1ms) BEGIN [shard 106 master]
241846
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241847
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241848
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241849
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241850
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 188], ["value", nil]] [shard 104 master]
241851
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241852
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241853
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241854
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241855
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241856
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 105 master]
241857
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241858
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241859
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241860
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241861
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241862
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241863
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 9], ["value", nil]] [shard 106 master]
241864
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241865
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241866
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
241867
+  (0.1ms) ROLLBACK [shard 106 master]
241868
+  (0.1ms) ROLLBACK [shard 104 master]
241869
+  (0.0ms) BEGIN [shard 104 master]
241870
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241871
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241872
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241873
+  (0.0ms) BEGIN [shard 106 master]
241874
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241875
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241876
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241877
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241878
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 189], ["value", nil]] [shard 104 master]
241879
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241880
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241881
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241882
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241883
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241884
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 105 master]
241885
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241886
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241887
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241888
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241889
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241890
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241891
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 10], ["value", nil]] [shard 106 master]
241892
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241893
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241894
+  (0.1ms) ROLLBACK [shard 106 master]
241895
+  (0.1ms) ROLLBACK [shard 104 master]
241896
+  (0.0ms) BEGIN [shard 104 master]
241897
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241898
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241899
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241900
+  (0.1ms) BEGIN [shard 106 master]
241901
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241902
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241903
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241904
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241905
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 190], ["value", nil]] [shard 104 master]
241906
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241907
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241908
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241909
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241910
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241911
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 105 master]
241912
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241913
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241914
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241915
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241916
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241917
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241918
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 11], ["value", nil]] [shard 106 master]
241919
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241920
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241921
+  (0.1ms) ROLLBACK [shard 106 master]
241922
+  (0.1ms) ROLLBACK [shard 104 master]
241923
+  (0.1ms) BEGIN [shard 104 master]
241924
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241925
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241926
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241927
+  (0.1ms) BEGIN [shard 106 master]
241928
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241929
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 104 master]
241930
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241931
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241932
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 191], ["value", nil]] [shard 104 master]
241933
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241934
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
241935
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 105 master]
241936
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241937
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241938
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 105 master]
241939
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241940
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241941
+ 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", Mon, 04 May 2015 15:38:21 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00]] [shard 106 master]
241942
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241943
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241944
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241945
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:21 UTC +00:00], ["user_id", 12], ["value", nil]] [shard 106 master]
241946
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241947
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241948
+  (0.1ms) ROLLBACK [shard 106 master]
241949
+  (0.1ms) ROLLBACK [shard 104 master]
241950
+  (0.1ms) BEGIN [shard 104 master]
241951
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241952
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241953
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241954
+  (0.0ms) BEGIN [shard 106 master]
241955
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241956
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
241957
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241958
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241959
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 192], ["value", nil]] [shard 104 master]
241960
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241961
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241962
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
241963
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241964
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241965
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 17], ["value", nil]] [shard 105 master]
241966
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241967
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241968
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
241969
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241970
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241971
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241972
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 106 master]
241973
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241974
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241975
+  (0.1ms) ROLLBACK [shard 106 master]
241976
+  (0.1ms) ROLLBACK [shard 104 master]
241977
+  (0.0ms) BEGIN [shard 104 master]
241978
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
241979
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
241980
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
241981
+  (0.0ms) BEGIN [shard 106 master]
241982
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241983
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
241984
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241985
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241986
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 193], ["value", nil]] [shard 104 master]
241987
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
241988
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
241989
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
241990
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241991
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
241992
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 18], ["value", nil]] [shard 105 master]
241993
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
241994
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241995
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
241996
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
241997
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
241998
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
241999
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 106 master]
242000
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242001
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242002
+  (0.1ms) ROLLBACK [shard 106 master]
242003
+  (0.1ms) ROLLBACK [shard 104 master]
242004
+  (0.1ms) BEGIN [shard 104 master]
242005
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242006
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242007
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242008
+  (0.0ms) BEGIN [shard 106 master]
242009
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242010
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242011
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242012
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242013
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 194], ["value", nil]] [shard 104 master]
242014
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242015
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242016
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242017
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242018
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242019
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 19], ["value", nil]] [shard 105 master]
242020
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242021
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242022
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242023
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242024
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242025
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242026
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 106 master]
242027
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242028
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242029
+  (0.1ms) ROLLBACK [shard 106 master]
242030
+  (0.1ms) ROLLBACK [shard 104 master]
242031
+  (0.0ms) BEGIN [shard 104 master]
242032
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242033
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242034
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242035
+  (0.0ms) BEGIN [shard 106 master]
242036
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242037
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242038
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242039
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242040
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 195], ["value", nil]] [shard 104 master]
242041
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242042
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242043
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242044
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242045
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242046
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 20], ["value", nil]] [shard 105 master]
242047
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242048
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242049
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242050
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242051
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242052
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242053
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 106 master]
242054
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242055
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242056
+  (0.1ms) ROLLBACK [shard 106 master]
242057
+  (0.1ms) ROLLBACK [shard 104 master]
242058
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
242059
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242060
+  (0.1ms) BEGIN [shard 104 master]
242061
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242062
+ 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", 104], ["name", nil]] [shard 104 master]
242063
+  (0.4ms) COMMIT [shard 104 master]
242064
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242065
+  (0.1ms) BEGIN [shard 104 master]
242066
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242067
+  (0.3ms) COMMIT [shard 104 master]
242068
+  (0.1ms) BEGIN [shard 104 master]
242069
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242070
+  (0.3ms) COMMIT [shard 104 master]
242071
+  (0.0ms) BEGIN [shard 104 master]
242072
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242073
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242074
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242075
+  (0.1ms) BEGIN [shard 106 master]
242076
+  (0.1ms) ROLLBACK [shard 106 master]
242077
+  (0.1ms) ROLLBACK [shard 104 master]
242078
+  (0.0ms) BEGIN [shard 104 master]
242079
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242080
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242081
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242082
+  (0.1ms) BEGIN [shard 106 master]
242083
+  (0.1ms) ROLLBACK [shard 106 master]
242084
+  (0.1ms) ROLLBACK [shard 104 master]
242085
+  (0.1ms) BEGIN [shard 104 master]
242086
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242087
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242088
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242089
+  (0.0ms) BEGIN [shard 106 master]
242090
+  (0.0ms) ROLLBACK [shard 106 master]
242091
+  (0.0ms) ROLLBACK [shard 104 master]
242092
+  (0.0ms) BEGIN [shard 104 master]
242093
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242094
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242095
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242096
+  (0.0ms) BEGIN [shard 106 master]
242097
+  (0.0ms) ROLLBACK [shard 106 master]
242098
+  (0.0ms) ROLLBACK [shard 104 master]
242099
+  (0.0ms) BEGIN [shard 104 master]
242100
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242101
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242102
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242103
+  (0.1ms) BEGIN [shard 106 master]
242104
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242105
+ 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 104 master]
242106
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242107
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242108
+ SQL (0.1ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 120]] [shard 104 master]
242109
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242110
+  (0.0ms) ROLLBACK [shard 106 master]
242111
+  (0.1ms) ROLLBACK [shard 104 master]
242112
+  (0.0ms) BEGIN [shard 104 master]
242113
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242114
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242115
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242116
+  (0.0ms) BEGIN [shard 106 master]
242117
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
242118
+  (0.1ms) ROLLBACK [shard 106 master]
242119
+  (0.1ms) ROLLBACK [shard 104 master]
242120
+  (0.0ms) BEGIN [shard 104 master]
242121
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242122
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242123
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242124
+  (0.0ms) BEGIN [shard 106 master]
242125
+  (0.0ms) ROLLBACK [shard 106 master]
242126
+  (0.0ms) ROLLBACK [shard 104 master]
242127
+  (0.0ms) BEGIN [shard 104 master]
242128
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242129
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242130
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242131
+  (0.0ms) BEGIN [shard 106 master]
242132
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242133
+  (0.1ms) ROLLBACK [shard 106 master]
242134
+  (0.1ms) ROLLBACK [shard 104 master]
242135
+  (0.0ms) BEGIN [shard 104 master]
242136
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242137
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242138
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242139
+  (0.0ms) BEGIN [shard 106 master]
242140
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242141
+  (0.1ms) ROLLBACK [shard 106 master]
242142
+  (0.1ms) ROLLBACK [shard 104 master]
242143
+  (0.1ms) BEGIN [shard 104 master]
242144
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242145
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242146
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242147
+  (0.0ms) BEGIN [shard 106 master]
242148
+  (0.1ms) ROLLBACK [shard 106 master]
242149
+  (0.1ms) ROLLBACK [shard 104 master]
242150
+  (0.0ms) BEGIN [shard 104 master]
242151
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242152
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242153
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242154
+  (0.1ms) BEGIN [shard 106 master]
242155
+  (0.1ms) ROLLBACK [shard 106 master]
242156
+  (0.1ms) ROLLBACK [shard 104 master]
242157
+  (0.1ms) BEGIN [shard 104 master]
242158
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242159
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242160
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242161
+  (0.0ms) BEGIN [shard 106 master]
242162
+  (0.0ms) ROLLBACK [shard 106 master]
242163
+  (0.1ms) ROLLBACK [shard 104 master]
242164
+  (0.0ms) BEGIN [shard 104 master]
242165
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242166
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242167
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242168
+  (0.0ms) BEGIN [shard 106 master]
242169
+  (0.0ms) ROLLBACK [shard 106 master]
242170
+  (0.1ms) ROLLBACK [shard 104 master]
242171
+  (0.1ms) BEGIN [shard 104 master]
242172
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242173
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242174
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242175
+  (0.0ms) BEGIN [shard 106 master]
242176
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242177
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", nil], ["default", false], ["name", nil]] [shard 104 master]
242178
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242179
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242180
+ SQL (0.1ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 121]] [shard 104 master]
242181
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242182
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 121 LIMIT 1 [shard 104 master]
242183
+  (0.1ms) ROLLBACK [shard 106 master]
242184
+  (0.1ms) ROLLBACK [shard 104 master]
242185
+  (0.1ms) BEGIN [shard 104 master]
242186
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242187
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242188
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242189
+  (0.0ms) BEGIN [shard 106 master]
242190
+  (0.0ms) ROLLBACK [shard 106 master]
242191
+  (0.1ms) ROLLBACK [shard 104 master]
242192
+  (0.1ms) BEGIN [shard 104 master]
242193
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242194
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242195
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242196
+  (0.0ms) BEGIN [shard 106 master]
242197
+  (0.0ms) ROLLBACK [shard 106 master]
242198
+  (0.0ms) ROLLBACK [shard 104 master]
242199
+  (0.0ms) BEGIN [shard 104 master]
242200
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242201
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242202
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242203
+  (0.0ms) BEGIN [shard 106 master]
242204
+  (0.0ms) ROLLBACK [shard 106 master]
242205
+  (0.0ms) ROLLBACK [shard 104 master]
242206
+  (0.1ms) BEGIN [shard 104 master]
242207
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242208
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242209
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242210
+  (0.0ms) BEGIN [shard 106 master]
242211
+  (0.1ms) ROLLBACK [shard 106 master]
242212
+  (0.1ms) ROLLBACK [shard 104 master]
242213
+  (0.1ms) BEGIN [shard 104 master]
242214
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242215
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242216
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242217
+  (0.0ms) BEGIN [shard 106 master]
242218
+  (0.0ms) ROLLBACK [shard 106 master]
242219
+  (0.0ms) ROLLBACK [shard 104 master]
242220
+  (0.0ms) BEGIN [shard 104 master]
242221
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242222
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242223
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242224
+  (0.0ms) BEGIN [shard 106 master]
242225
+  (0.0ms) ROLLBACK [shard 106 master]
242226
+  (0.0ms) ROLLBACK [shard 104 master]
242227
+  (0.0ms) BEGIN [shard 104 master]
242228
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242229
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242230
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242231
+  (0.1ms) BEGIN [shard 106 master]
242232
+  (0.0ms) ROLLBACK [shard 106 master]
242233
+  (0.0ms) ROLLBACK [shard 104 master]
242234
+  (0.0ms) BEGIN [shard 104 master]
242235
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242236
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242237
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242238
+  (0.0ms) BEGIN [shard 106 master]
242239
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 106 LIMIT 1 [shard 104 master]
242240
+  (0.1ms) ROLLBACK [shard 106 master]
242241
+  (0.1ms) ROLLBACK [shard 104 master]
242242
+  (0.1ms) BEGIN [shard 104 master]
242243
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242244
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242245
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242246
+  (0.0ms) BEGIN [shard 106 master]
242247
+  (0.0ms) ROLLBACK [shard 106 master]
242248
+  (0.0ms) ROLLBACK [shard 104 master]
242249
+  (0.0ms) BEGIN [shard 104 master]
242250
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242251
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242252
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242253
+  (0.0ms) BEGIN [shard 106 master]
242254
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 10106 LIMIT 1 [shard 104 master]
242255
+  (0.1ms) ROLLBACK [shard 106 master]
242256
+  (0.0ms) ROLLBACK [shard 104 master]
242257
+  (0.0ms) BEGIN [shard 104 master]
242258
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242259
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242260
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242261
+  (0.0ms) BEGIN [shard 106 master]
242262
+  (0.0ms) ROLLBACK [shard 106 master]
242263
+  (0.1ms) ROLLBACK [shard 104 master]
242264
+  (0.1ms) BEGIN [shard 104 master]
242265
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242266
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242267
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242268
+  (0.0ms) BEGIN [shard 106 master]
242269
+  (0.1ms) ROLLBACK [shard 106 master]
242270
+  (0.1ms) ROLLBACK [shard 104 master]
242271
+  (0.0ms) BEGIN [shard 104 master]
242272
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242273
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242274
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242275
+  (0.0ms) BEGIN [shard 106 master]
242276
+  (0.0ms) ROLLBACK [shard 106 master]
242277
+  (0.0ms) ROLLBACK [shard 104 master]
242278
+  (0.0ms) BEGIN [shard 104 master]
242279
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242280
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242281
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242282
+  (0.0ms) BEGIN [shard 106 master]
242283
+  (0.0ms) ROLLBACK [shard 106 master]
242284
+  (0.0ms) ROLLBACK [shard 104 master]
242285
+  (0.0ms) BEGIN [shard 104 master]
242286
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242287
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242288
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242289
+  (0.0ms) BEGIN [shard 106 master]
242290
+  (0.0ms) ROLLBACK [shard 106 master]
242291
+  (0.0ms) ROLLBACK [shard 104 master]
242292
+  (0.0ms) BEGIN [shard 104 master]
242293
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242294
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242295
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242296
+  (0.0ms) BEGIN [shard 106 master]
242297
+  (0.0ms) ROLLBACK [shard 106 master]
242298
+  (0.0ms) ROLLBACK [shard 104 master]
242299
+  (0.2ms) BEGIN [shard 104 master]
242300
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242301
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242302
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242303
+  (0.0ms) BEGIN [shard 106 master]
242304
+  (0.0ms) ROLLBACK [shard 106 master]
242305
+  (0.0ms) ROLLBACK [shard 104 master]
242306
+  (0.0ms) BEGIN [shard 104 master]
242307
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242308
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242309
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242310
+  (0.1ms) BEGIN [shard 106 master]
242311
+  (0.1ms) ROLLBACK [shard 106 master]
242312
+  (0.1ms) ROLLBACK [shard 104 master]
242313
+  (0.0ms) BEGIN [shard 104 master]
242314
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242315
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242316
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242317
+  (0.0ms) BEGIN [shard 106 master]
242318
+  (0.1ms) ROLLBACK [shard 106 master]
242319
+  (0.1ms) ROLLBACK [shard 104 master]
242320
+  (0.0ms) BEGIN [shard 104 master]
242321
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242322
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242323
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242324
+  (0.0ms) BEGIN [shard 106 master]
242325
+  (0.0ms) ROLLBACK [shard 106 master]
242326
+  (0.0ms) ROLLBACK [shard 104 master]
242327
+  (0.0ms) BEGIN [shard 104 master]
242328
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242329
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242330
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242331
+  (0.1ms) BEGIN [shard 106 master]
242332
+  (0.1ms) ROLLBACK [shard 106 master]
242333
+  (0.1ms) ROLLBACK [shard 104 master]
242334
+  (0.0ms) BEGIN [shard 104 master]
242335
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242336
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242337
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242338
+  (0.0ms) BEGIN [shard 106 master]
242339
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '28' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 104 master]
242340
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242341
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "28"], ["default", false], ["name", "public"]] [shard 104 master]
242342
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242343
+  (0.6ms) CREATE SCHEMA switchman_test_shard_122 [shard 122 deploy]
242344
+  (0.1ms) BEGIN [shard 122 deploy]
242345
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [shard 122 deploy]
242346
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 122 deploy]
242347
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 122 deploy]
242348
+ Migrating to CreateSwitchmanShards (20130328212039)
242349
+  (3.3ms) CREATE TABLE "switchman_shards" ("id" bigserial primary key, "name" character varying(255), "database_server_id" character varying(255), "default" boolean DEFAULT 'f' NOT NULL)  [shard 122 deploy]
242350
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328212039') [shard 122 deploy]
242351
+ Migrating to CreateDefaultShard (20130328224244)
242352
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130328224244') [shard 122 deploy]
242353
+ Migrating to CreateUsers (20130403132607)
242354
+  (2.6ms) 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 122 deploy]
242355
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 122 deploy]
242356
+ Migrating to CreateAppendages (20130411202442)
242357
+  (2.0ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 122 deploy]
242358
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 122 deploy]
242359
+ Migrating to CreateMirrorUsers (20130411202551)
242360
+  (1.7ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 122 deploy]
242361
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 122 deploy]
242362
+ Migrating to CreateDigits (20131022202028)
242363
+  (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 122 deploy]
242364
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 122 deploy]
242365
+ Migrating to CreateFeatures (20131206172923)
242366
+  (2.5ms) 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 122 deploy]
242367
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 122 deploy]
242368
+ Migrating to AddParentIdToUsers (20140123154135)
242369
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 122 deploy]
242370
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 122 deploy]
242371
+ Migrating to CreateRoots (20140219183820)
242372
+  (1.8ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 122 deploy]
242373
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 122 deploy]
242374
+  (0.7ms) COMMIT [shard 122 deploy]
242375
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242376
+  (0.3ms) UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_122' WHERE "switchman_shards"."id" = 122 [shard 104 master]
242377
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242378
+  (0.1ms) BEGIN [shard 122 master]
242379
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 122 master]
242380
+  (0.4ms) COMMIT [shard 122 master]
242381
+  (0.2ms) SELECT COUNT(*) FROM "users"  [shard 122 master]
242382
+  (6.7ms) DROP SCHEMA switchman_test_shard_122 CASCADE [shard 122 deploy]
242383
+  (0.4ms) SELECT COUNT(*) FROM "users"  [shard 122 master]
242384
+ PG::UndefinedTable: ERROR: relation "users" does not exist
242385
+ LINE 1: SELECT COUNT(*) FROM "users"
242386
+ ^
242387
+ : SELECT COUNT(*) FROM "users"
242388
+  (0.1ms) ROLLBACK [shard 106 master]
242389
+  (0.1ms) ROLLBACK [shard 104 master]
242390
+  (0.1ms) BEGIN [shard 104 master]
242391
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242392
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242393
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242394
+  (0.1ms) BEGIN [shard 106 master]
242395
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242396
+  (0.1ms) ROLLBACK [shard 106 master]
242397
+  (0.1ms) ROLLBACK [shard 104 master]
242398
+  (0.1ms) BEGIN [shard 104 master]
242399
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242400
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242401
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242402
+  (0.0ms) BEGIN [shard 106 master]
242403
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242404
+  (0.1ms) ROLLBACK [shard 106 master]
242405
+  (0.1ms) ROLLBACK [shard 104 master]
242406
+  (0.1ms) BEGIN [shard 104 master]
242407
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242408
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242409
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242410
+  (0.1ms) BEGIN [shard 106 master]
242411
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242412
+  (0.1ms) ROLLBACK [shard 106 master]
242413
+  (0.1ms) ROLLBACK [shard 104 master]
242414
+  (0.0ms) BEGIN [shard 104 master]
242415
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242416
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242417
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242418
+  (0.1ms) BEGIN [shard 106 master]
242419
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 104 master]
242420
+  (0.1ms) ROLLBACK [shard 106 master]
242421
+  (0.1ms) ROLLBACK [shard 104 master]
242422
+  (0.1ms) BEGIN [shard 104 master]
242423
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242424
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242425
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242426
+  (0.1ms) BEGIN [shard 106 master]
242427
+  (0.0ms) ROLLBACK [shard 106 master]
242428
+  (0.1ms) ROLLBACK [shard 104 master]
242429
+  (0.0ms) BEGIN [shard 104 master]
242430
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242431
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242432
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242433
+  (0.0ms) BEGIN [shard 106 master]
242434
+  (0.1ms) ROLLBACK [shard 106 master]
242435
+  (0.1ms) ROLLBACK [shard 104 master]
242436
+  (0.1ms) BEGIN [shard 104 master]
242437
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242438
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242439
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242440
+  (0.0ms) BEGIN [shard 106 master]
242441
+  (0.1ms) ROLLBACK [shard 106 master]
242442
+  (0.1ms) ROLLBACK [shard 104 master]
242443
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
242444
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242445
+  (0.0ms) BEGIN [shard 104 master]
242446
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242447
+ 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", 104], ["name", nil]] [shard 104 master]
242448
+  (0.2ms) COMMIT [shard 104 master]
242449
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242450
+  (0.1ms) BEGIN [shard 104 master]
242451
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242452
+  (0.3ms) COMMIT [shard 104 master]
242453
+  (0.1ms) BEGIN [shard 104 master]
242454
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242455
+  (0.3ms) COMMIT [shard 104 master]
242456
+  (0.0ms) BEGIN [shard 104 master]
242457
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242458
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242459
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242460
+  (0.0ms) BEGIN [shard 106 master]
242461
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242462
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242463
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242464
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
242465
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 21]] [shard 105 master]
242466
+  (0.1ms) ROLLBACK [shard 106 master]
242467
+  (0.1ms) ROLLBACK [shard 105 master]
242468
+  (0.1ms) BEGIN [shard 104 master]
242469
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242470
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242471
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242472
+  (0.0ms) BEGIN [shard 106 master]
242473
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242474
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242475
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242476
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."id" = 22 LIMIT 1 [shard 105 master]
242477
+  (0.1ms) ROLLBACK [shard 106 master]
242478
+  (0.1ms) ROLLBACK [shard 105 master]
242479
+  (0.0ms) BEGIN [shard 104 master]
242480
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242481
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242482
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242483
+  (0.1ms) BEGIN [shard 106 master]
242484
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242485
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242486
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242487
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242488
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", "multi-shard exists"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242489
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242490
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" [shard 104 master]
242491
+ User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 104 master]
242492
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 105 master]
242493
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 106 master]
242494
+  (0.1ms) ROLLBACK [shard 106 master]
242495
+  (0.1ms) ROLLBACK [shard 105 master]
242496
+  (0.0ms) BEGIN [shard 104 master]
242497
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242498
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242499
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242500
+  (0.0ms) BEGIN [shard 106 master]
242501
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242502
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242503
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242504
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
242505
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 24]] [shard 105 master]
242506
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242507
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1050000000000024 LIMIT 1 [shard 105 master]
242508
+  (0.1ms) ROLLBACK [shard 106 master]
242509
+  (0.1ms) ROLLBACK [shard 105 master]
242510
+  (0.0ms) BEGIN [shard 104 master]
242511
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242512
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242513
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242514
+  (0.1ms) BEGIN [shard 106 master]
242515
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242516
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242517
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242518
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 25 LIMIT 1 [shard 105 master]
242519
+  (0.1ms) ROLLBACK [shard 106 master]
242520
+  (0.1ms) ROLLBACK [shard 105 master]
242521
+  (0.0ms) BEGIN [shard 104 master]
242522
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242523
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242524
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242525
+  (0.0ms) BEGIN [shard 106 master]
242526
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242527
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242528
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242529
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (26) LIMIT 1 [shard 105 master]
242530
+  (0.1ms) ROLLBACK [shard 106 master]
242531
+  (0.1ms) ROLLBACK [shard 105 master]
242532
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
242533
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242534
+  (0.1ms) BEGIN [shard 104 master]
242535
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242536
+ 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", 104], ["name", nil]] [shard 104 master]
242537
+  (0.3ms) COMMIT [shard 104 master]
242538
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242539
+  (0.1ms) BEGIN [shard 104 master]
242540
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242541
+  (0.3ms) COMMIT [shard 104 master]
242542
+  (0.1ms) BEGIN [shard 104 master]
242543
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242544
+  (0.2ms) COMMIT [shard 104 master]
242545
+  (0.1ms) BEGIN [shard 106 master]
242546
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
242547
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242548
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242549
+  (0.1ms) BEGIN [shard 104 master]
242550
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242551
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242552
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242553
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242554
+  (0.2ms) SELECT COUNT(*) FROM "users" [shard 106 master]
242555
+  (0.1ms) SAVEPOINT active_record_2 [shard 106 master]
242556
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242557
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 106 master]
242558
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 106 master]
242559
+  (0.1ms) ROLLBACK [shard 104 master]
242560
+  (0.1ms) SELECT COUNT(*) FROM "users" [shard 106 master]
242561
+  (0.1ms) ROLLBACK [shard 106 master]
242562
+ SQL (6.0ms) DELETE FROM "switchman_shards" [shard 104 master]
242563
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242564
+  (0.1ms) BEGIN [shard 104 master]
242565
+  (0.1ms) ROLLBACK [shard 104 master]
242566
+  (0.1ms) BEGIN [shard 104 master]
242567
+  (0.3ms) SELECT COUNT(*) FROM "switchman_shards"  [shard 104 master]
242568
+  (0.1ms) ROLLBACK [shard 104 master]
242569
+  (0.1ms) BEGIN [shard 104 master]
242570
+  (0.1ms) ROLLBACK [shard 104 master]
242571
+  (0.1ms) BEGIN [shard 104 master]
242572
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242573
+ 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", 104], ["name", nil]] [shard 104 master]
242574
+  (6.0ms) COMMIT [shard 104 master]
242575
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242576
+  (0.1ms) BEGIN [shard 104 master]
242577
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242578
+  (6.0ms) COMMIT [shard 104 master]
242579
+  (0.1ms) BEGIN [shard 104 master]
242580
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242581
+  (4.9ms) COMMIT [shard 104 master]
242582
+  (0.1ms) BEGIN [shard 104 master]
242583
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242584
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242585
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242586
+  (0.0ms) BEGIN [shard 106 master]
242587
+  (0.0ms) ROLLBACK [shard 106 master]
242588
+  (0.0ms) ROLLBACK [shard 104 master]
242589
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
242590
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242591
+  (0.0ms) BEGIN [shard 104 master]
242592
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242593
+ SQL (0.3ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "29"], ["default", false], ["name", nil]] [shard 104 master]
242594
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242595
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242596
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "29"], ["default", false], ["name", nil]] [shard 104 master]
242597
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242598
+  (0.1ms) ROLLBACK [shard 104 master]
242599
+  (0.1ms) BEGIN [shard 104 master]
242600
+  (0.1ms) ROLLBACK [shard 104 master]
242601
+  (0.0ms) BEGIN [shard 104 master]
242602
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242603
+ 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", 104], ["name", nil]] [shard 104 master]
242604
+  (0.3ms) COMMIT [shard 104 master]
242605
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242606
+  (0.0ms) BEGIN [shard 104 master]
242607
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242608
+  (0.2ms) COMMIT [shard 104 master]
242609
+  (0.0ms) BEGIN [shard 104 master]
242610
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242611
+  (0.2ms) COMMIT [shard 104 master]
242612
+  (0.0ms) BEGIN [shard 104 master]
242613
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242614
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242615
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242616
+  (0.0ms) BEGIN [shard 106 master]
242617
+  (0.0ms) ROLLBACK [shard 106 master]
242618
+  (0.0ms) ROLLBACK [shard 104 master]
242619
+  (0.0ms) BEGIN [shard 104 master]
242620
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242621
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242622
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242623
+  (0.0ms) BEGIN [shard 106 master]
242624
+  (0.0ms) ROLLBACK [shard 106 master]
242625
+  (0.1ms) ROLLBACK [shard 104 master]
242626
+  (0.0ms) BEGIN [shard 104 master]
242627
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242628
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242629
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242630
+  (0.0ms) BEGIN [shard 106 master]
242631
+  (0.0ms) ROLLBACK [shard 106 master]
242632
+  (0.0ms) ROLLBACK [shard 104 master]
242633
+  (0.0ms) BEGIN [shard 104 master]
242634
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242635
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242636
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242637
+  (0.0ms) BEGIN [shard 106 master]
242638
+  (0.0ms) ROLLBACK [shard 106 master]
242639
+  (0.0ms) ROLLBACK [shard 104 master]
242640
+  (0.0ms) BEGIN [shard 104 master]
242641
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242642
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242643
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242644
+  (0.0ms) BEGIN [shard 106 master]
242645
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" IN (104, 105) AND (id IN (105,106)) [shard 104 master]
242646
+  (0.1ms) ROLLBACK [shard 106 master]
242647
+  (0.1ms) ROLLBACK [shard 104 master]
242648
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
242649
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242650
+  (0.0ms) BEGIN [shard 104 master]
242651
+  (0.1ms) ROLLBACK [shard 104 master]
242652
+  (0.0ms) BEGIN [shard 104 master]
242653
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242654
+ 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", 104], ["name", nil]] [shard 104 master]
242655
+  (6.0ms) COMMIT [shard 104 master]
242656
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242657
+  (0.1ms) BEGIN [shard 104 master]
242658
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242659
+  (5.9ms) COMMIT [shard 104 master]
242660
+  (0.1ms) BEGIN [shard 104 master]
242661
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242662
+  (6.0ms) COMMIT [shard 104 master]
242663
+  (0.1ms) BEGIN [shard 104 master]
242664
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242665
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242666
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242667
+  (0.1ms) BEGIN [shard 106 master]
242668
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
242669
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242670
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242671
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
242672
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242673
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242674
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242675
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242676
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242677
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 105 master]
242678
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242679
+  (0.1ms) ROLLBACK [shard 106 master]
242680
+  (0.1ms) ROLLBACK [shard 104 master]
242681
+  (0.0ms) BEGIN [shard 104 master]
242682
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242683
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242684
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242685
+  (0.0ms) BEGIN [shard 106 master]
242686
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242687
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242688
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242689
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242690
+ SQL (0.1ms) UPDATE "users" SET "updated_at" = '2015-05-04 15:38:22.485922' [shard 104 master]
242691
+  (0.1ms) ROLLBACK [shard 106 master]
242692
+  (0.1ms) ROLLBACK [shard 104 master]
242693
+  (0.0ms) BEGIN [shard 104 master]
242694
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242695
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242696
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242697
+  (0.0ms) BEGIN [shard 106 master]
242698
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242699
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242700
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242701
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 104 master]
242702
+ SQL (0.1ms) UPDATE "users" SET "updated_at" = '2015-05-04 15:38:22.491050' [shard 104 master]
242703
+  (0.1ms) ROLLBACK [shard 106 master]
242704
+  (0.1ms) ROLLBACK [shard 104 master]
242705
+  (0.1ms) BEGIN [shard 104 master]
242706
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242707
+  (0.4ms) COMMIT [shard 104 master]
242708
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242709
+ SQL (1.0ms) UPDATE "users" SET "updated_at" = '2015-05-04 15:38:22.495180' [shard 104 master]
242710
+ SQL (0.3ms) DELETE FROM "users" [shard 104 master]
242711
+  (0.0ms) BEGIN [shard 104 master]
242712
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242713
+  (0.3ms) COMMIT [shard 104 master]
242714
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242715
+ SQL (0.3ms) UPDATE "users" SET "updated_at" = '2015-05-04 15:38:22.504619' [shard 104 master]
242716
+ SQL (0.3ms) DELETE FROM "users" [shard 104 master]
242717
+  (0.0ms) BEGIN [shard 104 master]
242718
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242719
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242720
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242721
+  (0.0ms) BEGIN [shard 106 master]
242722
+  (0.1ms) ROLLBACK [shard 106 master]
242723
+  (0.1ms) ROLLBACK [shard 104 master]
242724
+  (0.0ms) BEGIN [shard 104 master]
242725
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242726
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242727
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242728
+  (0.0ms) BEGIN [shard 106 master]
242729
+  (0.0ms) ROLLBACK [shard 106 master]
242730
+  (0.0ms) ROLLBACK [shard 104 master]
242731
+  (0.0ms) BEGIN [shard 104 master]
242732
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242733
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242734
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242735
+  (0.0ms) BEGIN [shard 106 master]
242736
+  (0.0ms) ROLLBACK [shard 106 master]
242737
+  (0.0ms) ROLLBACK [shard 104 master]
242738
+  (0.0ms) BEGIN [shard 104 master]
242739
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242740
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242741
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242742
+  (0.0ms) BEGIN [shard 106 master]
242743
+  (0.1ms) ROLLBACK [shard 106 master]
242744
+  (0.1ms) ROLLBACK [shard 104 master]
242745
+  (0.0ms) BEGIN [shard 104 master]
242746
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242747
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242748
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242749
+  (0.1ms) BEGIN [shard 106 master]
242750
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242751
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242752
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242753
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242754
+ SQL (0.1ms) DELETE FROM "users" [shard 104 master]
242755
+  (0.1ms) ROLLBACK [shard 106 master]
242756
+  (0.1ms) ROLLBACK [shard 104 master]
242757
+  (0.0ms) BEGIN [shard 104 master]
242758
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242759
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242760
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242761
+  (0.0ms) BEGIN [shard 106 master]
242762
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242763
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242764
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242765
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242766
+ SQL (0.1ms) DELETE FROM "users" [shard 104 master]
242767
+  (0.1ms) ROLLBACK [shard 106 master]
242768
+  (0.0ms) ROLLBACK [shard 104 master]
242769
+  (0.0ms) BEGIN [shard 104 master]
242770
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242771
+  (0.4ms) COMMIT [shard 104 master]
242772
+  (0.1ms) BEGIN [shard 104 master]
242773
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", "a"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242774
+  (0.3ms) COMMIT [shard 104 master]
242775
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 204]] [shard 104 master]
242776
+ CACHE (0.0ms) 104::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 204]]
242777
+ CACHE (0.0ms) 104::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 204]]
242778
+  (0.1ms) BEGIN [shard 104 master]
242779
+  (0.2ms) UPDATE "users" SET "name" = 'b', "updated_at" = '2015-05-04 15:38:22.535288' WHERE "users"."id" = 204 [shard 104 master]
242780
+  (0.3ms) COMMIT [shard 104 master]
242781
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 204]] [shard 104 master]
242782
+ CACHE (0.0ms) 104::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 204]]
242783
+ SQL (0.3ms) DELETE FROM "users" [shard 104 master]
242784
+  (0.0ms) BEGIN [shard 104 master]
242785
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242786
+  (0.3ms) COMMIT [shard 104 master]
242787
+ User Load (0.2ms) SELECT "users".* FROM "users"  [shard 104 master]
242788
+ SQL (0.3ms) DELETE FROM "users" [shard 104 master]
242789
+ SQL (0.1ms) DELETE FROM "users" [shard 104 master]
242790
+  (0.0ms) BEGIN [shard 104 master]
242791
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242792
+  (0.2ms) COMMIT [shard 104 master]
242793
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242794
+ SQL (0.3ms) DELETE FROM "users" [shard 104 master]
242795
+ SQL (0.1ms) DELETE FROM "users" [shard 104 master]
242796
+  (0.0ms) BEGIN [shard 104 master]
242797
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242798
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242799
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242800
+  (0.0ms) BEGIN [shard 106 master]
242801
+  (0.0ms) ROLLBACK [shard 106 master]
242802
+  (0.0ms) ROLLBACK [shard 104 master]
242803
+  (0.0ms) BEGIN [shard 104 master]
242804
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242805
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242806
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242807
+  (0.1ms) BEGIN [shard 106 master]
242808
+  (0.1ms) ROLLBACK [shard 106 master]
242809
+  (0.1ms) ROLLBACK [shard 104 master]
242810
+  (0.0ms) BEGIN [shard 104 master]
242811
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242812
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242813
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242814
+  (0.0ms) BEGIN [shard 106 master]
242815
+  (0.0ms) ROLLBACK [shard 106 master]
242816
+  (0.1ms) ROLLBACK [shard 104 master]
242817
+  (0.0ms) BEGIN [shard 104 master]
242818
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242819
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242820
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242821
+  (0.0ms) BEGIN [shard 106 master]
242822
+  (0.1ms) ROLLBACK [shard 106 master]
242823
+  (0.1ms) ROLLBACK [shard 104 master]
242824
+  (0.0ms) BEGIN [shard 104 master]
242825
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242826
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242827
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242828
+  (0.0ms) BEGIN [shard 106 master]
242829
+  (0.0ms) ROLLBACK [shard 106 master]
242830
+  (0.1ms) ROLLBACK [shard 104 master]
242831
+  (0.0ms) BEGIN [shard 104 master]
242832
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242833
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242834
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242835
+  (0.0ms) BEGIN [shard 106 master]
242836
+  (0.0ms) ROLLBACK [shard 106 master]
242837
+  (0.0ms) ROLLBACK [shard 104 master]
242838
+  (0.0ms) BEGIN [shard 104 master]
242839
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242840
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242841
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242842
+  (0.0ms) BEGIN [shard 106 master]
242843
+  (0.0ms) ROLLBACK [shard 106 master]
242844
+  (0.0ms) ROLLBACK [shard 104 master]
242845
+  (0.0ms) BEGIN [shard 104 master]
242846
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242847
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242848
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242849
+  (0.0ms) BEGIN [shard 106 master]
242850
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242851
+  (0.0ms) ROLLBACK [shard 106 master]
242852
+  (0.0ms) ROLLBACK [shard 104 master]
242853
+  (0.0ms) BEGIN [shard 104 master]
242854
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242855
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242856
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242857
+  (0.0ms) BEGIN [shard 106 master]
242858
+ User Load (0.2ms) SELECT "users".* FROM "users" FOR UPDATE [shard 104 master]
242859
+  (0.1ms) ROLLBACK [shard 106 master]
242860
+  (0.1ms) ROLLBACK [shard 104 master]
242861
+  (0.1ms) BEGIN [shard 104 master]
242862
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242863
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242864
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242865
+  (0.0ms) BEGIN [shard 106 master]
242866
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242867
+  (0.1ms) ROLLBACK [shard 106 master]
242868
+  (0.0ms) ROLLBACK [shard 104 master]
242869
+  (0.0ms) BEGIN [shard 104 master]
242870
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242871
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242872
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242873
+  (0.0ms) BEGIN [shard 106 master]
242874
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242875
+  (0.0ms) ROLLBACK [shard 106 master]
242876
+  (0.0ms) ROLLBACK [shard 104 master]
242877
+  (0.0ms) BEGIN [shard 104 master]
242878
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242879
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242880
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242881
+  (0.0ms) BEGIN [shard 106 master]
242882
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242883
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242884
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242885
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242886
+  (0.1ms) ROLLBACK [shard 106 master]
242887
+  (0.1ms) ROLLBACK [shard 104 master]
242888
+  (0.0ms) BEGIN [shard 104 master]
242889
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242890
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242891
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242892
+  (0.0ms) BEGIN [shard 106 master]
242893
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242894
+  (0.1ms) BEGIN [shard 104 master]
242895
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242896
+  (0.3ms) COMMIT [shard 104 master]
242897
+  (0.1ms) ROLLBACK [shard 106 master]
242898
+  (0.1ms) ROLLBACK [shard 104 master]
242899
+  (0.1ms) BEGIN [shard 104 master]
242900
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242901
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242902
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242903
+  (0.0ms) BEGIN [shard 106 master]
242904
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 104 master]
242905
+  (0.0ms) BEGIN [shard 104 master]
242906
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242907
+  (0.4ms) COMMIT [shard 104 master]
242908
+  (0.1ms) ROLLBACK [shard 106 master]
242909
+  (0.1ms) ROLLBACK [shard 104 master]
242910
+  (0.0ms) BEGIN [shard 104 master]
242911
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242912
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242913
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242914
+  (0.0ms) BEGIN [shard 106 master]
242915
+ User Load (0.1ms) SELECT "users".* FROM "users"  [shard 104 master]
242916
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
242917
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
242918
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
242919
+  (0.1ms) ROLLBACK [shard 106 master]
242920
+  (0.1ms) ROLLBACK [shard 104 master]
242921
+  (0.0ms) BEGIN [shard 104 master]
242922
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242923
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242924
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242925
+  (0.0ms) BEGIN [shard 106 master]
242926
+  (0.1ms) ROLLBACK [shard 106 master]
242927
+  (0.1ms) ROLLBACK [shard 104 master]
242928
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
242929
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242930
+  (0.0ms) BEGIN [shard 104 master]
242931
+  (0.0ms) ROLLBACK [shard 104 master]
242932
+  (0.0ms) BEGIN [shard 104 master]
242933
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242934
+ 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", 104], ["name", nil]] [shard 104 master]
242935
+  (0.3ms) COMMIT [shard 104 master]
242936
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242937
+  (0.0ms) BEGIN [shard 104 master]
242938
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242939
+  (0.2ms) COMMIT [shard 104 master]
242940
+  (0.0ms) BEGIN [shard 104 master]
242941
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242942
+  (0.2ms) COMMIT [shard 104 master]
242943
+  (0.0ms) BEGIN [shard 104 master]
242944
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242945
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242946
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242947
+  (0.0ms) BEGIN [shard 106 master]
242948
+  (0.0ms) ROLLBACK [shard 106 master]
242949
+  (0.0ms) ROLLBACK [shard 104 master]
242950
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 104 master]
242951
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242952
+  (0.0ms) BEGIN [shard 104 master]
242953
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242954
+ 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", 104], ["name", nil]] [shard 104 master]
242955
+  (0.3ms) COMMIT [shard 104 master]
242956
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242957
+  (0.1ms) BEGIN [shard 104 master]
242958
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
242959
+  (0.2ms) COMMIT [shard 104 master]
242960
+  (0.0ms) BEGIN [shard 104 master]
242961
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
242962
+  (0.2ms) COMMIT [shard 104 master]
242963
+  (0.0ms) BEGIN [shard 104 master]
242964
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242965
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242966
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242967
+  (0.1ms) BEGIN [shard 106 master]
242968
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242969
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242970
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242971
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
242972
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242973
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242974
+  (0.1ms) ROLLBACK [shard 106 master]
242975
+  (0.1ms) ROLLBACK [shard 105 master]
242976
+  (0.1ms) BEGIN [shard 104 master]
242977
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242978
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242979
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
242980
+  (0.0ms) BEGIN [shard 106 master]
242981
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
242982
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
242983
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242984
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
242985
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
242986
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
242987
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
242988
+ SQL (0.6ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 30], ["value", nil]] [shard 105 master]
242989
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
242990
+  (0.3ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 30 [shard 105 master]
242991
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
242992
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 30]] [shard 105 master]
242993
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 30 [shard 105 master]
242994
+  (0.1ms) ROLLBACK [shard 106 master]
242995
+  (0.1ms) ROLLBACK [shard 105 master]
242996
+  (0.1ms) BEGIN [shard 104 master]
242997
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
242998
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
242999
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243000
+  (0.1ms) BEGIN [shard 106 master]
243001
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243002
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243003
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243004
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243005
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243006
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243007
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243008
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 31], ["value", nil]] [shard 105 master]
243009
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243010
+  (0.1ms) ROLLBACK [shard 106 master]
243011
+  (0.1ms) ROLLBACK [shard 105 master]
243012
+  (0.0ms) BEGIN [shard 104 master]
243013
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243014
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243015
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243016
+  (0.0ms) BEGIN [shard 106 master]
243017
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243018
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243019
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243020
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243021
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243022
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243023
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243024
+ SQL (0.5ms) INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", nil]] [shard 105 master]
243025
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243026
+  (0.1ms) ROLLBACK [shard 106 master]
243027
+  (0.1ms) ROLLBACK [shard 104 master]
243028
+  (0.1ms) BEGIN [shard 104 master]
243029
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243030
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243031
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243032
+  (0.1ms) BEGIN [shard 106 master]
243033
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243034
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243035
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243036
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243037
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243038
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243039
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243040
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 33], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243041
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243042
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243043
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 34], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243044
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243045
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 33]] [shard 105 master]
243046
+  (0.1ms) SHOW max_identifier_length [shard 105 master]
243047
+ User Exists (0.4ms) 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" = 33 AND "users"."id" = 35 LIMIT 1 [shard 105 master]
243048
+ WARNING: Can't mass-assign protected attributes: id
243049
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243050
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243051
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243052
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 33]] [shard 105 master]
243053
+ User Exists (0.2ms) 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" = 33 AND "users"."id" = 1060000000000025 LIMIT 1 [shard 105 master]
243054
+  (0.1ms) ROLLBACK [shard 106 master]
243055
+  (0.1ms) ROLLBACK [shard 105 master]
243056
+  (0.0ms) BEGIN [shard 104 master]
243057
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243058
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243059
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243060
+  (0.1ms) BEGIN [shard 106 master]
243061
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243062
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243063
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243064
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243065
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243066
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243067
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243068
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 36], ["value", nil]] [shard 105 master]
243069
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243070
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243071
+ SQL (0.6ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", nil], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 106 master]
243072
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243073
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 106 LIMIT 1 [shard 104 master]
243074
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243075
+ SQL (0.5ms) INSERT INTO "digits" ("appendage_id", "created_at", "id", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["appendage_id", 20], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["id", 1060000000000001], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 105 master]
243076
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243077
+ Digit Load (0.4ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 36 AND "digits"."id" = $1 LIMIT 1 [["id", 1060000000000001]] [shard 105 master]
243078
+  (0.1ms) ROLLBACK [shard 106 master]
243079
+  (0.1ms) ROLLBACK [shard 105 master]
243080
+  (0.1ms) BEGIN [shard 104 master]
243081
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243082
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243083
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243084
+  (0.1ms) BEGIN [shard 106 master]
243085
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243086
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243087
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243088
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243089
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243090
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243091
+  (0.1ms) ROLLBACK [shard 106 master]
243092
+  (0.1ms) ROLLBACK [shard 105 master]
243093
+  (0.1ms) BEGIN [shard 104 master]
243094
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243095
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243096
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243097
+  (0.1ms) BEGIN [shard 106 master]
243098
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243099
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243100
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243101
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243102
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243103
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243104
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243105
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 38], ["value", nil]] [shard 105 master]
243106
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243107
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243108
+ SQL (0.4ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 21], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 105 master]
243109
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243110
+ Digit Load (0.4ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 38 AND "digits"."id" = $1 LIMIT 1 [["id", 1]] [shard 105 master]
243111
+  (0.1ms) ROLLBACK [shard 106 master]
243112
+  (0.1ms) ROLLBACK [shard 105 master]
243113
+  (0.1ms) BEGIN [shard 104 master]
243114
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243115
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243116
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243117
+  (0.1ms) BEGIN [shard 106 master]
243118
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243119
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243120
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243121
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243122
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243123
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243124
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243125
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 39], ["value", nil]] [shard 105 master]
243126
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243127
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243128
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243129
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 29], ["value", nil]] [shard 106 master]
243130
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243131
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243132
+  (0.1ms) ROLLBACK [shard 106 master]
243133
+  (0.1ms) ROLLBACK [shard 104 master]
243134
+  (0.1ms) BEGIN [shard 104 master]
243135
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243136
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243137
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243138
+  (0.0ms) BEGIN [shard 106 master]
243139
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243140
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243141
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243142
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243143
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243144
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243145
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243146
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 40], ["value", nil]] [shard 105 master]
243147
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243148
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 40 AND "appendages"."id" = $1 LIMIT 1 [["id", 23]] [shard 105 master]
243149
+ Appendage Load (0.4ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 30 AND "appendages"."id" = $1 LIMIT 1 [["id", 1050000000000023]] [shard 106 master]
243150
+  (0.1ms) ROLLBACK [shard 106 master]
243151
+  (0.1ms) ROLLBACK [shard 104 master]
243152
+  (0.0ms) BEGIN [shard 104 master]
243153
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243154
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243155
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243156
+  (0.1ms) BEGIN [shard 106 master]
243157
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243158
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243159
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243160
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243161
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243162
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243163
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243164
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 41], ["value", nil]] [shard 105 master]
243165
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243166
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 24]] [shard 105 master]
243167
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 41 LIMIT 1 [shard 105 master]
243168
+  (0.1ms) ROLLBACK [shard 106 master]
243169
+  (0.1ms) ROLLBACK [shard 105 master]
243170
+  (0.0ms) BEGIN [shard 104 master]
243171
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243172
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243173
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243174
+  (0.0ms) BEGIN [shard 106 master]
243175
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243176
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243177
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243178
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243179
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243180
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243181
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243182
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 42], ["value", nil]] [shard 105 master]
243183
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243184
+  (0.1ms) ROLLBACK [shard 106 master]
243185
+  (0.1ms) ROLLBACK [shard 105 master]
243186
+  (0.0ms) BEGIN [shard 104 master]
243187
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243188
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243189
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243190
+  (0.0ms) BEGIN [shard 106 master]
243191
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243192
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243193
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243194
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243195
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243196
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243197
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243198
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243199
+  (0.1ms) ROLLBACK [shard 106 master]
243200
+  (0.1ms) ROLLBACK [shard 105 master]
243201
+  (0.1ms) BEGIN [shard 104 master]
243202
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243203
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243204
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243205
+  (0.0ms) BEGIN [shard 106 master]
243206
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243207
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243208
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243209
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243210
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243211
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243212
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243213
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 44], ["value", 1]] [shard 105 master]
243214
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243215
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243216
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000044], ["value", nil]] [shard 106 master]
243217
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243218
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243219
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243220
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 44], ["value", 2]] [shard 105 master]
243221
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243222
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243223
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 44]] [shard 105 master]
243224
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 44 AND (appendages.value IS NOT NULL) [shard 105 master]
243225
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 1050000000000044 AND (appendages.value IS NOT NULL) [shard 106 master]
243226
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 44]] [shard 105 master]
243227
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 44 AND (appendages.value IS NOT NULL) [shard 105 master]
243228
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 1050000000000044 AND (appendages.value IS NOT NULL) [shard 106 master]
243229
+  (0.1ms) ROLLBACK [shard 106 master]
243230
+  (0.2ms) ROLLBACK [shard 105 master]
243231
+  (0.0ms) BEGIN [shard 104 master]
243232
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243233
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243234
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243235
+  (0.1ms) BEGIN [shard 106 master]
243236
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243237
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243238
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243239
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243240
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243241
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243242
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243243
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 45], ["value", nil]] [shard 105 master]
243244
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243245
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243246
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 28], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 105 master]
243247
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243248
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243249
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000045], ["value", nil]] [shard 106 master]
243250
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243251
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243252
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 20], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 2]] [shard 106 master]
243253
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243254
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 45 AND "digits"."value" IS NULL [shard 105 master]
243255
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000045 AND "digits"."value" IS NULL [shard 106 master]
243256
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 45]] [shard 105 master]
243257
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 45 AND "digits"."value" IS NULL [shard 105 master]
243258
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000045 AND "digits"."value" IS NULL [shard 106 master]
243259
+  (0.1ms) ROLLBACK [shard 106 master]
243260
+  (0.1ms) ROLLBACK [shard 105 master]
243261
+  (0.0ms) BEGIN [shard 104 master]
243262
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243263
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243264
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243265
+  (0.1ms) BEGIN [shard 106 master]
243266
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243267
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243268
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243269
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243270
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243271
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243272
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243273
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 46], ["value", 1]] [shard 105 master]
243274
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243275
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243276
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000046], ["value", 2]] [shard 106 master]
243277
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243278
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 46 [shard 105 master]
243279
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 46]] [shard 105 master]
243280
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 46 [shard 105 master]
243281
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 1050000000000046 [shard 106 master]
243282
+  (0.1ms) ROLLBACK [shard 106 master]
243283
+  (0.1ms) ROLLBACK [shard 105 master]
243284
+  (0.0ms) BEGIN [shard 104 master]
243285
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243286
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243287
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243288
+  (0.1ms) BEGIN [shard 106 master]
243289
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243290
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243291
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243292
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243293
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243294
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243295
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243296
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 47], ["value", 1]] [shard 105 master]
243297
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243298
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243299
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000047], ["value", nil]] [shard 106 master]
243300
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243301
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 47 AND "appendages"."value" IS NULL [shard 105 master]
243302
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 1050000000000047 AND "appendages"."value" IS NULL [shard 106 master]
243303
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 47]] [shard 105 master]
243304
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 47 AND "appendages"."value" IS NULL [shard 105 master]
243305
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 1050000000000047 AND "appendages"."value" IS NULL [shard 106 master]
243306
+  (0.1ms) ROLLBACK [shard 106 master]
243307
+  (0.1ms) ROLLBACK [shard 105 master]
243308
+  (0.1ms) BEGIN [shard 104 master]
243309
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243310
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243311
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243312
+  (0.1ms) BEGIN [shard 106 master]
243313
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243314
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243315
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243316
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243317
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243318
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243319
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243320
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 48], ["value", nil]] [shard 105 master]
243321
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243322
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243323
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 31], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 105 master]
243324
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243325
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243326
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000048], ["value", nil]] [shard 106 master]
243327
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243328
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243329
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 23], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 2]] [shard 106 master]
243330
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243331
+  (0.3ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 48 AND "digits"."value" IS NULL [shard 105 master]
243332
+  (0.2ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000048 AND "digits"."value" IS NULL [shard 106 master]
243333
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 48]] [shard 105 master]
243334
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 48 AND "digits"."value" IS NULL [shard 105 master]
243335
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000048 AND "digits"."value" IS NULL [shard 106 master]
243336
+  (0.1ms) ROLLBACK [shard 106 master]
243337
+  (0.1ms) ROLLBACK [shard 105 master]
243338
+  (0.0ms) BEGIN [shard 104 master]
243339
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243340
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243341
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243342
+  (0.0ms) BEGIN [shard 106 master]
243343
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243344
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243345
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243346
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243347
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243348
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243349
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243350
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 49], ["value", nil]] [shard 105 master]
243351
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243352
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243353
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 32], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 105 master]
243354
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243355
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243356
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 32], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 1]] [shard 105 master]
243357
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243358
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243359
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000049], ["value", nil]] [shard 106 master]
243360
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243361
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243362
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 24], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 2]] [shard 106 master]
243363
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243364
+  (0.3ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 49 AND (digits.value IS NOT NULL) [shard 105 master]
243365
+  (0.2ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000049 AND (digits.value IS NOT NULL) [shard 106 master]
243366
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 49]] [shard 105 master]
243367
+  (0.2ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 49 AND (digits.value IS NOT NULL) [shard 105 master]
243368
+  (0.2ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000049 AND (digits.value IS NOT NULL) [shard 106 master]
243369
+  (0.1ms) ROLLBACK [shard 106 master]
243370
+  (0.1ms) ROLLBACK [shard 105 master]
243371
+  (0.0ms) BEGIN [shard 104 master]
243372
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243373
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243374
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243375
+  (0.0ms) BEGIN [shard 106 master]
243376
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243377
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243378
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243379
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243380
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243381
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243382
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243383
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 50], ["value", nil]] [shard 105 master]
243384
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243385
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243386
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 33], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 1]] [shard 105 master]
243387
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243388
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243389
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000050], ["value", nil]] [shard 106 master]
243390
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243391
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243392
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 25], ["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 2]] [shard 106 master]
243393
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243394
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 50 [shard 105 master]
243395
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 50]] [shard 105 master]
243396
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 50 [shard 105 master]
243397
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 1050000000000050 [shard 106 master]
243398
+  (0.1ms) ROLLBACK [shard 106 master]
243399
+  (0.1ms) ROLLBACK [shard 105 master]
243400
+  (0.1ms) BEGIN [shard 104 master]
243401
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243402
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243403
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243404
+  (0.1ms) BEGIN [shard 106 master]
243405
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243406
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243407
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243408
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243409
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243410
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243411
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243412
+ SQL (0.7ms) INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1060000000000041]] [shard 104 master]
243413
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243414
+ Root Load (0.5ms) SELECT "roots".* FROM "roots" WHERE "roots"."id" = $1 LIMIT 1 [["id", 9]] [shard 104 master]
243415
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 41 LIMIT 1 [shard 106 master]
243416
+  (0.1ms) ROLLBACK [shard 106 master]
243417
+  (0.1ms) ROLLBACK [shard 104 master]
243418
+  (0.1ms) BEGIN [shard 104 master]
243419
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243420
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243421
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243422
+  (0.0ms) BEGIN [shard 106 master]
243423
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243424
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243425
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243426
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243427
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243428
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243429
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243430
+ SQL (0.5ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 104 master]
243431
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243432
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243433
+ SQL (0.7ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["owner_id", 102], ["owner_type", "Appendage"], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", nil]] [shard 104 master]
243434
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243435
+ Feature Load (0.4ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 8]] [shard 104 master]
243436
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 102 LIMIT 1 [shard 104 master]
243437
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243438
+  (0.3ms) UPDATE "features" SET "owner_id" = 1050000000000052, "owner_type" = 'User', "updated_at" = '2015-05-04 15:38:22.956284' WHERE "features"."id" = 8 [shard 104 master]
243439
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243440
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 8]] [shard 104 master]
243441
+  (0.1ms) ROLLBACK [shard 106 master]
243442
+  (0.1ms) ROLLBACK [shard 104 master]
243443
+  (0.0ms) BEGIN [shard 104 master]
243444
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243445
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243446
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243447
+  (0.0ms) BEGIN [shard 106 master]
243448
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243449
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243450
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243451
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243452
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243453
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243454
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243455
+ SQL (0.6ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["owner_id", 53], ["owner_type", "User"], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 1]] [shard 105 master]
243456
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243457
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243458
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["owner_id", 1050000000000053], ["owner_type", "User"], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["value", 2]] [shard 106 master]
243459
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243460
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 53 AND "features"."owner_type" = 'User' [shard 105 master]
243461
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 53]] [shard 105 master]
243462
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 53 AND "features"."owner_type" = 'User' [shard 105 master]
243463
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = 1050000000000053 AND "features"."owner_type" = 'User' [shard 106 master]
243464
+  (0.1ms) ROLLBACK [shard 106 master]
243465
+  (0.1ms) ROLLBACK [shard 105 master]
243466
+  (0.0ms) BEGIN [shard 104 master]
243467
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243468
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243469
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243470
+  (0.1ms) BEGIN [shard 106 master]
243471
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243472
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243473
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243474
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243475
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243476
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243477
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243478
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1050000000000054], ["value", nil]] [shard 104 master]
243479
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243480
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243481
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 1060000000000044], ["value", nil]] [shard 104 master]
243482
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243483
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243484
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 104 master]
243485
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243486
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243487
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", 211], ["value", nil]] [shard 104 master]
243488
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243489
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" [shard 104 master]
243490
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (54) [shard 105 master]
243491
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (44) [shard 106 master]
243492
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (211) [shard 104 master]
243493
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 54 [shard 105 master]
243494
+  (0.1ms) ROLLBACK [shard 106 master]
243495
+  (0.1ms) ROLLBACK [shard 105 master]
243496
+  (0.0ms) BEGIN [shard 104 master]
243497
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243498
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243499
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243500
+  (0.1ms) BEGIN [shard 106 master]
243501
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243502
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 105 master]
243503
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243504
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243505
+ 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", Mon, 04 May 2015 15:38:22 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00]] [shard 106 master]
243506
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243507
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243508
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:22 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 104 master]
243509
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243510
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243511
+ SQL (0.7ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 106], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 104 master]
243512
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243513
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243514
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1040000000000106], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 105 master]
243515
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243516
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 106 LIMIT 1 [shard 104 master]
243517
+ Digit Load (0.5ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (106) [shard 104 master]
243518
+  (0.1ms) ROLLBACK [shard 106 master]
243519
+  (0.1ms) ROLLBACK [shard 104 master]
243520
+  (0.0ms) BEGIN [shard 104 master]
243521
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243522
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243523
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243524
+  (0.1ms) BEGIN [shard 106 master]
243525
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243526
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243527
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243528
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243529
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243530
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243531
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243532
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 56], ["value", nil]] [shard 105 master]
243533
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243534
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243535
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000056], ["value", nil]] [shard 106 master]
243536
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243537
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243538
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000056], ["value", nil]] [shard 106 master]
243539
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243540
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243541
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 34], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 105 master]
243542
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243543
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243544
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243545
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 26], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 106 master]
243546
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243547
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243548
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243549
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1060000000000026], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 105 master]
243550
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243551
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243552
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1060000000000027], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 105 master]
243553
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243554
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243555
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000046], ["value", nil]] [shard 105 master]
243556
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243557
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243558
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243559
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 46], ["value", nil]] [shard 106 master]
243560
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243561
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243562
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243563
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243564
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 46], ["value", nil]] [shard 106 master]
243565
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243566
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243567
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243568
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1050000000000035], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 106 master]
243569
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243570
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243571
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1060000000000028], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 105 master]
243572
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243573
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243574
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 29], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 106 master]
243575
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243576
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 105 master]
243577
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (56) [shard 105 master]
243578
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (1050000000000056) [shard 106 master]
243579
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (34) [shard 105 master]
243580
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (26, 27) [shard 106 master]
243581
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (46) [shard 106 master]
243582
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (46) [shard 106 master]
243583
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (28, 29) [shard 106 master]
243584
+ SQL (0.2ms) DELETE FROM "digits" WHERE "digits"."id" = 8 [shard 105 master]
243585
+  (0.1ms) ROLLBACK [shard 106 master]
243586
+  (0.1ms) ROLLBACK [shard 105 master]
243587
+  (0.0ms) BEGIN [shard 104 master]
243588
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243589
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243590
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243591
+  (0.0ms) BEGIN [shard 106 master]
243592
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243593
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243594
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243595
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243596
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243597
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243598
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243599
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 57], ["value", nil]] [shard 105 master]
243600
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243601
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243602
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000057], ["value", nil]] [shard 106 master]
243603
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243604
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243605
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000047], ["value", nil]] [shard 105 master]
243606
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243607
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (57) [shard 105 master]
243608
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (57) [shard 105 master]
243609
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (1050000000000057) [shard 106 master]
243610
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (47) [shard 106 master]
243611
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (47) [shard 106 master]
243612
+ SQL (0.1ms) DELETE FROM "appendages" WHERE "appendages"."id" = 36 [shard 105 master]
243613
+  (0.1ms) ROLLBACK [shard 106 master]
243614
+  (0.1ms) ROLLBACK [shard 105 master]
243615
+  (0.1ms) BEGIN [shard 104 master]
243616
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243617
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243618
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243619
+  (0.0ms) BEGIN [shard 106 master]
243620
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243621
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243622
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243623
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243624
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243625
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243626
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243627
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000058], ["value", nil]] [shard 104 master]
243628
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243629
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243630
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 107], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 104 master]
243631
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243632
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243633
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000048], ["value", nil]] [shard 105 master]
243634
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243635
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243636
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1050000000000038], ["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 104 master]
243637
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243638
+ Digit Load (0.1ms) SELECT "digits".* FROM "digits"  [shard 104 master]
243639
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (107) [shard 104 master]
243640
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (38) [shard 105 master]
243641
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (58) [shard 105 master]
243642
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (48) [shard 106 master]
243643
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = 58 [shard 105 master]
243644
+  (0.1ms) ROLLBACK [shard 106 master]
243645
+  (0.1ms) ROLLBACK [shard 105 master]
243646
+  (0.1ms) BEGIN [shard 104 master]
243647
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243648
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243649
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243650
+  (0.0ms) BEGIN [shard 106 master]
243651
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243652
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243653
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243654
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243655
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243656
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243657
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243658
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000049], ["value", nil]] [shard 105 master]
243659
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243660
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 39]] [shard 105 master]
243661
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 49 LIMIT 1 [shard 106 master]
243662
+  (0.1ms) ROLLBACK [shard 106 master]
243663
+  (0.1ms) ROLLBACK [shard 105 master]
243664
+  (0.1ms) BEGIN [shard 104 master]
243665
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243666
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243667
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243668
+  (0.0ms) BEGIN [shard 106 master]
243669
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243670
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243671
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243672
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243673
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243674
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243675
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
243676
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 106 master]
243677
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243678
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243679
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 60 LIMIT 1 [shard 105 master]
243680
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 105 master]
243681
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243682
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 40]] [shard 105 master]
243683
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 60 LIMIT 1 [shard 105 master]
243684
+  (0.1ms) ROLLBACK [shard 106 master]
243685
+  (0.1ms) ROLLBACK [shard 105 master]
243686
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
243687
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243688
+  (0.0ms) BEGIN [shard 104 master]
243689
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243690
+ 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", 104], ["name", nil]] [shard 104 master]
243691
+  (0.3ms) COMMIT [shard 104 master]
243692
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243693
+  (0.1ms) BEGIN [shard 104 master]
243694
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
243695
+  (0.4ms) COMMIT [shard 104 master]
243696
+  (0.1ms) BEGIN [shard 104 master]
243697
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
243698
+  (0.3ms) COMMIT [shard 104 master]
243699
+  (0.1ms) BEGIN [shard 104 master]
243700
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243701
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243702
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243703
+  (0.1ms) BEGIN [shard 106 master]
243704
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (104)) [shard 104 master]
243705
+  (0.1ms) ROLLBACK [shard 106 master]
243706
+  (0.1ms) ROLLBACK [shard 104 master]
243707
+  (0.1ms) BEGIN [shard 104 master]
243708
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243709
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243710
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243711
+  (0.0ms) BEGIN [shard 106 master]
243712
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=105 AND id<=105)) AND (id NOT IN (104)) [shard 104 master]
243713
+  (0.1ms) ROLLBACK [shard 106 master]
243714
+  (0.1ms) ROLLBACK [shard 104 master]
243715
+  (0.1ms) BEGIN [shard 104 master]
243716
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243717
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243718
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243719
+  (0.0ms) BEGIN [shard 106 master]
243720
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=105)) ORDER BY id [shard 104 master]
243721
+  (0.1ms) ROLLBACK [shard 106 master]
243722
+  (0.1ms) ROLLBACK [shard 104 master]
243723
+  (0.0ms) BEGIN [shard 104 master]
243724
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243725
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243726
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243727
+  (0.0ms) BEGIN [shard 106 master]
243728
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id<=105)) ORDER BY id [shard 104 master]
243729
+  (0.0ms) ROLLBACK [shard 106 master]
243730
+  (0.0ms) ROLLBACK [shard 104 master]
243731
+  (0.0ms) BEGIN [shard 104 master]
243732
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243733
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243734
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243735
+  (0.0ms) BEGIN [shard 106 master]
243736
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ('f') [shard 104 master]
243737
+  (0.0ms) ROLLBACK [shard 106 master]
243738
+  (0.0ms) ROLLBACK [shard 104 master]
243739
+  (0.0ms) BEGIN [shard 104 master]
243740
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243741
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243742
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243743
+  (0.0ms) BEGIN [shard 106 master]
243744
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (104)) [shard 104 master]
243745
+  (0.1ms) SELECT COUNT(*) FROM "switchman_shards" [shard 104 master]
243746
+  (0.1ms) ROLLBACK [shard 106 master]
243747
+  (0.0ms) ROLLBACK [shard 104 master]
243748
+  (0.1ms) BEGIN [shard 104 master]
243749
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243750
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243751
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243752
+  (0.0ms) BEGIN [shard 106 master]
243753
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=104 AND id<=105)) ORDER BY id [shard 104 master]
243754
+  (0.0ms) ROLLBACK [shard 106 master]
243755
+  (0.0ms) ROLLBACK [shard 104 master]
243756
+  (0.0ms) BEGIN [shard 104 master]
243757
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243758
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243759
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243760
+  (0.0ms) BEGIN [shard 106 master]
243761
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=104 AND id<105) OR (id>=106 AND id<107)) ORDER BY id [shard 104 master]
243762
+  (0.0ms) ROLLBACK [shard 106 master]
243763
+  (0.0ms) ROLLBACK [shard 104 master]
243764
+  (0.0ms) BEGIN [shard 104 master]
243765
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243766
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243767
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243768
+  (0.0ms) BEGIN [shard 106 master]
243769
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=104 AND id<105)) [shard 104 master]
243770
+  (0.0ms) ROLLBACK [shard 106 master]
243771
+  (0.0ms) ROLLBACK [shard 104 master]
243772
+  (0.0ms) BEGIN [shard 104 master]
243773
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243774
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243775
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243776
+  (0.0ms) BEGIN [shard 106 master]
243777
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=104 AND id<=105)) AND (id NOT IN (104)) [shard 104 master]
243778
+  (0.0ms) ROLLBACK [shard 106 master]
243779
+  (0.0ms) ROLLBACK [shard 104 master]
243780
+  (0.0ms) BEGIN [shard 104 master]
243781
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243782
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243783
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243784
+  (0.0ms) BEGIN [shard 106 master]
243785
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (104)) [shard 104 master]
243786
+  (0.0ms) ROLLBACK [shard 106 master]
243787
+  (0.0ms) ROLLBACK [shard 104 master]
243788
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
243789
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243790
+  (0.0ms) BEGIN [shard 104 master]
243791
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243792
+ 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", 104], ["name", nil]] [shard 104 master]
243793
+  (0.3ms) COMMIT [shard 104 master]
243794
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243795
+  (0.1ms) BEGIN [shard 104 master]
243796
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
243797
+  (0.2ms) COMMIT [shard 104 master]
243798
+  (0.1ms) BEGIN [shard 104 master]
243799
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
243800
+  (0.3ms) COMMIT [shard 104 master]
243801
+  (0.1ms) BEGIN [shard 104 master]
243802
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243803
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243804
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243805
+  (0.1ms) BEGIN [shard 106 master]
243806
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243807
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243808
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243809
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243810
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243811
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243812
+  (0.1ms) ROLLBACK [shard 106 master]
243813
+  (0.1ms) ROLLBACK [shard 105 master]
243814
+  (0.0ms) BEGIN [shard 104 master]
243815
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243816
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243817
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243818
+  (0.0ms) BEGIN [shard 106 master]
243819
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243820
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243821
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243822
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243823
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243824
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243825
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 62 LIMIT 1 [shard 105 master]
243826
+  (0.1ms) ROLLBACK [shard 106 master]
243827
+  (0.1ms) ROLLBACK [shard 105 master]
243828
+  (0.0ms) BEGIN [shard 104 master]
243829
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243830
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243831
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243832
+  (0.0ms) BEGIN [shard 106 master]
243833
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243834
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243835
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243836
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243837
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243838
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243839
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
243840
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (214) [shard 104 master]
243841
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (63) [shard 105 master]
243842
+  (0.1ms) ROLLBACK [shard 106 master]
243843
+  (0.1ms) ROLLBACK [shard 105 master]
243844
+  (0.0ms) BEGIN [shard 104 master]
243845
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243846
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243847
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243848
+  (0.1ms) BEGIN [shard 106 master]
243849
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243850
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243851
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243852
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243853
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243854
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243855
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" = 64 [shard 105 master]
243856
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 215]] [shard 104 master]
243857
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 64]] [shard 105 master]
243858
+  (0.1ms) ROLLBACK [shard 106 master]
243859
+  (0.1ms) ROLLBACK [shard 105 master]
243860
+  (0.0ms) BEGIN [shard 104 master]
243861
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243862
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243863
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243864
+  (0.0ms) BEGIN [shard 106 master]
243865
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243866
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243867
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243868
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243869
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243870
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243871
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (216) [shard 104 master]
243872
+ SQL (0.1ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (65) [shard 105 master]
243873
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 216]] [shard 104 master]
243874
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 65]] [shard 105 master]
243875
+  (0.1ms) ROLLBACK [shard 106 master]
243876
+  (0.1ms) ROLLBACK [shard 105 master]
243877
+ SQL (5.4ms) DELETE FROM "switchman_shards" [shard 104 master]
243878
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243879
+  (0.1ms) BEGIN [shard 104 master]
243880
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243881
+ 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", 104], ["name", nil]] [shard 104 master]
243882
+  (0.3ms) COMMIT [shard 104 master]
243883
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243884
+  (0.1ms) BEGIN [shard 104 master]
243885
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
243886
+  (0.3ms) COMMIT [shard 104 master]
243887
+  (0.1ms) BEGIN [shard 104 master]
243888
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
243889
+  (0.2ms) COMMIT [shard 104 master]
243890
+  (0.0ms) BEGIN [shard 104 master]
243891
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243892
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243893
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243894
+  (0.0ms) BEGIN [shard 106 master]
243895
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243896
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243897
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243898
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243899
+ SQL (0.2ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["owner_id", 217], ["owner_type", "User"], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["value", nil]] [shard 104 master]
243900
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243901
+ Feature Load (0.2ms) SELECT owner_id FROM "features" WHERE "features"."id" = 9 LIMIT 1 [shard 104 master]
243902
+  (0.1ms) ROLLBACK [shard 106 master]
243903
+  (0.1ms) ROLLBACK [shard 104 master]
243904
+  (0.0ms) BEGIN [shard 104 master]
243905
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243906
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243907
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243908
+  (0.1ms) BEGIN [shard 106 master]
243909
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
243910
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
243911
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243912
+  (0.1ms) ROLLBACK [shard 106 master]
243913
+  (0.1ms) ROLLBACK [shard 104 master]
243914
+  (0.1ms) BEGIN [shard 104 master]
243915
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243916
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243917
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243918
+  (0.0ms) BEGIN [shard 106 master]
243919
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
243920
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 104 master]
243921
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
243922
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
243923
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 106 LIMIT 1 [shard 104 master]
243924
+  (0.1ms) ROLLBACK [shard 106 master]
243925
+  (0.1ms) ROLLBACK [shard 104 master]
243926
+ SQL (6.1ms) DELETE FROM "switchman_shards" [shard 104 master]
243927
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243928
+  (0.1ms) BEGIN [shard 104 master]
243929
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243930
+ 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", 104], ["name", nil]] [shard 104 master]
243931
+  (6.0ms) COMMIT [shard 104 master]
243932
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243933
+  (0.1ms) BEGIN [shard 104 master]
243934
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
243935
+  (4.9ms) COMMIT [shard 104 master]
243936
+  (0.1ms) BEGIN [shard 104 master]
243937
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
243938
+  (0.3ms) COMMIT [shard 104 master]
243939
+  (0.1ms) BEGIN [shard 104 master]
243940
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243941
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243942
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243943
+  (0.1ms) BEGIN [shard 106 master]
243944
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243945
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243946
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243947
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243948
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243949
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243950
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243951
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 66], ["value", 1]] [shard 105 master]
243952
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243953
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 106 LIMIT 1 [shard 104 master]
243954
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243955
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000051], ["value", 3]] [shard 105 master]
243956
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243957
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 105 LIMIT 1 [shard 104 master]
243958
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243959
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000066], ["value", 2]] [shard 106 master]
243960
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243961
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243962
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 51], ["value", 4]] [shard 106 master]
243963
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243964
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243965
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 51], ["value", 5]] [shard 106 master]
243966
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243967
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
243968
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
243969
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
243970
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
243971
+  (0.1ms) SHOW max_identifier_length [shard 106 master]
243972
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
243973
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
243974
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 105 master]
243975
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (66) [shard 105 master]
243976
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (51) [shard 106 master]
243977
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 106 master]
243978
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (51) [shard 106 master]
243979
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (66) [shard 105 master]
243980
+  (0.1ms) ROLLBACK [shard 106 master]
243981
+  (0.1ms) ROLLBACK [shard 105 master]
243982
+  (0.1ms) BEGIN [shard 104 master]
243983
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
243984
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
243985
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
243986
+  (0.0ms) BEGIN [shard 106 master]
243987
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
243988
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
243989
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243990
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
243991
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
243992
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
243993
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243994
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 67], ["value", 1]] [shard 105 master]
243995
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243996
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
243997
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000052], ["value", 3]] [shard 105 master]
243998
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
243999
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244000
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000067], ["value", 2]] [shard 106 master]
244001
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244002
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244003
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 52], ["value", 4]] [shard 106 master]
244004
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244005
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244006
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 52], ["value", 5]] [shard 106 master]
244007
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244008
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244009
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 67], ["value", nil]] [shard 105 master]
244010
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244011
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244012
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244013
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244014
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244015
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 68], ["value", nil]] [shard 105 master]
244016
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244017
+  (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 105 master]
244018
+  (0.1ms) ROLLBACK [shard 106 master]
244019
+  (0.1ms) ROLLBACK [shard 105 master]
244020
+  (0.1ms) BEGIN [shard 104 master]
244021
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244022
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244023
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244024
+  (0.1ms) BEGIN [shard 106 master]
244025
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244026
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244027
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244028
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244029
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244030
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244031
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244032
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 69], ["value", 1]] [shard 105 master]
244033
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244034
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244035
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000053], ["value", 3]] [shard 105 master]
244036
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244037
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244038
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000069], ["value", 2]] [shard 106 master]
244039
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244040
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244041
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 53], ["value", 4]] [shard 106 master]
244042
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244043
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244044
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 53], ["value", 5]] [shard 106 master]
244045
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244046
+  (0.4ms) 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 105 master]
244047
+  (0.3ms) 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 106 master]
244048
+  (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 105 master]
244049
+  (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 106 master]
244050
+  (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 105 master]
244051
+  (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 106 master]
244052
+  (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 105 master]
244053
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (69) [shard 105 master]
244054
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (53) [shard 106 master]
244055
+  (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 106 master]
244056
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (53) [shard 106 master]
244057
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (69) [shard 105 master]
244058
+  (0.2ms) ROLLBACK [shard 106 master]
244059
+  (0.2ms) ROLLBACK [shard 105 master]
244060
+  (0.1ms) BEGIN [shard 104 master]
244061
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244062
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244063
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244064
+  (0.1ms) BEGIN [shard 106 master]
244065
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244066
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244067
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244068
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244069
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244070
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244071
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244072
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 70], ["value", 1]] [shard 105 master]
244073
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244074
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244075
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000054], ["value", 3]] [shard 105 master]
244076
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244077
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244078
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000070], ["value", 2]] [shard 106 master]
244079
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244080
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244081
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 54], ["value", 4]] [shard 106 master]
244082
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244083
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244084
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 54], ["value", 5]] [shard 106 master]
244085
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244086
+  (0.3ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244087
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244088
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244089
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244090
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244091
+  (0.1ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244092
+  (0.1ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 105 master]
244093
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 105 master]
244094
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (54) [shard 106 master]
244095
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 106 master]
244096
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (54) [shard 106 master]
244097
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 105 master]
244098
+  (0.1ms) ROLLBACK [shard 106 master]
244099
+  (0.1ms) ROLLBACK [shard 105 master]
244100
+  (0.0ms) BEGIN [shard 104 master]
244101
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244102
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244103
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244104
+  (0.0ms) BEGIN [shard 106 master]
244105
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244106
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244107
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244108
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244109
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244110
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244111
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244112
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 71], ["value", 1]] [shard 105 master]
244113
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244114
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244115
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000055], ["value", 3]] [shard 105 master]
244116
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244117
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244118
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000071], ["value", 2]] [shard 106 master]
244119
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244120
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
244121
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 55], ["value", 4]] [shard 106 master]
244122
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244123
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244124
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 55], ["value", 5]] [shard 106 master]
244125
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244126
+  (0.3ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244127
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244128
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244129
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244130
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244131
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244132
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 105 master]
244133
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (71) [shard 105 master]
244134
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (55) [shard 106 master]
244135
+  (0.1ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 106 master]
244136
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (55) [shard 106 master]
244137
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (71) [shard 105 master]
244138
+  (0.1ms) ROLLBACK [shard 106 master]
244139
+  (0.1ms) ROLLBACK [shard 105 master]
244140
+  (0.1ms) BEGIN [shard 104 master]
244141
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244142
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244143
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244144
+  (0.0ms) BEGIN [shard 106 master]
244145
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244146
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244147
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244148
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
244149
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244150
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244151
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244152
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 72], ["value", 1]] [shard 105 master]
244153
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244154
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244155
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1060000000000056], ["value", 3]] [shard 105 master]
244156
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244157
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244158
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 1050000000000072], ["value", 2]] [shard 106 master]
244159
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244160
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244161
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 56], ["value", 4]] [shard 106 master]
244162
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244163
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244164
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 56], ["value", 5]] [shard 106 master]
244165
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244166
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244167
+  (0.1ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244168
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244169
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244170
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 105 master]
244171
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 106 master]
244172
+  (0.1ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 105 master]
244173
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (72) [shard 105 master]
244174
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 106 master]
244175
+  (0.2ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 106 master]
244176
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 106 master]
244177
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (72) [shard 105 master]
244178
+  (0.1ms) ROLLBACK [shard 106 master]
244179
+  (0.1ms) ROLLBACK [shard 105 master]
244180
+  (0.0ms) BEGIN [shard 104 master]
244181
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244182
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244183
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244184
+  (0.0ms) BEGIN [shard 106 master]
244185
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244186
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244187
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244188
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244189
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 73], ["value", nil]] [shard 105 master]
244190
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244191
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244192
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244193
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244194
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244195
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 57], ["value", nil]] [shard 106 master]
244196
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244197
+ SQL (0.2ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (73) [shard 105 master]
244198
+ SQL (0.2ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (57) [shard 106 master]
244199
+  (0.1ms) ROLLBACK [shard 106 master]
244200
+  (0.1ms) ROLLBACK [shard 105 master]
244201
+  (0.0ms) BEGIN [shard 104 master]
244202
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244203
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244204
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244205
+  (0.0ms) BEGIN [shard 106 master]
244206
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244207
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244208
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244209
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244210
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 74], ["value", nil]] [shard 105 master]
244211
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244212
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244213
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244214
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244215
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244216
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 58], ["value", nil]] [shard 106 master]
244217
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244218
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
244219
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 104 master]
244220
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
244221
+ SQL (0.3ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (219) [shard 104 master]
244222
+ SQL (0.2ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (74) [shard 105 master]
244223
+ SQL (0.3ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (58) [shard 106 master]
244224
+  (0.1ms) ROLLBACK [shard 106 master]
244225
+  (0.1ms) ROLLBACK [shard 105 master]
244226
+  (0.0ms) BEGIN [shard 104 master]
244227
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244228
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244229
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244230
+  (0.0ms) BEGIN [shard 106 master]
244231
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244232
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244233
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244234
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244235
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 75], ["value", nil]] [shard 105 master]
244236
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244237
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244238
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244239
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244240
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244241
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 59], ["value", nil]] [shard 106 master]
244242
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244243
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 57 [shard 105 master]
244244
+ SQL (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 52 [shard 106 master]
244245
+ SQL (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 57 [shard 105 master]
244246
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 52 [shard 106 master]
244247
+ SQL (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 57 [shard 105 master]
244248
+ SQL (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 52 [shard 106 master]
244249
+  (0.1ms) ROLLBACK [shard 106 master]
244250
+  (0.1ms) ROLLBACK [shard 105 master]
244251
+  (0.0ms) BEGIN [shard 104 master]
244252
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244253
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244254
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244255
+  (0.0ms) BEGIN [shard 106 master]
244256
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244257
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244258
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244259
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244260
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 76], ["value", nil]] [shard 105 master]
244261
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244262
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244263
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244264
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244265
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244266
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 106 master]
244267
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244268
+ SQL (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 58 [shard 105 master]
244269
+ SQL (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 53 [shard 106 master]
244270
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 58 [shard 105 master]
244271
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 53 [shard 106 master]
244272
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 58 [shard 105 master]
244273
+ SQL (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 53 [shard 106 master]
244274
+  (0.1ms) ROLLBACK [shard 106 master]
244275
+  (0.1ms) ROLLBACK [shard 105 master]
244276
+  (0.0ms) BEGIN [shard 104 master]
244277
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244278
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244279
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244280
+  (0.0ms) BEGIN [shard 106 master]
244281
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244282
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244283
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244284
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244285
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 77], ["value", 1]] [shard 105 master]
244286
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244287
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244288
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 77], ["value", 2]] [shard 105 master]
244289
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244290
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244291
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244292
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244293
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244294
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 61], ["value", 3]] [shard 106 master]
244295
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244296
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244297
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 61], ["value", 4]] [shard 106 master]
244298
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244299
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244300
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 61], ["value", 5]] [shard 106 master]
244301
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244302
+  (0.3ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 77 [shard 105 master]
244303
+  (0.1ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 105 master]
244304
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 61 [shard 106 master]
244305
+  (0.1ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 106 master]
244306
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (59, 60) [shard 105 master]
244307
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (54, 55, 56) [shard 106 master]
244308
+  (0.1ms) ROLLBACK [shard 106 master]
244309
+  (0.1ms) ROLLBACK [shard 105 master]
244310
+  (0.0ms) BEGIN [shard 104 master]
244311
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244312
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244313
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244314
+  (0.0ms) BEGIN [shard 106 master]
244315
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244316
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244317
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244318
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244319
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 78], ["value", 1]] [shard 105 master]
244320
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244321
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244322
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 78], ["value", 2]] [shard 105 master]
244323
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244324
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244325
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244326
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244327
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244328
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 62], ["value", 3]] [shard 106 master]
244329
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244330
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244331
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 62], ["value", 4]] [shard 106 master]
244332
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244333
+  (0.0ms) SAVEPOINT active_record_1 [shard 106 master]
244334
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 62], ["value", 5]] [shard 106 master]
244335
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244336
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 78 [shard 105 master]
244337
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 105 master]
244338
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 62 [shard 106 master]
244339
+  (0.1ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 106 master]
244340
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (61, 62) [shard 105 master]
244341
+  (0.3ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (57, 58, 59) [shard 106 master]
244342
+  (0.1ms) ROLLBACK [shard 106 master]
244343
+  (0.1ms) ROLLBACK [shard 105 master]
244344
+  (0.1ms) BEGIN [shard 104 master]
244345
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244346
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244347
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244348
+  (0.1ms) BEGIN [shard 106 master]
244349
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244350
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244351
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244352
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244353
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 79], ["value", 1]] [shard 105 master]
244354
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244355
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244356
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 79], ["value", 2]] [shard 105 master]
244357
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244358
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244359
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244360
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244361
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244362
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 63], ["value", 3]] [shard 106 master]
244363
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244364
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244365
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 63], ["value", 4]] [shard 106 master]
244366
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244367
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244368
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 63], ["value", 5]] [shard 106 master]
244369
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244370
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 79 [shard 105 master]
244371
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 105 master]
244372
+  (0.1ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 63 [shard 106 master]
244373
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 106 master]
244374
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (63, 64) [shard 105 master]
244375
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (60, 61, 62) [shard 106 master]
244376
+  (0.1ms) ROLLBACK [shard 106 master]
244377
+  (0.1ms) ROLLBACK [shard 105 master]
244378
+  (0.1ms) BEGIN [shard 104 master]
244379
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244380
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244381
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244382
+  (0.1ms) BEGIN [shard 106 master]
244383
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244384
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244385
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244386
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244387
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 80], ["value", 1]] [shard 105 master]
244388
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244389
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244390
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 80], ["value", 2]] [shard 105 master]
244391
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244392
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244393
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244394
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244395
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244396
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 64], ["value", 3]] [shard 106 master]
244397
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244398
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244399
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 64], ["value", 4]] [shard 106 master]
244400
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244401
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244402
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 64], ["value", 5]] [shard 106 master]
244403
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244404
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 80 [shard 105 master]
244405
+  (0.1ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 105 master]
244406
+  (0.2ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 64 [shard 106 master]
244407
+  (0.1ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 106 master]
244408
+  (0.2ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (65, 66) [shard 105 master]
244409
+  (0.2ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (63, 64, 65) [shard 106 master]
244410
+  (0.1ms) ROLLBACK [shard 106 master]
244411
+  (0.1ms) ROLLBACK [shard 105 master]
244412
+  (0.1ms) BEGIN [shard 104 master]
244413
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244414
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244415
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244416
+  (0.0ms) BEGIN [shard 106 master]
244417
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244418
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 105 master]
244419
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244420
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244421
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 81], ["value", 1]] [shard 105 master]
244422
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244423
+  (0.1ms) SAVEPOINT active_record_1 [shard 105 master]
244424
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 81], ["value", 2]] [shard 105 master]
244425
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244426
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244427
+ 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", Mon, 04 May 2015 15:38:23 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00]] [shard 106 master]
244428
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244429
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244430
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 65], ["value", 3]] [shard 106 master]
244431
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244432
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244433
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 65], ["value", 4]] [shard 106 master]
244434
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244435
+  (0.1ms) SAVEPOINT active_record_1 [shard 106 master]
244436
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["updated_at", Mon, 04 May 2015 15:38:23 UTC +00:00], ["user_id", 65], ["value", 5]] [shard 106 master]
244437
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 106 master]
244438
+  (0.3ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 81 [shard 105 master]
244439
+  (0.3ms) SELECT COUNT(*) FROM "appendages" [shard 105 master]
244440
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 65 [shard 106 master]
244441
+  (0.2ms) SELECT COUNT(*) FROM "appendages" [shard 106 master]
244442
+  (0.3ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (67, 68) [shard 105 master]
244443
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (66, 67, 68) [shard 106 master]
244444
+  (0.1ms) ROLLBACK [shard 106 master]
244445
+  (0.1ms) ROLLBACK [shard 105 master]
244446
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
244447
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244448
+  (0.1ms) BEGIN [shard 104 master]
244449
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244450
+ 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", 104], ["name", nil]] [shard 104 master]
244451
+  (0.3ms) COMMIT [shard 104 master]
244452
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244453
+  (0.1ms) BEGIN [shard 104 master]
244454
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
244455
+  (0.4ms) COMMIT [shard 104 master]
244456
+  (0.1ms) BEGIN [shard 104 master]
244457
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
244458
+  (0.2ms) COMMIT [shard 104 master]
244459
+  (0.0ms) BEGIN [shard 104 master]
244460
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244461
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244462
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244463
+  (0.0ms) BEGIN [shard 106 master]
244464
+  (0.1ms) SAVEPOINT active_record_1 [shard 104 master]
244465
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "30"], ["default", false], ["name", nil]] [shard 104 master]
244466
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
244467
+  (0.0ms) SAVEPOINT active_record_1 [shard 104 master]
244468
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "30"], ["default", false], ["name", nil]] [shard 104 master]
244469
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 104 master]
244470
+  (0.1ms) ROLLBACK [shard 106 master]
244471
+  (0.1ms) ROLLBACK [shard 104 master]
244472
+  (0.0ms) BEGIN [shard 104 master]
244473
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244474
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244475
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244476
+  (0.1ms) BEGIN [shard 106 master]
244477
+  (0.1ms) ROLLBACK [shard 106 master]
244478
+  (0.1ms) ROLLBACK [shard 104 master]
244479
+  (0.1ms) BEGIN [shard 104 master]
244480
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244481
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244482
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244483
+  (0.1ms) BEGIN [shard 106 master]
244484
+  (0.1ms) ROLLBACK [shard 106 master]
244485
+  (0.1ms) ROLLBACK [shard 104 master]
244486
+  (0.1ms) BEGIN [shard 104 master]
244487
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244488
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244489
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244490
+  (0.0ms) BEGIN [shard 106 master]
244491
+  (0.1ms) ROLLBACK [shard 106 master]
244492
+  (0.1ms) ROLLBACK [shard 104 master]
244493
+ SQL (6.0ms) DELETE FROM "switchman_shards" [shard 104 master]
244494
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244495
+  (0.1ms) BEGIN [shard 104 master]
244496
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244497
+ 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", 104], ["name", nil]] [shard 104 master]
244498
+  (5.9ms) COMMIT [shard 104 master]
244499
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244500
+  (0.1ms) BEGIN [shard 104 master]
244501
+ 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", 105], ["name", "switchman_test_shard_105"]] [shard 104 master]
244502
+  (11.3ms) COMMIT [shard 104 master]
244503
+  (0.1ms) BEGIN [shard 104 master]
244504
+ 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", 106], ["name", "switchman_test_shard_106"]] [shard 104 master]
244505
+  (0.4ms) COMMIT [shard 104 master]
244506
+  (0.1ms) BEGIN [shard 104 master]
244507
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244508
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 105]] [shard 104 master]
244509
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 106]] [shard 104 master]
244510
+  (0.0ms) BEGIN [shard 106 master]
244511
+  (0.0ms) SAVEPOINT active_record_1 [shard 105 master]
244512
+ 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", Mon, 04 May 2015 15:39:23 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Mon, 04 May 2015 15:39:23 UTC +00:00]] [shard 105 master]
244513
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 105 master]
244514
+  (0.0ms) ROLLBACK [shard 106 master]
244515
+  (0.0ms) ROLLBACK [shard 105 master]
244516
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 104 master]
244517
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 104 master]
244518
+  (5.7ms) DROP SCHEMA switchman_test_shard_105 CASCADE [shard 105 deploy]
244519
+  (0.1ms) BEGIN
244520
+ SQL (0.3ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 105]]
244521
+  (0.1ms) COMMIT
244522
+  (6.3ms) DROP SCHEMA switchman_test_shard_106 CASCADE [shard 106 deploy]
244523
+  (0.2ms) BEGIN
244524
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 106]]
244525
+  (0.1ms) COMMIT