switchman 1.2.25 → 1.2.26

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: 4b07a62aa7adf52ac7ccf025c54ce138a93c1257
4
- data.tar.gz: 94deae8789d373b38df9ff32240280e02b9cd383
3
+ metadata.gz: d446c88ba224e3f62f97e7be128f115b39fa5a47
4
+ data.tar.gz: c9666aec9c95601747ad1ea10378b6fa53741df9
5
5
  SHA512:
6
- metadata.gz: 27de9bbe768eac982398109f6a4e91da5583d5533c1b7c39baaea56299e0f923dc9c49f515c8a4fb23fb570eb2410fbfbb49ab968b2a58d9ea36fa7bc3a4835f
7
- data.tar.gz: 6b4e91c90cfc263e7a72b39666e5045ce700cfc12dc01b4ba4841277c1b9573bd79f04667ed72de143b069c83be81b356250547731832e0154193de685a672d1
6
+ metadata.gz: 78d66269b0fb652e685c324b6ea38a92b18f31fddab28109ef7144581e37c989c2e6c0a84b3ad461f3aafe7624f0333267b5c176093b4d7e12d8e0f356fcf416
7
+ data.tar.gz: a90ec46fa09167fe4456d25facd7b3c65020751ec90ede6ec634a43edb737425ba959363423dd1d9f6c704ecebec06029beba616c0682297dc021097937217cc
@@ -145,6 +145,7 @@ module Switchman
145
145
  key && key.to_s
146
146
  end
147
147
  relative_owner_keys.compact!
148
+ relative_owner_keys.uniq!
148
149
  records_for(relative_owner_keys)
149
150
  end
150
151
  end
@@ -206,8 +206,15 @@ module Switchman
206
206
  ::ActiveRecord::Migration.verbose = false
207
207
 
208
208
  reset_column_information
209
- ::ActiveRecord::Migrator.migrate(::Rails.root + "db/migrate/") unless create_schema == false
210
- reset_column_information
209
+ unless create_schema == false
210
+ migrate = -> { ::ActiveRecord::Migrator.migrate(::Rails.root + "db/migrate/") }
211
+ if ::ActiveRecord::Base.connection.supports_ddl_transactions?
212
+ ::ActiveRecord::Base.connection.transaction(requires_new: true, &migrate)
213
+ else
214
+ migrate.call
215
+ end
216
+ reset_column_information
217
+ end
211
218
  ensure
212
219
  ::ActiveRecord::Migration.verbose = old_verbose
213
220
  ::ActiveRecord::Base.connection.raw_connection.set_notice_processor(&old_proc) if old_proc
@@ -1,3 +1,3 @@
1
1
  module Switchman
2
- VERSION = "1.2.25"
2
+ VERSION = "1.2.26"
3
3
  end
Binary file
@@ -213035,3 +213035,3516 @@ LINE 1: SELECT COUNT(*) FROM "users"
213035
213035
   (0.2ms) BEGIN
213036
213036
  SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1650]]
213037
213037
   (0.1ms) COMMIT
213038
+  (0.5ms) SELECT * FROM unnest(current_schemas(false))
213039
+ Switchman::Shard Load (7.0ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
213040
+ SQL (0.5ms) DELETE FROM "switchman_shards"
213041
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
213042
+  (0.1ms) BEGIN
213043
+ Switchman::Shard Exists (0.3ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
213044
+ SQL (0.4ms) INSERT INTO "switchman_shards" ("default") VALUES ($1) RETURNING "id" [["default", "t"]]
213045
+  (6.1ms) COMMIT
213046
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
213047
+ 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 "switchman_shards"."id" ASC LIMIT 1
213048
+  (0.1ms) BEGIN
213049
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "test"], ["name", "public"]]
213050
+  (0.5ms) CREATE SCHEMA switchman_test_shard_1672 [shard 1672 deploy]
213051
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 deploy]
213052
+  (14.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1672 deploy]
213053
+  (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1672 deploy]
213054
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1672 deploy]
213055
+ Migrating to CreateUsers (20130403132607)
213056
+  (7.9ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213057
+ SQL (6.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 1672 deploy]
213058
+ Migrating to CreateAppendages (20130411202442)
213059
+  (7.8ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213060
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 1672 deploy]
213061
+ Migrating to CreateMirrorUsers (20130411202551)
213062
+  (8.4ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213063
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 1672 deploy]
213064
+ Migrating to CreateDigits (20131022202028)
213065
+  (7.8ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213066
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 1672 deploy]
213067
+ Migrating to CreateFeatures (20131206172923)
213068
+  (7.6ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213069
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 1672 deploy]
213070
+ Migrating to AddParentIdToUsers (20140123154135)
213071
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1672 deploy]
213072
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 1672 deploy]
213073
+ Migrating to CreateRoots (20140219183820)
213074
+  (7.9ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1672 deploy]
213075
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 1672 deploy]
213076
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1672 deploy]
213077
+ SQL (0.3ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1672 [["name", "switchman_test_shard_1672"]] [shard 1671 master]
213078
+  (6.8ms) COMMIT [shard 1671 master]
213079
+ Switchman::Shard Load (0.8ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '1' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213080
+  (0.1ms) BEGIN [shard 1671 master]
213081
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "1"], ["name", "public"]] [shard 1671 master]
213082
+  (0.3ms) COMMIT [shard 1671 master]
213083
+  (0.6ms) CREATE SCHEMA switchman_test_shard_1673 [shard 1673 deploy]
213084
+  (0.1ms) BEGIN [shard 1673 deploy]
213085
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1673 deploy]
213086
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1673 deploy]
213087
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1673 deploy]
213088
+ Migrating to CreateUsers (20130403132607)
213089
+  (2.9ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213090
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 1673 deploy]
213091
+ Migrating to CreateAppendages (20130411202442)
213092
+  (1.9ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213093
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 1673 deploy]
213094
+ Migrating to CreateMirrorUsers (20130411202551)
213095
+  (1.6ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213096
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 1673 deploy]
213097
+ Migrating to CreateDigits (20131022202028)
213098
+  (2.7ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213099
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 1673 deploy]
213100
+ Migrating to CreateFeatures (20131206172923)
213101
+  (1.8ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213102
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 1673 deploy]
213103
+ Migrating to AddParentIdToUsers (20140123154135)
213104
+  (0.3ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1673 deploy]
213105
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 1673 deploy]
213106
+ Migrating to CreateRoots (20140219183820)
213107
+  (2.3ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1673 deploy]
213108
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 1673 deploy]
213109
+  (1.0ms) COMMIT [shard 1673 deploy]
213110
+  (0.1ms) BEGIN [shard 1671 master]
213111
+ SQL (0.2ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1673 [["name", "switchman_test_shard_1673"]] [shard 1671 master]
213112
+  (0.3ms) COMMIT [shard 1671 master]
213113
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
213114
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213115
+  (0.1ms) BEGIN [shard 1671 master]
213116
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
213117
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
213118
+  (0.3ms) COMMIT [shard 1671 master]
213119
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213120
+  (0.1ms) BEGIN [shard 1671 master]
213121
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
213122
+  (0.3ms) COMMIT [shard 1671 master]
213123
+  (0.1ms) BEGIN [shard 1671 master]
213124
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
213125
+  (0.3ms) COMMIT [shard 1671 master]
213126
+  (0.1ms) BEGIN [shard 1671 master]
213127
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213128
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213129
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213130
+  (0.1ms) BEGIN [shard 1673 master]
213131
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213132
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.562886"], ["updated_at", "2015-01-19 20:20:02.562886"]] [shard 1672 master]
213133
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213134
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213135
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 1672 master]
213136
+  (0.1ms) ROLLBACK [shard 1673 master]
213137
+  (0.1ms) ROLLBACK [shard 1672 master]
213138
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
213139
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213140
+  (0.1ms) BEGIN [shard 1671 master]
213141
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
213142
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
213143
+  (0.4ms) COMMIT [shard 1671 master]
213144
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213145
+  (0.1ms) BEGIN [shard 1671 master]
213146
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
213147
+  (0.3ms) COMMIT [shard 1671 master]
213148
+  (0.1ms) BEGIN [shard 1671 master]
213149
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
213150
+  (0.3ms) COMMIT [shard 1671 master]
213151
+  (0.1ms) BEGIN [shard 1671 master]
213152
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213153
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213154
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213155
+  (0.1ms) BEGIN [shard 1673 master]
213156
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213157
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.585973"], ["updated_at", "2015-01-19 20:20:02.585973"]] [shard 1671 master]
213158
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213159
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213160
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.590567"], ["updated_at", "2015-01-19 20:20:02.590567"]] [shard 1672 master]
213161
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213162
+  (0.1ms) ROLLBACK [shard 1673 master]
213163
+  (0.1ms) ROLLBACK [shard 1672 master]
213164
+  (0.1ms) BEGIN [shard 1671 master]
213165
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213166
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213167
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213168
+  (0.1ms) BEGIN [shard 1673 master]
213169
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213170
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.596614"], ["updated_at", "2015-01-19 20:20:02.596614"]] [shard 1672 master]
213171
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213172
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213173
+ SQL (6.4ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.600319"], ["updated_at", "2015-01-19 20:20:02.600319"]] [shard 1672 master]
213174
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213175
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
213176
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213177
+ SQL (6.3ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.616777"], ["updated_at", "2015-01-19 20:20:02.616777"]] [shard 1673 master]
213178
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213179
+  (0.1ms) ROLLBACK [shard 1673 master]
213180
+  (0.2ms) ROLLBACK [shard 1671 master]
213181
+  (0.1ms) BEGIN [shard 1671 master]
213182
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213183
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213184
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213185
+  (0.1ms) BEGIN [shard 1673 master]
213186
+  (0.1ms) ROLLBACK [shard 1673 master]
213187
+  (0.1ms) ROLLBACK [shard 1671 master]
213188
+  (0.1ms) BEGIN [shard 1671 master]
213189
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213190
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213191
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213192
+  (0.1ms) BEGIN [shard 1673 master]
213193
+  (0.1ms) ROLLBACK [shard 1673 master]
213194
+  (0.1ms) ROLLBACK [shard 1671 master]
213195
+  (0.1ms) BEGIN [shard 1671 master]
213196
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213197
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213198
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213199
+  (0.1ms) BEGIN [shard 1673 master]
213200
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213201
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.639150"], ["updated_at", "2015-01-19 20:20:02.639150"]] [shard 1672 master]
213202
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213203
+  (0.1ms) ROLLBACK [shard 1673 master]
213204
+  (0.1ms) ROLLBACK [shard 1672 master]
213205
+  (0.1ms) BEGIN [shard 1671 master]
213206
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213207
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213208
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213209
+  (0.1ms) BEGIN [shard 1673 master]
213210
+  (0.1ms) ROLLBACK [shard 1673 master]
213211
+  (0.1ms) ROLLBACK [shard 1671 master]
213212
+  (0.1ms) BEGIN [shard 1671 master]
213213
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213214
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213215
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213216
+  (0.1ms) BEGIN [shard 1673 master]
213217
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213218
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.648419"], ["updated_at", "2015-01-19 20:20:02.648419"]] [shard 1671 master]
213219
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213220
+  (0.1ms) ROLLBACK [shard 1673 master]
213221
+  (0.1ms) ROLLBACK [shard 1671 master]
213222
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
213223
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213224
+  (0.1ms) BEGIN [shard 1671 master]
213225
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
213226
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
213227
+  (0.3ms) COMMIT [shard 1671 master]
213228
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213229
+  (0.1ms) BEGIN [shard 1671 master]
213230
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
213231
+  (0.3ms) COMMIT [shard 1671 master]
213232
+  (0.1ms) BEGIN [shard 1671 master]
213233
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
213234
+  (0.2ms) COMMIT [shard 1671 master]
213235
+  (0.1ms) BEGIN [shard 1671 master]
213236
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213237
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213238
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213239
+  (0.1ms) BEGIN [shard 1673 master]
213240
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.662217"], ["updated_at", "2015-01-19 20:20:02.662217"]] [shard 1672 master]
213242
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213243
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213244
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.663792"], ["updated_at", "2015-01-19 20:20:02.663792"]] [shard 1672 master]
213245
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213246
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213247
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.665358"], ["updated_at", "2015-01-19 20:20:02.665358"]] [shard 1671 master]
213248
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213249
+ User Load (0.3ms) SELECT "users".* FROM "users" [shard 1672 master]
213250
+ User Load (0.3ms) SELECT "users".* FROM "users" [shard 1671 master]
213251
+  (0.1ms) ROLLBACK [shard 1673 master]
213252
+  (0.1ms) ROLLBACK [shard 1671 master]
213253
+  (0.1ms) BEGIN [shard 1671 master]
213254
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213255
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213256
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213257
+  (0.1ms) BEGIN [shard 1673 master]
213258
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1671 master]
213259
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213260
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.672995"], ["updated_at", "2015-01-19 20:20:02.672995"]] [shard 1671 master]
213261
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213262
+  (0.1ms) ROLLBACK [shard 1673 master]
213263
+  (0.1ms) ROLLBACK [shard 1671 master]
213264
+  (0.1ms) BEGIN [shard 1671 master]
213265
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213266
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213267
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213268
+  (0.1ms) BEGIN [shard 1673 master]
213269
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1671 master]
213270
+  (0.1ms) BEGIN [shard 1671 master]
213271
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.689200"], ["updated_at", "2015-01-19 20:20:02.689200"]] [shard 1671 master]
213272
+  (0.4ms) COMMIT [shard 1671 master]
213273
+  (0.1ms) ROLLBACK [shard 1673 master]
213274
+  (0.1ms) ROLLBACK [shard 1671 master]
213275
+  (0.1ms) BEGIN [shard 1671 master]
213276
+ Switchman::Shard Load (0.5ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213277
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213278
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213279
+  (0.1ms) BEGIN [shard 1673 master]
213280
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213281
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213282
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.699811"], ["updated_at", "2015-01-19 20:20:02.699811"]] [shard 1671 master]
213283
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213284
+  (0.1ms) ROLLBACK [shard 1673 master]
213285
+  (0.1ms) ROLLBACK [shard 1671 master]
213286
+  (0.1ms) BEGIN [shard 1671 master]
213287
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213288
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213289
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213290
+  (0.1ms) BEGIN [shard 1673 master]
213291
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213292
+  (0.1ms) BEGIN [shard 1671 master]
213293
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.706555"], ["updated_at", "2015-01-19 20:20:02.706555"]] [shard 1671 master]
213294
+  (0.3ms) COMMIT [shard 1671 master]
213295
+  (0.1ms) ROLLBACK [shard 1673 master]
213296
+  (0.1ms) ROLLBACK [shard 1671 master]
213297
+  (0.1ms) BEGIN [shard 1671 master]
213298
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213299
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213300
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213301
+  (0.1ms) BEGIN [shard 1673 master]
213302
+  (0.1ms) ROLLBACK [shard 1673 master]
213303
+  (0.1ms) ROLLBACK [shard 1671 master]
213304
+  (0.1ms) BEGIN [shard 1671 master]
213305
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213306
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213307
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213308
+  (0.1ms) BEGIN [shard 1673 master]
213309
+  (0.1ms) ROLLBACK [shard 1673 master]
213310
+  (0.1ms) ROLLBACK [shard 1671 master]
213311
+  (0.1ms) BEGIN [shard 1671 master]
213312
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213313
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213314
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213315
+  (0.1ms) BEGIN [shard 1673 master]
213316
+  (0.1ms) ROLLBACK [shard 1673 master]
213317
+  (0.1ms) ROLLBACK [shard 1671 master]
213318
+  (0.1ms) BEGIN [shard 1671 master]
213319
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213320
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213321
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213322
+  (0.1ms) BEGIN [shard 1673 master]
213323
+  (0.1ms) ROLLBACK [shard 1673 master]
213324
+  (0.1ms) ROLLBACK [shard 1671 master]
213325
+  (0.1ms) BEGIN [shard 1671 master]
213326
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213327
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213328
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213329
+  (0.1ms) BEGIN [shard 1673 master]
213330
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213331
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.736211"], ["updated_at", "2015-01-19 20:20:02.736211"]] [shard 1671 master]
213332
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213333
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1671 master]
213334
+ SQL (0.1ms) DELETE FROM "users" [shard 1671 master]
213335
+  (0.1ms) ROLLBACK [shard 1673 master]
213336
+  (0.1ms) ROLLBACK [shard 1671 master]
213337
+  (0.1ms) BEGIN [shard 1671 master]
213338
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213339
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213340
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213341
+  (0.1ms) BEGIN [shard 1673 master]
213342
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213343
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.742608"], ["updated_at", "2015-01-19 20:20:02.742608"]] [shard 1671 master]
213344
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213345
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213346
+ SQL (0.1ms) DELETE FROM "users" [shard 1671 master]
213347
+  (0.1ms) ROLLBACK [shard 1673 master]
213348
+  (0.1ms) ROLLBACK [shard 1671 master]
213349
+  (0.1ms) BEGIN [shard 1671 master]
213350
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.750029"], ["updated_at", "2015-01-19 20:20:02.750029"]] [shard 1671 master]
213351
+  (0.4ms) COMMIT [shard 1671 master]
213352
+ User Load (0.4ms) SELECT "users".* FROM "users" [shard 1671 master]
213353
+ SQL (0.5ms) DELETE FROM "users" [shard 1671 master]
213354
+ SQL (0.3ms) DELETE FROM "users" [shard 1671 master]
213355
+  (0.1ms) BEGIN [shard 1671 master]
213356
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.759708"], ["updated_at", "2015-01-19 20:20:02.759708"]] [shard 1671 master]
213357
+  (0.4ms) COMMIT [shard 1671 master]
213358
+  (0.1ms) BEGIN [shard 1671 master]
213359
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:02.763308"], ["name", "a"], ["updated_at", "2015-01-19 20:20:02.763308"]] [shard 1671 master]
213360
+  (0.4ms) COMMIT [shard 1671 master]
213361
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2771]] [shard 1671 master]
213362
+ CACHE (0.0ms) 1671::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2771]]
213363
+ CACHE (0.0ms) 1671::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2771]]
213364
+  (0.2ms) BEGIN [shard 1671 master]
213365
+ SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = 2771 [["name", "b"], ["updated_at", "2015-01-19 20:20:02.770349"]] [shard 1671 master]
213366
+  (0.3ms) COMMIT [shard 1671 master]
213367
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2771]] [shard 1671 master]
213368
+ CACHE (0.0ms) 1671::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2771]]
213369
+ SQL (0.5ms) DELETE FROM "users" [shard 1671 master]
213370
+  (0.1ms) BEGIN [shard 1671 master]
213371
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.777125"], ["updated_at", "2015-01-19 20:20:02.777125"]] [shard 1671 master]
213372
+  (0.3ms) COMMIT [shard 1671 master]
213373
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213374
+ SQL (0.3ms) DELETE FROM "users" [shard 1671 master]
213375
+ SQL (0.2ms) DELETE FROM "users" [shard 1671 master]
213376
+  (0.1ms) BEGIN [shard 1671 master]
213377
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213378
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213379
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213380
+  (0.1ms) BEGIN [shard 1673 master]
213381
+  (0.1ms) ROLLBACK [shard 1673 master]
213382
+  (0.1ms) ROLLBACK [shard 1671 master]
213383
+  (0.1ms) BEGIN [shard 1671 master]
213384
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213385
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213386
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213387
+  (0.1ms) BEGIN [shard 1673 master]
213388
+  (0.1ms) ROLLBACK [shard 1673 master]
213389
+  (0.1ms) ROLLBACK [shard 1671 master]
213390
+  (0.1ms) BEGIN [shard 1671 master]
213391
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213392
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213393
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213394
+  (0.1ms) BEGIN [shard 1673 master]
213395
+  (0.1ms) ROLLBACK [shard 1673 master]
213396
+  (0.1ms) ROLLBACK [shard 1671 master]
213397
+  (0.1ms) BEGIN [shard 1671 master]
213398
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213399
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213400
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213401
+  (0.1ms) BEGIN [shard 1673 master]
213402
+  (0.1ms) ROLLBACK [shard 1673 master]
213403
+  (0.1ms) ROLLBACK [shard 1671 master]
213404
+  (0.1ms) BEGIN [shard 1671 master]
213405
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213406
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213407
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213408
+  (0.1ms) BEGIN [shard 1673 master]
213409
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213410
+  (0.1ms) ROLLBACK [shard 1673 master]
213411
+  (0.1ms) ROLLBACK [shard 1671 master]
213412
+  (0.1ms) BEGIN [shard 1671 master]
213413
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213414
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213415
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213416
+  (0.1ms) BEGIN [shard 1673 master]
213417
+ User Load (0.1ms) SELECT "users".* FROM "users" [shard 1671 master]
213418
+  (0.1ms) ROLLBACK [shard 1673 master]
213419
+  (0.1ms) ROLLBACK [shard 1671 master]
213420
+  (0.1ms) BEGIN [shard 1671 master]
213421
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213422
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213423
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213424
+  (0.1ms) BEGIN [shard 1673 master]
213425
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213426
+  (0.1ms) ROLLBACK [shard 1673 master]
213427
+  (0.1ms) ROLLBACK [shard 1671 master]
213428
+  (0.1ms) BEGIN [shard 1671 master]
213429
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213430
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213431
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213432
+  (0.1ms) BEGIN [shard 1673 master]
213433
+ User Load (0.2ms) SELECT "users".* FROM "users" FOR UPDATE [shard 1671 master]
213434
+  (0.1ms) ROLLBACK [shard 1673 master]
213435
+  (0.1ms) ROLLBACK [shard 1671 master]
213436
+  (0.1ms) BEGIN [shard 1671 master]
213437
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213438
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213439
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213440
+  (0.1ms) BEGIN [shard 1673 master]
213441
+  (0.1ms) ROLLBACK [shard 1673 master]
213442
+  (0.1ms) ROLLBACK [shard 1671 master]
213443
+  (0.1ms) BEGIN [shard 1671 master]
213444
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213445
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213446
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213447
+  (0.1ms) BEGIN [shard 1673 master]
213448
+  (0.1ms) ROLLBACK [shard 1673 master]
213449
+  (0.1ms) ROLLBACK [shard 1671 master]
213450
+  (0.1ms) BEGIN [shard 1671 master]
213451
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213452
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213453
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213454
+  (0.1ms) BEGIN [shard 1673 master]
213455
+  (0.1ms) ROLLBACK [shard 1673 master]
213456
+  (0.1ms) ROLLBACK [shard 1671 master]
213457
+  (0.1ms) BEGIN [shard 1671 master]
213458
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213459
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213460
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213461
+  (0.1ms) BEGIN [shard 1673 master]
213462
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213463
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.834209"], ["updated_at", "2015-01-19 20:20:02.834209"]] [shard 1671 master]
213464
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213465
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213466
+ SQL (0.2ms) UPDATE "users" SET "updated_at" = '2015-01-19 20:20:02.835857' [shard 1671 master]
213467
+  (0.1ms) ROLLBACK [shard 1673 master]
213468
+  (0.1ms) ROLLBACK [shard 1671 master]
213469
+  (0.1ms) BEGIN [shard 1671 master]
213470
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213471
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213472
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213473
+  (0.1ms) BEGIN [shard 1673 master]
213474
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213475
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.841198"], ["updated_at", "2015-01-19 20:20:02.841198"]] [shard 1671 master]
213476
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213477
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213478
+ SQL (0.2ms) UPDATE "users" SET "updated_at" = '2015-01-19 20:20:02.843085' [shard 1671 master]
213479
+  (0.1ms) ROLLBACK [shard 1673 master]
213480
+  (0.2ms) ROLLBACK [shard 1671 master]
213481
+  (0.1ms) BEGIN [shard 1671 master]
213482
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.845828"], ["updated_at", "2015-01-19 20:20:02.845828"]] [shard 1671 master]
213483
+  (0.3ms) COMMIT [shard 1671 master]
213484
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213485
+ SQL (0.3ms) UPDATE "users" SET "updated_at" = '2015-01-19 20:20:02.847948' [shard 1671 master]
213486
+ SQL (0.3ms) DELETE FROM "users" [shard 1671 master]
213487
+  (0.1ms) BEGIN [shard 1671 master]
213488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.850909"], ["updated_at", "2015-01-19 20:20:02.850909"]] [shard 1671 master]
213489
+  (0.3ms) COMMIT [shard 1671 master]
213490
+ User Load (0.2ms) SELECT "users".* FROM "users" [shard 1671 master]
213491
+ SQL (0.3ms) UPDATE "users" SET "updated_at" = '2015-01-19 20:20:02.852960' [shard 1671 master]
213492
+ SQL (0.3ms) DELETE FROM "users" [shard 1671 master]
213493
+  (0.1ms) BEGIN [shard 1671 master]
213494
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213495
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213496
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213497
+  (0.1ms) BEGIN [shard 1673 master]
213498
+  (0.1ms) ROLLBACK [shard 1673 master]
213499
+  (0.1ms) ROLLBACK [shard 1671 master]
213500
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
213501
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213502
+  (0.1ms) BEGIN [shard 1671 master]
213503
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
213504
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
213505
+  (0.3ms) COMMIT [shard 1671 master]
213506
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213507
+  (0.1ms) BEGIN [shard 1671 master]
213508
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
213509
+  (0.2ms) COMMIT [shard 1671 master]
213510
+  (0.1ms) BEGIN [shard 1671 master]
213511
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
213512
+  (0.2ms) COMMIT [shard 1671 master]
213513
+  (0.1ms) BEGIN [shard 1671 master]
213514
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213515
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213516
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213517
+  (0.1ms) BEGIN [shard 1673 master]
213518
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213519
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "2"]] [shard 1671 master]
213520
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213521
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213522
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "2"]] [shard 1671 master]
213523
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213524
+  (0.1ms) ROLLBACK [shard 1673 master]
213525
+  (0.1ms) ROLLBACK [shard 1671 master]
213526
+  (0.1ms) BEGIN [shard 1671 master]
213527
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213528
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213529
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213530
+  (0.1ms) BEGIN [shard 1673 master]
213531
+  (0.1ms) ROLLBACK [shard 1673 master]
213532
+  (0.1ms) ROLLBACK [shard 1671 master]
213533
+  (0.1ms) BEGIN [shard 1671 master]
213534
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213535
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213536
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213537
+  (0.1ms) BEGIN [shard 1673 master]
213538
+  (0.1ms) ROLLBACK [shard 1673 master]
213539
+  (0.1ms) ROLLBACK [shard 1671 master]
213540
+  (0.1ms) BEGIN [shard 1671 master]
213541
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213542
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213543
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213544
+  (0.1ms) BEGIN [shard 1673 master]
213545
+  (0.1ms) ROLLBACK [shard 1673 master]
213546
+  (0.1ms) ROLLBACK [shard 1671 master]
213547
+ SQL (6.1ms) DELETE FROM "switchman_shards" [shard 1671 master]
213548
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213549
+  (0.1ms) BEGIN [shard 1671 master]
213550
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
213551
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
213552
+  (11.8ms) COMMIT [shard 1671 master]
213553
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213554
+  (0.1ms) BEGIN [shard 1671 master]
213555
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
213556
+  (0.3ms) COMMIT [shard 1671 master]
213557
+  (0.1ms) BEGIN [shard 1671 master]
213558
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
213559
+  (0.3ms) COMMIT [shard 1671 master]
213560
+  (0.1ms) BEGIN [shard 1671 master]
213561
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213562
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213563
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213564
+  (0.1ms) BEGIN [shard 1673 master]
213565
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213566
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.943333"], ["updated_at", "2015-01-19 20:20:02.943333"]] [shard 1672 master]
213567
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213568
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213569
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.945178"], ["updated_at", "2015-01-19 20:20:02.945178"]] [shard 1673 master]
213570
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213571
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213572
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:02.955780"], ["updated_at", "2015-01-19 20:20:02.955780"], ["user_id", 7]] [shard 1672 master]
213573
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213574
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 7]] [shard 1672 master]
213575
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
213576
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 7]] [shard 1672 master]
213577
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 7]] [shard 1672 master]
213578
+  (0.1ms) ROLLBACK [shard 1673 master]
213579
+  (0.2ms) ROLLBACK [shard 1672 master]
213580
+  (0.2ms) BEGIN [shard 1671 master]
213581
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213582
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213583
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213584
+  (0.1ms) BEGIN [shard 1673 master]
213585
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213586
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.971274"], ["updated_at", "2015-01-19 20:20:02.971274"]] [shard 1672 master]
213587
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213588
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213589
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.973667"], ["updated_at", "2015-01-19 20:20:02.973667"]] [shard 1673 master]
213590
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213591
+  (0.1ms) ROLLBACK [shard 1673 master]
213592
+  (0.1ms) ROLLBACK [shard 1672 master]
213593
+  (0.1ms) BEGIN [shard 1671 master]
213594
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213595
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213596
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213597
+  (0.1ms) BEGIN [shard 1673 master]
213598
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213599
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.982601"], ["updated_at", "2015-01-19 20:20:02.982601"]] [shard 1672 master]
213600
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213601
+  (0.2ms) SAVEPOINT active_record_1 [shard 1673 master]
213602
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.984942"], ["updated_at", "2015-01-19 20:20:02.984942"]] [shard 1673 master]
213603
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213604
+  (0.1ms) ROLLBACK [shard 1673 master]
213605
+  (0.1ms) ROLLBACK [shard 1672 master]
213606
+  (0.1ms) BEGIN [shard 1671 master]
213607
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213608
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213609
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213610
+  (0.1ms) BEGIN [shard 1673 master]
213611
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213612
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.993473"], ["updated_at", "2015-01-19 20:20:02.993473"]] [shard 1672 master]
213613
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213614
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213615
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:02.995159"], ["updated_at", "2015-01-19 20:20:02.995159"]] [shard 1673 master]
213616
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213617
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213618
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:02.998765"], ["updated_at", "2015-01-19 20:20:02.998765"], ["user_id", 10]] [shard 1672 master]
213619
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213620
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213621
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213622
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.002145"], ["updated_at", "2015-01-19 20:20:03.002145"], ["user_id", 4]] [shard 1673 master]
213623
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213624
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
213625
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1673 LIMIT 1 [shard 1671 master]
213626
+  (0.2ms) ROLLBACK [shard 1673 master]
213627
+  (0.1ms) ROLLBACK [shard 1672 master]
213628
+  (0.1ms) BEGIN [shard 1671 master]
213629
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213630
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213631
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213632
+  (0.1ms) BEGIN [shard 1673 master]
213633
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213634
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.012030"], ["updated_at", "2015-01-19 20:20:03.012030"]] [shard 1672 master]
213635
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213636
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213637
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.013763"], ["updated_at", "2015-01-19 20:20:03.013763"]] [shard 1673 master]
213638
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213639
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213640
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.016529"], ["updated_at", "2015-01-19 20:20:03.016529"], ["user_id", 11]] [shard 1672 master]
213641
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213642
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213643
+ SQL (5.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 4], ["created_at", "2015-01-19 20:20:03.025591"], ["updated_at", "2015-01-19 20:20:03.025591"]] [shard 1672 master]
213644
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213645
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."id" = $2 LIMIT 1 [["user_id", 11], ["id", 1]] [shard 1672 master]
213646
+  (0.1ms) ROLLBACK [shard 1673 master]
213647
+  (0.1ms) ROLLBACK [shard 1672 master]
213648
+  (0.1ms) BEGIN [shard 1671 master]
213649
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213650
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213651
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213652
+  (0.1ms) BEGIN [shard 1673 master]
213653
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.046631"], ["updated_at", "2015-01-19 20:20:03.046631"]] [shard 1672 master]
213655
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213656
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213657
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.048624"], ["updated_at", "2015-01-19 20:20:03.048624"]] [shard 1673 master]
213658
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213659
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213660
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.051751"], ["updated_at", "2015-01-19 20:20:03.051751"], ["user_id", 12]] [shard 1672 master]
213661
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213662
+  (0.1ms) ROLLBACK [shard 1673 master]
213663
+  (0.1ms) ROLLBACK [shard 1672 master]
213664
+  (0.1ms) BEGIN [shard 1671 master]
213665
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213666
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213667
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213668
+  (0.1ms) BEGIN [shard 1673 master]
213669
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213670
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.058851"], ["updated_at", "2015-01-19 20:20:03.058851"]] [shard 1672 master]
213671
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213672
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213673
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.060703"], ["updated_at", "2015-01-19 20:20:03.060703"]] [shard 1673 master]
213674
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213675
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213676
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.063866"], ["updated_at", "2015-01-19 20:20:03.063866"], ["user_id", 13]] [shard 1672 master]
213677
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213678
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."id" = $2 LIMIT 1 [["user_id", 13], ["id", 6]] [shard 1672 master]
213679
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."id" = $2 LIMIT 1 [["user_id", 7], ["id", 16720000000000006]] [shard 1673 master]
213680
+  (0.1ms) ROLLBACK [shard 1673 master]
213681
+  (0.1ms) ROLLBACK [shard 1671 master]
213682
+  (0.1ms) BEGIN [shard 1671 master]
213683
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213684
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213685
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213686
+  (0.1ms) BEGIN [shard 1673 master]
213687
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213688
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.076224"], ["updated_at", "2015-01-19 20:20:03.076224"]] [shard 1672 master]
213689
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213690
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213691
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.078428"], ["updated_at", "2015-01-19 20:20:03.078428"]] [shard 1673 master]
213692
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213693
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213694
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.081522"], ["updated_at", "2015-01-19 20:20:03.081522"], ["user_id", 14]] [shard 1672 master]
213695
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213696
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 7]] [shard 1672 master]
213697
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 14]] [shard 1672 master]
213698
+  (0.1ms) ROLLBACK [shard 1673 master]
213699
+  (0.1ms) ROLLBACK [shard 1672 master]
213700
+  (0.1ms) BEGIN [shard 1671 master]
213701
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213702
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213703
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213704
+  (0.1ms) BEGIN [shard 1673 master]
213705
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213706
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.090347"], ["updated_at", "2015-01-19 20:20:03.090347"]] [shard 1672 master]
213707
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213708
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213709
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.092162"], ["updated_at", "2015-01-19 20:20:03.092162"]] [shard 1673 master]
213710
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213711
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213712
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.095372"], ["parent_id", 15], ["updated_at", "2015-01-19 20:20:03.095372"]] [shard 1672 master]
213713
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213714
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213715
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.098340"], ["parent_id", 16], ["updated_at", "2015-01-19 20:20:03.098340"]] [shard 1672 master]
213716
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213717
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 15]] [shard 1672 master]
213718
+ 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" = $1 AND "users"."id" = 17 LIMIT 1 [["parent_id", 15]] [shard 1672 master]
213719
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213720
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.105489"], ["id", 17], ["updated_at", "2015-01-19 20:20:03.105489"]] [shard 1673 master]
213721
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213722
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 15]] [shard 1672 master]
213723
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = $1 AND "users"."id" = 16730000000000017 LIMIT 1 [["parent_id", 15]] [shard 1672 master]
213724
+  (0.1ms) ROLLBACK [shard 1673 master]
213725
+  (0.1ms) ROLLBACK [shard 1672 master]
213726
+  (0.1ms) BEGIN [shard 1671 master]
213727
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213728
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213729
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213730
+  (0.1ms) BEGIN [shard 1673 master]
213731
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213732
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.117242"], ["updated_at", "2015-01-19 20:20:03.117242"]] [shard 1672 master]
213733
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213734
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213735
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.119123"], ["updated_at", "2015-01-19 20:20:03.119123"]] [shard 1673 master]
213736
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213737
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213738
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.122465"], ["updated_at", "2015-01-19 20:20:03.122465"], ["user_id", 18]] [shard 1672 master]
213739
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213740
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213741
+ SQL (0.4ms) INSERT INTO "digits" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.124167"], ["updated_at", "2015-01-19 20:20:03.124167"]] [shard 1673 master]
213742
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213743
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213744
+ SQL (0.3ms) INSERT INTO "digits" ("appendage_id", "created_at", "id", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 8], ["created_at", "2015-01-19 20:20:03.126916"], ["id", 16730000000000001], ["updated_at", "2015-01-19 20:20:03.126916"]] [shard 1672 master]
213745
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213746
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."id" = $2 LIMIT 1 [["user_id", 18], ["id", 16730000000000001]] [shard 1672 master]
213747
+  (0.1ms) ROLLBACK [shard 1673 master]
213748
+  (0.1ms) ROLLBACK [shard 1672 master]
213749
+  (0.1ms) BEGIN [shard 1671 master]
213750
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213751
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213752
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213753
+  (0.1ms) BEGIN [shard 1673 master]
213754
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213755
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.137330"], ["updated_at", "2015-01-19 20:20:03.137330"]] [shard 1672 master]
213756
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213757
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213758
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.139165"], ["updated_at", "2015-01-19 20:20:03.139165"]] [shard 1673 master]
213759
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213760
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
213761
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.142068"], ["updated_at", "2015-01-19 20:20:03.142068"], ["user_id", 19]] [shard 1672 master]
213762
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213763
+  (0.1ms) ROLLBACK [shard 1673 master]
213764
+  (0.1ms) ROLLBACK [shard 1672 master]
213765
+  (0.1ms) BEGIN [shard 1671 master]
213766
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213767
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213768
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213769
+  (0.1ms) BEGIN [shard 1673 master]
213770
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213771
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.149072"], ["updated_at", "2015-01-19 20:20:03.149072"]] [shard 1672 master]
213772
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213773
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213774
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.150915"], ["updated_at", "2015-01-19 20:20:03.150915"]] [shard 1673 master]
213775
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213776
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213777
+ SQL (0.7ms) INSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.152806"], ["updated_at", "2015-01-19 20:20:03.152806"]] [shard 1672 master]
213778
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213779
+  (0.1ms) ROLLBACK [shard 1673 master]
213780
+  (0.1ms) ROLLBACK [shard 1672 master]
213781
+  (0.1ms) BEGIN [shard 1671 master]
213782
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213783
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213784
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213785
+  (0.1ms) BEGIN [shard 1673 master]
213786
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213787
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.177025"], ["updated_at", "2015-01-19 20:20:03.177025"]] [shard 1672 master]
213788
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213789
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213790
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.178831"], ["updated_at", "2015-01-19 20:20:03.178831"]] [shard 1673 master]
213791
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213792
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213793
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213794
+  (0.1ms) ROLLBACK [shard 1673 master]
213795
+  (0.1ms) ROLLBACK [shard 1672 master]
213796
+  (0.1ms) BEGIN [shard 1671 master]
213797
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213798
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213799
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213800
+  (0.1ms) BEGIN [shard 1673 master]
213801
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213802
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.186022"], ["updated_at", "2015-01-19 20:20:03.186022"]] [shard 1672 master]
213803
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213804
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213805
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.187447"], ["updated_at", "2015-01-19 20:20:03.187447"]] [shard 1673 master]
213806
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213807
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213808
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.188930"], ["updated_at", "2015-01-19 20:20:03.188930"], ["user_id", 22], ["value", 1]] [shard 1672 master]
213809
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213810
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213811
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.191211"], ["updated_at", "2015-01-19 20:20:03.191211"], ["user_id", 16720000000000022]] [shard 1673 master]
213812
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213813
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 22]] [shard 1672 master]
213814
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 16720000000000022]] [shard 1673 master]
213815
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 22]] [shard 1672 master]
213816
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 22]] [shard 1672 master]
213817
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 AND "appendages"."value" IS NULL [["user_id", 16720000000000022]] [shard 1673 master]
213818
+  (0.1ms) ROLLBACK [shard 1673 master]
213819
+  (0.1ms) ROLLBACK [shard 1672 master]
213820
+  (0.1ms) BEGIN [shard 1671 master]
213821
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213822
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213823
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213824
+  (0.1ms) BEGIN [shard 1673 master]
213825
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213826
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.202895"], ["updated_at", "2015-01-19 20:20:03.202895"]] [shard 1672 master]
213827
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213828
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213829
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.204367"], ["updated_at", "2015-01-19 20:20:03.204367"]] [shard 1673 master]
213830
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213831
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213832
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.205799"], ["updated_at", "2015-01-19 20:20:03.205799"], ["user_id", 23], ["value", 1]] [shard 1672 master]
213833
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213834
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213835
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.207911"], ["updated_at", "2015-01-19 20:20:03.207911"], ["user_id", 16720000000000023]] [shard 1673 master]
213836
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213837
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213838
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213839
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.210629"], ["updated_at", "2015-01-19 20:20:03.210629"], ["user_id", 23], ["value", 2]] [shard 1672 master]
213840
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213841
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213842
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 23]] [shard 1672 master]
213843
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 23]] [shard 1672 master]
213844
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 16720000000000023]] [shard 1673 master]
213845
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 23]] [shard 1672 master]
213846
+  (0.1ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 23]] [shard 1672 master]
213847
+  (0.1ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 AND (appendages.value IS NOT NULL) [["user_id", 16720000000000023]] [shard 1673 master]
213848
+  (0.1ms) ROLLBACK [shard 1673 master]
213849
+  (0.1ms) ROLLBACK [shard 1672 master]
213850
+  (0.1ms) BEGIN [shard 1671 master]
213851
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213852
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213853
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213854
+  (0.2ms) BEGIN [shard 1673 master]
213855
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213856
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.224707"], ["updated_at", "2015-01-19 20:20:03.224707"]] [shard 1672 master]
213857
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213858
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213859
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.226361"], ["updated_at", "2015-01-19 20:20:03.226361"]] [shard 1673 master]
213860
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213861
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213862
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.227890"], ["updated_at", "2015-01-19 20:20:03.227890"], ["user_id", 24]] [shard 1672 master]
213863
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213864
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213865
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 13], ["created_at", "2015-01-19 20:20:03.230180"], ["updated_at", "2015-01-19 20:20:03.230180"]] [shard 1672 master]
213866
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213867
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213868
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.232332"], ["updated_at", "2015-01-19 20:20:03.232332"], ["user_id", 16720000000000024]] [shard 1673 master]
213869
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213870
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213871
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 5], ["created_at", "2015-01-19 20:20:03.234544"], ["updated_at", "2015-01-19 20:20:03.234544"], ["value", 2]] [shard 1673 master]
213872
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213873
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 24]] [shard 1672 master]
213874
+ Digit Load (0.4ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 16720000000000024]] [shard 1673 master]
213875
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 24]] [shard 1672 master]
213876
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 24]] [shard 1672 master]
213877
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 16720000000000024]] [shard 1673 master]
213878
+  (0.1ms) ROLLBACK [shard 1673 master]
213879
+  (0.1ms) ROLLBACK [shard 1672 master]
213880
+  (0.1ms) BEGIN [shard 1671 master]
213881
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213882
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213883
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213884
+  (0.1ms) BEGIN [shard 1673 master]
213885
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213886
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.249252"], ["updated_at", "2015-01-19 20:20:03.249252"]] [shard 1672 master]
213887
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213888
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213889
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.250762"], ["updated_at", "2015-01-19 20:20:03.250762"]] [shard 1673 master]
213890
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213891
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213892
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.252394"], ["updated_at", "2015-01-19 20:20:03.252394"], ["user_id", 25]] [shard 1672 master]
213893
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213894
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213895
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 14], ["created_at", "2015-01-19 20:20:03.254806"], ["updated_at", "2015-01-19 20:20:03.254806"]] [shard 1672 master]
213896
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213897
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213898
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 14], ["created_at", "2015-01-19 20:20:03.257100"], ["updated_at", "2015-01-19 20:20:03.257100"], ["value", 1]] [shard 1672 master]
213899
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213900
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213901
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.259611"], ["updated_at", "2015-01-19 20:20:03.259611"], ["user_id", 16720000000000025]] [shard 1673 master]
213902
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213903
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213904
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 6], ["created_at", "2015-01-19 20:20:03.262351"], ["updated_at", "2015-01-19 20:20:03.262351"], ["value", 2]] [shard 1673 master]
213905
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213906
+  (0.3ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 25]] [shard 1672 master]
213907
+  (0.3ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 16720000000000025]] [shard 1673 master]
213908
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 25]] [shard 1672 master]
213909
+  (0.2ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 25]] [shard 1672 master]
213910
+  (0.2ms) SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND (digits.value IS NOT NULL) [["user_id", 16720000000000025]] [shard 1673 master]
213911
+  (0.1ms) ROLLBACK [shard 1673 master]
213912
+  (0.1ms) ROLLBACK [shard 1672 master]
213913
+  (0.1ms) BEGIN [shard 1671 master]
213914
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213915
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213916
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213917
+  (0.1ms) BEGIN [shard 1673 master]
213918
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213919
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.276712"], ["updated_at", "2015-01-19 20:20:03.276712"]] [shard 1672 master]
213920
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213921
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213922
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.278272"], ["updated_at", "2015-01-19 20:20:03.278272"]] [shard 1673 master]
213923
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213924
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213925
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.279828"], ["updated_at", "2015-01-19 20:20:03.279828"], ["user_id", 26], ["value", 1]] [shard 1672 master]
213926
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213927
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213928
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.281991"], ["updated_at", "2015-01-19 20:20:03.281991"], ["user_id", 16720000000000026], ["value", 2]] [shard 1673 master]
213929
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213930
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 26]] [shard 1672 master]
213931
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 26]] [shard 1672 master]
213932
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 26]] [shard 1672 master]
213933
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 16720000000000026]] [shard 1673 master]
213934
+  (0.1ms) ROLLBACK [shard 1673 master]
213935
+  (0.1ms) ROLLBACK [shard 1672 master]
213936
+  (0.1ms) BEGIN [shard 1671 master]
213937
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213938
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213939
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213940
+  (0.1ms) BEGIN [shard 1673 master]
213941
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213942
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.293384"], ["updated_at", "2015-01-19 20:20:03.293384"]] [shard 1672 master]
213943
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213944
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213945
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.294991"], ["updated_at", "2015-01-19 20:20:03.294991"]] [shard 1673 master]
213946
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213947
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213948
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.296532"], ["updated_at", "2015-01-19 20:20:03.296532"], ["user_id", 27]] [shard 1672 master]
213949
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213950
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213951
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 16], ["created_at", "2015-01-19 20:20:03.298877"], ["updated_at", "2015-01-19 20:20:03.298877"], ["value", 1]] [shard 1672 master]
213952
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213953
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213954
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.300854"], ["updated_at", "2015-01-19 20:20:03.300854"], ["user_id", 16720000000000027]] [shard 1673 master]
213955
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213956
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213957
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 8], ["created_at", "2015-01-19 20:20:03.303042"], ["updated_at", "2015-01-19 20:20:03.303042"], ["value", 2]] [shard 1673 master]
213958
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213959
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 [["user_id", 27]] [shard 1672 master]
213960
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 27]] [shard 1672 master]
213961
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 [["user_id", 27]] [shard 1672 master]
213962
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 [["user_id", 16720000000000027]] [shard 1673 master]
213963
+  (0.1ms) ROLLBACK [shard 1673 master]
213964
+  (0.1ms) ROLLBACK [shard 1672 master]
213965
+  (0.1ms) BEGIN [shard 1671 master]
213966
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213967
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213968
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213969
+  (0.1ms) BEGIN [shard 1673 master]
213970
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213971
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.315239"], ["updated_at", "2015-01-19 20:20:03.315239"]] [shard 1672 master]
213972
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213973
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213974
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.316794"], ["updated_at", "2015-01-19 20:20:03.316794"]] [shard 1673 master]
213975
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213976
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213977
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.318307"], ["updated_at", "2015-01-19 20:20:03.318307"], ["user_id", 28]] [shard 1672 master]
213978
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213979
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
213980
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 17], ["created_at", "2015-01-19 20:20:03.320620"], ["updated_at", "2015-01-19 20:20:03.320620"]] [shard 1672 master]
213981
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
213982
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213983
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.322563"], ["updated_at", "2015-01-19 20:20:03.322563"], ["user_id", 16720000000000028]] [shard 1673 master]
213984
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213985
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
213986
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 9], ["created_at", "2015-01-19 20:20:03.324731"], ["updated_at", "2015-01-19 20:20:03.324731"], ["value", 2]] [shard 1673 master]
213987
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
213988
+  (0.2ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 28]] [shard 1672 master]
213989
+  (0.2ms) SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 16720000000000028]] [shard 1673 master]
213990
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 28]] [shard 1672 master]
213991
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 28]] [shard 1672 master]
213992
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = $1 AND "digits"."value" IS NULL [["user_id", 16720000000000028]] [shard 1673 master]
213993
+  (0.1ms) ROLLBACK [shard 1673 master]
213994
+  (0.1ms) ROLLBACK [shard 1672 master]
213995
+  (0.1ms) BEGIN [shard 1671 master]
213996
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
213997
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
213998
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
213999
+  (0.1ms) BEGIN [shard 1673 master]
214000
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214001
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.338189"], ["updated_at", "2015-01-19 20:20:03.338189"]] [shard 1672 master]
214002
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214003
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214004
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.339747"], ["updated_at", "2015-01-19 20:20:03.339747"]] [shard 1673 master]
214005
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214006
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214007
+ SQL (0.9ms) INSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.347562"], ["updated_at", "2015-01-19 20:20:03.347562"], ["user_id", 16730000000000021]] [shard 1671 master]
214008
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214009
+ Root Load (0.3ms) SELECT "roots".* FROM "roots" WHERE "roots"."id" = $1 LIMIT 1 [["id", 64]] [shard 1671 master]
214010
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 21]] [shard 1673 master]
214011
+  (0.1ms) ROLLBACK [shard 1673 master]
214012
+  (0.1ms) ROLLBACK [shard 1671 master]
214013
+  (0.1ms) BEGIN [shard 1671 master]
214014
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214015
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214016
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214017
+  (0.1ms) BEGIN [shard 1673 master]
214018
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214019
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.356677"], ["updated_at", "2015-01-19 20:20:03.356677"]] [shard 1672 master]
214020
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214021
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214022
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.358243"], ["updated_at", "2015-01-19 20:20:03.358243"]] [shard 1673 master]
214023
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214024
+  (0.2ms) SAVEPOINT active_record_1 [shard 1671 master]
214025
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.361245"], ["updated_at", "2015-01-19 20:20:03.361245"], ["user_id", 30]] [shard 1672 master]
214026
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214027
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214028
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.363331"], ["updated_at", "2015-01-19 20:20:03.363331"], ["user_id", 16720000000000030]] [shard 1673 master]
214029
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214030
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214031
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.365301"], ["updated_at", "2015-01-19 20:20:03.365301"], ["user_id", 16730000000000022]] [shard 1672 master]
214032
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214033
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (30) [shard 1672 master]
214034
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (30) [shard 1672 master]
214035
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (16720000000000030) [shard 1673 master]
214036
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (22) [shard 1673 master]
214037
+ Appendage Load (0.1ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (22) [shard 1673 master]
214038
+ SQL (0.2ms) DELETE FROM "appendages" WHERE "appendages"."id" = 18 [shard 1672 master]
214039
+  (0.1ms) ROLLBACK [shard 1673 master]
214040
+  (0.1ms) ROLLBACK [shard 1671 master]
214041
+  (0.1ms) BEGIN [shard 1671 master]
214042
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214043
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214044
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214045
+  (0.1ms) BEGIN [shard 1673 master]
214046
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214047
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.381303"], ["updated_at", "2015-01-19 20:20:03.381303"]] [shard 1672 master]
214048
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214049
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214050
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.383418"], ["updated_at", "2015-01-19 20:20:03.383418"]] [shard 1673 master]
214051
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214052
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214053
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.386157"], ["updated_at", "2015-01-19 20:20:03.386157"], ["user_id", 31]] [shard 1672 master]
214054
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214055
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214056
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.388339"], ["updated_at", "2015-01-19 20:20:03.388339"], ["user_id", 16720000000000031]] [shard 1673 master]
214057
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214058
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214059
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.389794"], ["updated_at", "2015-01-19 20:20:03.389794"], ["user_id", 16720000000000031]] [shard 1673 master]
214060
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214061
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214062
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 20], ["created_at", "2015-01-19 20:20:03.392468"], ["updated_at", "2015-01-19 20:20:03.392468"]] [shard 1672 master]
214063
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214064
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214065
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214066
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 11], ["created_at", "2015-01-19 20:20:03.395183"], ["updated_at", "2015-01-19 20:20:03.395183"]] [shard 1673 master]
214067
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214068
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214069
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214070
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16730000000000011], ["created_at", "2015-01-19 20:20:03.397459"], ["updated_at", "2015-01-19 20:20:03.397459"]] [shard 1672 master]
214071
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214072
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214073
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16730000000000012], ["created_at", "2015-01-19 20:20:03.398931"], ["updated_at", "2015-01-19 20:20:03.398931"]] [shard 1672 master]
214074
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214075
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214076
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.400612"], ["updated_at", "2015-01-19 20:20:03.400612"], ["user_id", 16730000000000023]] [shard 1672 master]
214077
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214078
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214079
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214080
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.403169"], ["updated_at", "2015-01-19 20:20:03.403169"], ["user_id", 23]] [shard 1673 master]
214081
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214082
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214083
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214084
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214085
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.405339"], ["updated_at", "2015-01-19 20:20:03.405339"], ["user_id", 23]] [shard 1673 master]
214086
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214087
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214088
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214089
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16720000000000021], ["created_at", "2015-01-19 20:20:03.406886"], ["updated_at", "2015-01-19 20:20:03.406886"]] [shard 1673 master]
214090
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214091
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214092
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16730000000000013], ["created_at", "2015-01-19 20:20:03.408517"], ["updated_at", "2015-01-19 20:20:03.408517"]] [shard 1672 master]
214093
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214094
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214095
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 14], ["created_at", "2015-01-19 20:20:03.410080"], ["updated_at", "2015-01-19 20:20:03.410080"]] [shard 1673 master]
214096
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214097
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (31) [shard 1672 master]
214098
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (31) [shard 1672 master]
214099
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (16720000000000031) [shard 1673 master]
214100
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (20) [shard 1672 master]
214101
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (11, 12) [shard 1673 master]
214102
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (23) [shard 1673 master]
214103
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (23) [shard 1673 master]
214104
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (13, 14) [shard 1673 master]
214105
+ SQL (0.3ms) DELETE FROM "digits" WHERE "digits"."id" = 7 [shard 1672 master]
214106
+  (0.1ms) ROLLBACK [shard 1673 master]
214107
+  (0.1ms) ROLLBACK [shard 1671 master]
214108
+  (0.1ms) BEGIN [shard 1671 master]
214109
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214110
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214111
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214112
+  (0.1ms) BEGIN [shard 1673 master]
214113
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214114
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.434288"], ["updated_at", "2015-01-19 20:20:03.434288"]] [shard 1672 master]
214115
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214116
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214117
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.435788"], ["updated_at", "2015-01-19 20:20:03.435788"]] [shard 1673 master]
214118
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214119
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214120
+ SQL (0.4ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.437826"], ["updated_at", "2015-01-19 20:20:03.437826"], ["user_id", 16720000000000032]] [shard 1671 master]
214121
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214122
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214123
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.440353"], ["updated_at", "2015-01-19 20:20:03.440353"], ["user_id", 16730000000000024]] [shard 1671 master]
214124
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214125
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214126
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.441887"], ["updated_at", "2015-01-19 20:20:03.441887"]] [shard 1671 master]
214127
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214128
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214129
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.444232"], ["updated_at", "2015-01-19 20:20:03.444232"], ["user_id", 2777]] [shard 1671 master]
214130
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214131
+ Appendage Load (0.3ms) SELECT "appendages".* FROM "appendages" [shard 1671 master]
214132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (32) [shard 1672 master]
214133
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (24) [shard 1673 master]
214134
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (2777) [shard 1671 master]
214135
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = 32 [shard 1672 master]
214136
+  (0.1ms) ROLLBACK [shard 1673 master]
214137
+  (0.1ms) ROLLBACK [shard 1672 master]
214138
+  (0.1ms) BEGIN [shard 1671 master]
214139
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214140
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214141
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214142
+  (0.1ms) BEGIN [shard 1673 master]
214143
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214144
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.459207"], ["updated_at", "2015-01-19 20:20:03.459207"]] [shard 1672 master]
214145
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214146
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214147
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.461192"], ["updated_at", "2015-01-19 20:20:03.461192"]] [shard 1673 master]
214148
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214149
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214150
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.463439"], ["updated_at", "2015-01-19 20:20:03.463439"], ["user_id", 16720000000000033]] [shard 1671 master]
214151
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214152
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214153
+ SQL (0.4ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 1368], ["created_at", "2015-01-19 20:20:03.466158"], ["updated_at", "2015-01-19 20:20:03.466158"]] [shard 1671 master]
214154
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214155
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214156
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.468936"], ["updated_at", "2015-01-19 20:20:03.468936"], ["user_id", 16730000000000025]] [shard 1672 master]
214157
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214158
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214159
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16720000000000022], ["created_at", "2015-01-19 20:20:03.470733"], ["updated_at", "2015-01-19 20:20:03.470733"]] [shard 1671 master]
214160
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214161
+ Digit Load (0.3ms) SELECT "digits".* FROM "digits" [shard 1671 master]
214162
+ Appendage Load (0.4ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (1368) [shard 1671 master]
214163
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (22) [shard 1672 master]
214164
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (33) [shard 1672 master]
214165
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (25) [shard 1673 master]
214166
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = 33 [shard 1672 master]
214167
+  (0.1ms) ROLLBACK [shard 1673 master]
214168
+  (0.1ms) ROLLBACK [shard 1672 master]
214169
+  (0.1ms) BEGIN [shard 1671 master]
214170
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214171
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214172
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214173
+  (0.1ms) BEGIN [shard 1673 master]
214174
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214175
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.489476"], ["updated_at", "2015-01-19 20:20:03.489476"]] [shard 1672 master]
214176
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214177
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214178
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.491495"], ["updated_at", "2015-01-19 20:20:03.491495"]] [shard 1673 master]
214179
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214180
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214181
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.493388"], ["updated_at", "2015-01-19 20:20:03.493388"]] [shard 1671 master]
214182
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214183
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214184
+ SQL (0.2ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 1369], ["created_at", "2015-01-19 20:20:03.496261"], ["updated_at", "2015-01-19 20:20:03.496261"]] [shard 1671 master]
214185
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214186
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214187
+ SQL (0.1ms) INSERT INTO "digits" ("appendage_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["appendage_id", 16710000000001369], ["created_at", "2015-01-19 20:20:03.498154"], ["updated_at", "2015-01-19 20:20:03.498154"]] [shard 1672 master]
214188
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214189
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 1369 ORDER BY "appendages"."id" ASC LIMIT 1 [shard 1671 master]
214190
+ Digit Load (0.2ms) SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (1369) [shard 1671 master]
214191
+  (0.1ms) ROLLBACK [shard 1673 master]
214192
+  (0.1ms) ROLLBACK [shard 1671 master]
214193
+  (0.1ms) BEGIN [shard 1671 master]
214194
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214195
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214196
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214197
+  (0.1ms) BEGIN [shard 1673 master]
214198
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214199
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.506727"], ["updated_at", "2015-01-19 20:20:03.506727"]] [shard 1672 master]
214200
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214201
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214202
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.508758"], ["updated_at", "2015-01-19 20:20:03.508758"]] [shard 1673 master]
214203
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214204
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214205
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.510927"], ["updated_at", "2015-01-19 20:20:03.510927"], ["user_id", 16730000000000027]] [shard 1672 master]
214206
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214207
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 23]] [shard 1672 master]
214208
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 27]] [shard 1673 master]
214209
+  (0.2ms) ROLLBACK [shard 1673 master]
214210
+  (0.1ms) ROLLBACK [shard 1672 master]
214211
+  (0.1ms) BEGIN [shard 1671 master]
214212
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214213
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214214
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214215
+  (0.1ms) BEGIN [shard 1673 master]
214216
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214217
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.520288"], ["updated_at", "2015-01-19 20:20:03.520288"]] [shard 1672 master]
214218
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214219
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214220
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.522251"], ["updated_at", "2015-01-19 20:20:03.522251"]] [shard 1673 master]
214221
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214222
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214223
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.524036"], ["updated_at", "2015-01-19 20:20:03.524036"]] [shard 1673 master]
214224
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214225
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214226
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 36]] [shard 1672 master]
214227
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.527064"], ["updated_at", "2015-01-19 20:20:03.527064"], ["user_id", 36]] [shard 1672 master]
214228
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214229
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 24]] [shard 1672 master]
214230
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 36]] [shard 1672 master]
214231
+  (0.1ms) ROLLBACK [shard 1673 master]
214232
+  (0.1ms) ROLLBACK [shard 1672 master]
214233
+  (0.1ms) BEGIN [shard 1671 master]
214234
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214235
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214236
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214237
+  (0.1ms) BEGIN [shard 1673 master]
214238
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214239
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.540049"], ["updated_at", "2015-01-19 20:20:03.540049"]] [shard 1672 master]
214240
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214241
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214242
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.542081"], ["updated_at", "2015-01-19 20:20:03.542081"]] [shard 1673 master]
214243
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214244
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214245
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.543981"], ["updated_at", "2015-01-19 20:20:03.543981"]] [shard 1671 master]
214246
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214247
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214248
+ SQL (0.5ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:03.549001"], ["owner_id", 1370], ["owner_type", "Appendage"], ["updated_at", "2015-01-19 20:20:03.549001"]] [shard 1671 master]
214249
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214250
+ Feature Load (0.3ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 131]] [shard 1671 master]
214251
+ Appendage Load (0.2ms) SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1 [["id", 1370]] [shard 1671 master]
214252
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214253
+ SQL (0.3ms) UPDATE "features" SET "owner_id" = $1, "owner_type" = $2, "updated_at" = $3 WHERE "features"."id" = 131 [["owner_id", 16720000000000037], ["owner_type", "User"], ["updated_at", "2015-01-19 20:20:03.559385"]] [shard 1671 master]
214254
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214255
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 131]] [shard 1671 master]
214256
+  (0.2ms) ROLLBACK [shard 1673 master]
214257
+  (0.2ms) ROLLBACK [shard 1671 master]
214258
+  (0.1ms) BEGIN [shard 1671 master]
214259
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214260
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214261
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214262
+  (0.1ms) BEGIN [shard 1673 master]
214263
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214264
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.569537"], ["updated_at", "2015-01-19 20:20:03.569537"]] [shard 1672 master]
214265
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214266
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214267
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.571259"], ["updated_at", "2015-01-19 20:20:03.571259"]] [shard 1673 master]
214268
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214269
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214270
+ SQL (0.4ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", "2015-01-19 20:20:03.573004"], ["owner_id", 38], ["owner_type", "User"], ["updated_at", "2015-01-19 20:20:03.573004"], ["value", 1]] [shard 1672 master]
214271
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214272
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214273
+ 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", "2015-01-19 20:20:03.575818"], ["owner_id", 16720000000000038], ["owner_type", "User"], ["updated_at", "2015-01-19 20:20:03.575818"], ["value", 2]] [shard 1673 master]
214274
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214275
+ Feature Load (0.3ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2 [["owner_id", 38], ["owner_type", "User"]] [shard 1672 master]
214276
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 38]] [shard 1672 master]
214277
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2 [["owner_id", 38], ["owner_type", "User"]] [shard 1672 master]
214278
+ Feature Load (0.2ms) SELECT "features".* FROM "features" WHERE "features"."owner_id" = $1 AND "features"."owner_type" = $2 [["owner_id", 16720000000000038], ["owner_type", "User"]] [shard 1673 master]
214279
+  (0.1ms) ROLLBACK [shard 1673 master]
214280
+  (0.1ms) ROLLBACK [shard 1672 master]
214281
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
214282
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214283
+  (0.1ms) BEGIN [shard 1671 master]
214284
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
214285
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
214286
+  (0.3ms) COMMIT [shard 1671 master]
214287
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214288
+  (0.1ms) BEGIN [shard 1671 master]
214289
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
214290
+  (0.3ms) COMMIT [shard 1671 master]
214291
+  (0.1ms) BEGIN [shard 1671 master]
214292
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
214293
+  (0.2ms) COMMIT [shard 1671 master]
214294
+  (0.1ms) BEGIN [shard 1671 master]
214295
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214296
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214297
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214298
+  (0.1ms) BEGIN [shard 1673 master]
214299
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1671 AND id<=1672)) ORDER BY "switchman_shards"."id" ASC [shard 1671 master]
214300
+  (0.1ms) ROLLBACK [shard 1673 master]
214301
+  (0.1ms) ROLLBACK [shard 1671 master]
214302
+  (0.1ms) BEGIN [shard 1671 master]
214303
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214304
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214305
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214306
+  (0.1ms) BEGIN [shard 1673 master]
214307
+  (0.1ms) ROLLBACK [shard 1673 master]
214308
+  (0.1ms) ROLLBACK [shard 1671 master]
214309
+  (0.1ms) BEGIN [shard 1671 master]
214310
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214311
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214312
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214313
+  (0.1ms) BEGIN [shard 1673 master]
214314
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (1671)) [shard 1671 master]
214315
+  (0.1ms) ROLLBACK [shard 1673 master]
214316
+  (0.1ms) ROLLBACK [shard 1671 master]
214317
+  (0.1ms) BEGIN [shard 1671 master]
214318
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214319
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214320
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214321
+  (0.1ms) BEGIN [shard 1673 master]
214322
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1672 AND id<=1672)) AND (id NOT IN (1671)) [shard 1671 master]
214323
+  (0.1ms) ROLLBACK [shard 1673 master]
214324
+  (0.1ms) ROLLBACK [shard 1671 master]
214325
+  (0.1ms) BEGIN [shard 1671 master]
214326
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214327
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214328
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214329
+  (0.1ms) BEGIN [shard 1673 master]
214330
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1671 AND id<1672) OR (id>=1673 AND id<1674)) ORDER BY "switchman_shards"."id" ASC [shard 1671 master]
214331
+  (0.1ms) ROLLBACK [shard 1673 master]
214332
+  (0.1ms) ROLLBACK [shard 1671 master]
214333
+  (0.1ms) BEGIN [shard 1671 master]
214334
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214335
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214336
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214337
+  (0.1ms) BEGIN [shard 1673 master]
214338
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1671)) [shard 1671 master]
214339
+  (0.2ms) SELECT COUNT(*) FROM "switchman_shards" [shard 1671 master]
214340
+  (0.1ms) ROLLBACK [shard 1673 master]
214341
+  (0.1ms) ROLLBACK [shard 1671 master]
214342
+  (0.1ms) BEGIN [shard 1671 master]
214343
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214344
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214345
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214346
+  (0.1ms) BEGIN [shard 1673 master]
214347
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1671 AND id<1672)) [shard 1671 master]
214348
+  (0.1ms) ROLLBACK [shard 1673 master]
214349
+  (0.1ms) ROLLBACK [shard 1671 master]
214350
+  (0.1ms) BEGIN [shard 1671 master]
214351
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214352
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214353
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214354
+  (0.1ms) BEGIN [shard 1673 master]
214355
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1671 AND id<=1672)) AND (id NOT IN (1671)) [shard 1671 master]
214356
+  (0.1ms) ROLLBACK [shard 1673 master]
214357
+  (0.1ms) ROLLBACK [shard 1671 master]
214358
+  (0.1ms) BEGIN [shard 1671 master]
214359
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214360
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214361
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214362
+  (0.1ms) BEGIN [shard 1673 master]
214363
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1672)) ORDER BY "switchman_shards"."id" ASC [shard 1671 master]
214364
+  (0.1ms) ROLLBACK [shard 1673 master]
214365
+  (0.1ms) ROLLBACK [shard 1671 master]
214366
+  (0.1ms) BEGIN [shard 1671 master]
214367
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214368
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214369
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214370
+  (0.1ms) BEGIN [shard 1673 master]
214371
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id<=1672)) ORDER BY "switchman_shards"."id" ASC [shard 1671 master]
214372
+  (0.1ms) ROLLBACK [shard 1673 master]
214373
+  (0.1ms) ROLLBACK [shard 1671 master]
214374
+  (0.1ms) BEGIN [shard 1671 master]
214375
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214376
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214377
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214378
+  (0.1ms) BEGIN [shard 1673 master]
214379
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1671)) [shard 1671 master]
214380
+  (0.1ms) ROLLBACK [shard 1673 master]
214381
+  (0.1ms) ROLLBACK [shard 1671 master]
214382
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
214383
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214384
+  (0.1ms) BEGIN [shard 1671 master]
214385
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
214386
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
214387
+  (0.4ms) COMMIT [shard 1671 master]
214388
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214389
+  (0.1ms) BEGIN [shard 1671 master]
214390
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
214391
+  (0.3ms) COMMIT [shard 1671 master]
214392
+  (0.1ms) BEGIN [shard 1671 master]
214393
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
214394
+  (0.2ms) COMMIT [shard 1671 master]
214395
+  (0.1ms) BEGIN [shard 1671 master]
214396
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214397
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214398
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214399
+  (0.1ms) BEGIN [shard 1673 master]
214400
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214401
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.651725"], ["updated_at", "2015-01-19 20:20:03.651725"]] [shard 1671 master]
214402
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214403
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214404
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.654071"], ["updated_at", "2015-01-19 20:20:03.654071"], ["user_id", 2778]] [shard 1671 master]
214405
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214406
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214407
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.655800"], ["updated_at", "2015-01-19 20:20:03.655800"]] [shard 1672 master]
214408
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214409
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214410
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.658262"], ["updated_at", "2015-01-19 20:20:03.658262"], ["user_id", 39]] [shard 1672 master]
214411
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214412
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214413
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.659884"], ["updated_at", "2015-01-19 20:20:03.659884"]] [shard 1673 master]
214414
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214415
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214416
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214417
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.662529"], ["updated_at", "2015-01-19 20:20:03.662529"], ["user_id", 31]] [shard 1673 master]
214418
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214419
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214420
+  (0.1ms) ROLLBACK [shard 1673 master]
214421
+  (0.1ms) ROLLBACK [shard 1671 master]
214422
+  (0.1ms) BEGIN [shard 1671 master]
214423
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214424
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214425
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214426
+  (0.1ms) BEGIN [shard 1673 master]
214427
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214428
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.669219"], ["updated_at", "2015-01-19 20:20:03.669219"]] [shard 1671 master]
214429
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214430
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214431
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.671918"], ["updated_at", "2015-01-19 20:20:03.671918"], ["user_id", 2779]] [shard 1671 master]
214432
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214433
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214434
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.673758"], ["updated_at", "2015-01-19 20:20:03.673758"]] [shard 1672 master]
214435
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214436
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214437
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.676515"], ["updated_at", "2015-01-19 20:20:03.676515"], ["user_id", 40]] [shard 1672 master]
214438
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214439
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214440
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.678353"], ["updated_at", "2015-01-19 20:20:03.678353"]] [shard 1673 master]
214441
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214442
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214443
+  (0.3ms) SAVEPOINT active_record_1 [shard 1673 master]
214444
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.689062"], ["updated_at", "2015-01-19 20:20:03.689062"], ["user_id", 32]] [shard 1673 master]
214445
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214446
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214447
+  (0.1ms) ROLLBACK [shard 1673 master]
214448
+  (0.1ms) ROLLBACK [shard 1671 master]
214449
+  (0.1ms) BEGIN [shard 1671 master]
214450
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214451
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214452
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214453
+  (0.1ms) BEGIN [shard 1673 master]
214454
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214455
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.697096"], ["updated_at", "2015-01-19 20:20:03.697096"]] [shard 1671 master]
214456
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214457
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214458
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.699474"], ["updated_at", "2015-01-19 20:20:03.699474"], ["user_id", 2780]] [shard 1671 master]
214459
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214460
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214461
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.701207"], ["updated_at", "2015-01-19 20:20:03.701207"]] [shard 1672 master]
214462
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214463
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214464
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.703672"], ["updated_at", "2015-01-19 20:20:03.703672"], ["user_id", 41]] [shard 1672 master]
214465
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214466
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214467
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.705166"], ["updated_at", "2015-01-19 20:20:03.705166"]] [shard 1673 master]
214468
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214469
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214470
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214471
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.707947"], ["updated_at", "2015-01-19 20:20:03.707947"], ["user_id", 33]] [shard 1673 master]
214472
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214473
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214474
+  (0.1ms) ROLLBACK [shard 1673 master]
214475
+  (0.1ms) ROLLBACK [shard 1671 master]
214476
+  (0.1ms) BEGIN [shard 1671 master]
214477
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214478
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214479
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214480
+  (0.1ms) BEGIN [shard 1673 master]
214481
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214482
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.714550"], ["updated_at", "2015-01-19 20:20:03.714550"]] [shard 1671 master]
214483
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214484
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214485
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.716931"], ["updated_at", "2015-01-19 20:20:03.716931"], ["user_id", 2781]] [shard 1671 master]
214486
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214487
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.718623"], ["updated_at", "2015-01-19 20:20:03.718623"]] [shard 1672 master]
214489
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214490
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214491
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.721013"], ["updated_at", "2015-01-19 20:20:03.721013"], ["user_id", 42]] [shard 1672 master]
214492
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214493
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214494
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.722487"], ["updated_at", "2015-01-19 20:20:03.722487"]] [shard 1673 master]
214495
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214496
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214497
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214498
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.725164"], ["updated_at", "2015-01-19 20:20:03.725164"], ["user_id", 34]] [shard 1673 master]
214499
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214500
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214501
+  (0.1ms) ROLLBACK [shard 1673 master]
214502
+  (0.1ms) ROLLBACK [shard 1671 master]
214503
+  (0.1ms) BEGIN [shard 1671 master]
214504
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214505
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214506
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214507
+  (0.2ms) BEGIN [shard 1673 master]
214508
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214509
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.731809"], ["updated_at", "2015-01-19 20:20:03.731809"]] [shard 1671 master]
214510
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214511
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214512
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.734102"], ["updated_at", "2015-01-19 20:20:03.734102"], ["user_id", 2782]] [shard 1671 master]
214513
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214514
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214515
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.735772"], ["updated_at", "2015-01-19 20:20:03.735772"]] [shard 1672 master]
214516
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214517
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214518
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.738535"], ["updated_at", "2015-01-19 20:20:03.738535"], ["user_id", 43]] [shard 1672 master]
214519
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214520
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.740098"], ["updated_at", "2015-01-19 20:20:03.740098"]] [shard 1673 master]
214522
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214523
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214524
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214525
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.743134"], ["updated_at", "2015-01-19 20:20:03.743134"], ["user_id", 35]] [shard 1673 master]
214526
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214527
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214528
+  (0.1ms) ROLLBACK [shard 1673 master]
214529
+  (0.1ms) ROLLBACK [shard 1671 master]
214530
+  (0.1ms) BEGIN [shard 1671 master]
214531
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214532
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214533
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214534
+  (0.1ms) BEGIN [shard 1673 master]
214535
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214536
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.749233"], ["updated_at", "2015-01-19 20:20:03.749233"]] [shard 1671 master]
214537
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214538
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214539
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.751999"], ["updated_at", "2015-01-19 20:20:03.751999"], ["user_id", 2783]] [shard 1671 master]
214540
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214541
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214542
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.753721"], ["updated_at", "2015-01-19 20:20:03.753721"]] [shard 1672 master]
214543
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214544
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214545
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.756207"], ["updated_at", "2015-01-19 20:20:03.756207"], ["user_id", 44]] [shard 1672 master]
214546
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214547
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214548
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.757682"], ["updated_at", "2015-01-19 20:20:03.757682"]] [shard 1673 master]
214549
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214550
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214551
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214552
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.760369"], ["updated_at", "2015-01-19 20:20:03.760369"], ["user_id", 36]] [shard 1673 master]
214553
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214554
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214555
+  (0.1ms) ROLLBACK [shard 1673 master]
214556
+  (0.1ms) ROLLBACK [shard 1671 master]
214557
+  (0.1ms) BEGIN [shard 1671 master]
214558
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214559
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214560
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214561
+  (0.1ms) BEGIN [shard 1673 master]
214562
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214563
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.766225"], ["updated_at", "2015-01-19 20:20:03.766225"]] [shard 1671 master]
214564
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214565
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214566
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.768984"], ["updated_at", "2015-01-19 20:20:03.768984"], ["user_id", 2784]] [shard 1671 master]
214567
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214568
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214569
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.770747"], ["updated_at", "2015-01-19 20:20:03.770747"]] [shard 1672 master]
214570
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214571
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214572
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.773292"], ["updated_at", "2015-01-19 20:20:03.773292"], ["user_id", 45]] [shard 1672 master]
214573
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214574
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214575
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.774815"], ["updated_at", "2015-01-19 20:20:03.774815"]] [shard 1673 master]
214576
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214577
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214578
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214579
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.777636"], ["updated_at", "2015-01-19 20:20:03.777636"], ["user_id", 37]] [shard 1673 master]
214580
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214581
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214582
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
214583
+  (0.1ms) ROLLBACK [shard 1673 master]
214584
+  (0.1ms) ROLLBACK [shard 1671 master]
214585
+  (0.1ms) BEGIN [shard 1671 master]
214586
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214587
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214588
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214589
+  (0.1ms) BEGIN [shard 1673 master]
214590
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214591
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.785376"], ["updated_at", "2015-01-19 20:20:03.785376"]] [shard 1671 master]
214592
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214593
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214594
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.788095"], ["updated_at", "2015-01-19 20:20:03.788095"], ["user_id", 2785]] [shard 1671 master]
214595
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214596
+  (0.2ms) SAVEPOINT active_record_1 [shard 1672 master]
214597
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.790011"], ["updated_at", "2015-01-19 20:20:03.790011"]] [shard 1672 master]
214598
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214599
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214600
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.793579"], ["updated_at", "2015-01-19 20:20:03.793579"], ["user_id", 46]] [shard 1672 master]
214601
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214602
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214603
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.795313"], ["updated_at", "2015-01-19 20:20:03.795313"]] [shard 1673 master]
214604
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214605
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214606
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214607
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.798066"], ["updated_at", "2015-01-19 20:20:03.798066"], ["user_id", 38]] [shard 1673 master]
214608
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214609
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214610
+  (0.1ms) ROLLBACK [shard 1673 master]
214611
+  (0.1ms) ROLLBACK [shard 1671 master]
214612
+  (0.1ms) BEGIN [shard 1671 master]
214613
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214614
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214615
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214616
+  (0.2ms) BEGIN [shard 1673 master]
214617
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214618
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.804620"], ["updated_at", "2015-01-19 20:20:03.804620"]] [shard 1671 master]
214619
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214620
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214621
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.807631"], ["updated_at", "2015-01-19 20:20:03.807631"], ["user_id", 2786]] [shard 1671 master]
214622
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214623
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214624
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.809969"], ["updated_at", "2015-01-19 20:20:03.809969"]] [shard 1672 master]
214625
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214626
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214627
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.813304"], ["updated_at", "2015-01-19 20:20:03.813304"], ["user_id", 47]] [shard 1672 master]
214628
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214629
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214630
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.815324"], ["updated_at", "2015-01-19 20:20:03.815324"]] [shard 1673 master]
214631
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214632
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214633
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214634
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.818637"], ["updated_at", "2015-01-19 20:20:03.818637"], ["user_id", 39]] [shard 1673 master]
214635
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214636
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214637
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214638
+ SQL (0.2ms) INSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.820992"], ["updated_at", "2015-01-19 20:20:03.820992"]] [shard 1672 master]
214639
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214640
+  (0.1ms) ROLLBACK [shard 1673 master]
214641
+  (0.1ms) ROLLBACK [shard 1672 master]
214642
+  (0.1ms) BEGIN [shard 1671 master]
214643
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214644
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214645
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214646
+  (0.1ms) BEGIN [shard 1673 master]
214647
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214648
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.828095"], ["updated_at", "2015-01-19 20:20:03.828095"]] [shard 1671 master]
214649
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214650
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214651
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.830740"], ["updated_at", "2015-01-19 20:20:03.830740"], ["user_id", 2787]] [shard 1671 master]
214652
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214653
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214654
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.832611"], ["updated_at", "2015-01-19 20:20:03.832611"]] [shard 1672 master]
214655
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214656
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214657
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.835220"], ["updated_at", "2015-01-19 20:20:03.835220"], ["user_id", 48]] [shard 1672 master]
214658
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214659
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214660
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.836719"], ["updated_at", "2015-01-19 20:20:03.836719"]] [shard 1673 master]
214661
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214662
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214663
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214664
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.839379"], ["updated_at", "2015-01-19 20:20:03.839379"], ["user_id", 40]] [shard 1673 master]
214665
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214666
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214667
+  (0.1ms) ROLLBACK [shard 1673 master]
214668
+  (0.1ms) ROLLBACK [shard 1671 master]
214669
+  (0.1ms) BEGIN [shard 1671 master]
214670
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214671
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214672
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214673
+  (0.1ms) BEGIN [shard 1673 master]
214674
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214675
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.845940"], ["updated_at", "2015-01-19 20:20:03.845940"]] [shard 1671 master]
214676
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214677
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214678
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.848261"], ["updated_at", "2015-01-19 20:20:03.848261"], ["user_id", 2788]] [shard 1671 master]
214679
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214680
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214681
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.850018"], ["updated_at", "2015-01-19 20:20:03.850018"]] [shard 1672 master]
214682
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214683
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214684
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.852591"], ["updated_at", "2015-01-19 20:20:03.852591"], ["user_id", 49]] [shard 1672 master]
214685
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214686
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214687
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.854157"], ["updated_at", "2015-01-19 20:20:03.854157"]] [shard 1673 master]
214688
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214689
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214690
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214691
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.856804"], ["updated_at", "2015-01-19 20:20:03.856804"], ["user_id", 41]] [shard 1673 master]
214692
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214693
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214694
+  (0.1ms) ROLLBACK [shard 1673 master]
214695
+  (0.1ms) ROLLBACK [shard 1671 master]
214696
+  (0.1ms) BEGIN [shard 1671 master]
214697
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214698
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214699
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214700
+  (0.1ms) BEGIN [shard 1673 master]
214701
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214702
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.862690"], ["updated_at", "2015-01-19 20:20:03.862690"]] [shard 1671 master]
214703
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214704
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214705
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.865105"], ["updated_at", "2015-01-19 20:20:03.865105"], ["user_id", 2789]] [shard 1671 master]
214706
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214707
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214708
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.866822"], ["updated_at", "2015-01-19 20:20:03.866822"]] [shard 1672 master]
214709
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214710
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214711
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.869380"], ["updated_at", "2015-01-19 20:20:03.869380"], ["user_id", 50]] [shard 1672 master]
214712
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214713
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214714
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.870956"], ["updated_at", "2015-01-19 20:20:03.870956"]] [shard 1673 master]
214715
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214716
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214717
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214718
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.873600"], ["updated_at", "2015-01-19 20:20:03.873600"], ["user_id", 42]] [shard 1673 master]
214719
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214720
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214721
+  (0.1ms) ROLLBACK [shard 1673 master]
214722
+  (0.1ms) ROLLBACK [shard 1671 master]
214723
+  (0.1ms) BEGIN [shard 1671 master]
214724
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214725
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214726
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214727
+  (0.1ms) BEGIN [shard 1673 master]
214728
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214729
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.879558"], ["updated_at", "2015-01-19 20:20:03.879558"]] [shard 1671 master]
214730
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214731
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214732
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.881967"], ["updated_at", "2015-01-19 20:20:03.881967"], ["user_id", 2790]] [shard 1671 master]
214733
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214734
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214735
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.883625"], ["updated_at", "2015-01-19 20:20:03.883625"]] [shard 1672 master]
214736
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214737
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214738
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.886172"], ["updated_at", "2015-01-19 20:20:03.886172"], ["user_id", 51]] [shard 1672 master]
214739
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214740
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214741
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.887659"], ["updated_at", "2015-01-19 20:20:03.887659"]] [shard 1673 master]
214742
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214743
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214744
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214745
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.890231"], ["updated_at", "2015-01-19 20:20:03.890231"], ["user_id", 43]] [shard 1673 master]
214746
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214747
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214748
+  (0.1ms) ROLLBACK [shard 1673 master]
214749
+  (0.1ms) ROLLBACK [shard 1671 master]
214750
+  (0.1ms) BEGIN [shard 1671 master]
214751
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214752
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214753
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214754
+  (0.1ms) BEGIN [shard 1673 master]
214755
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214756
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.896653"], ["updated_at", "2015-01-19 20:20:03.896653"]] [shard 1671 master]
214757
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214758
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214759
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.899015"], ["updated_at", "2015-01-19 20:20:03.899015"], ["user_id", 2791]] [shard 1671 master]
214760
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214761
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214762
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.900747"], ["updated_at", "2015-01-19 20:20:03.900747"]] [shard 1672 master]
214763
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214764
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214765
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.903337"], ["updated_at", "2015-01-19 20:20:03.903337"], ["user_id", 52]] [shard 1672 master]
214766
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214767
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214768
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.904836"], ["updated_at", "2015-01-19 20:20:03.904836"]] [shard 1673 master]
214769
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214770
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214771
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214772
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.911662"], ["updated_at", "2015-01-19 20:20:03.911662"], ["user_id", 44]] [shard 1673 master]
214773
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214774
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214775
+  (0.1ms) ROLLBACK [shard 1673 master]
214776
+  (0.1ms) ROLLBACK [shard 1671 master]
214777
+  (0.1ms) BEGIN [shard 1671 master]
214778
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214779
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214780
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214781
+  (0.1ms) BEGIN [shard 1673 master]
214782
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214783
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.918073"], ["updated_at", "2015-01-19 20:20:03.918073"]] [shard 1671 master]
214784
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214785
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214786
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.920396"], ["updated_at", "2015-01-19 20:20:03.920396"], ["user_id", 2792]] [shard 1671 master]
214787
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214788
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214789
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.922111"], ["updated_at", "2015-01-19 20:20:03.922111"]] [shard 1672 master]
214790
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214791
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214792
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.925031"], ["updated_at", "2015-01-19 20:20:03.925031"], ["user_id", 53]] [shard 1672 master]
214793
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214794
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214795
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.926610"], ["updated_at", "2015-01-19 20:20:03.926610"]] [shard 1673 master]
214796
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214797
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214798
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214799
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.929563"], ["updated_at", "2015-01-19 20:20:03.929563"], ["user_id", 45]] [shard 1673 master]
214800
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214801
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214802
+  (0.1ms) ROLLBACK [shard 1673 master]
214803
+  (0.1ms) ROLLBACK [shard 1671 master]
214804
+  (0.1ms) BEGIN [shard 1671 master]
214805
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214806
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214807
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214808
+  (0.1ms) BEGIN [shard 1673 master]
214809
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214810
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.937447"], ["updated_at", "2015-01-19 20:20:03.937447"]] [shard 1671 master]
214811
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214812
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214813
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.939880"], ["updated_at", "2015-01-19 20:20:03.939880"], ["user_id", 2793]] [shard 1671 master]
214814
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214815
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
214816
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.941799"], ["updated_at", "2015-01-19 20:20:03.941799"]] [shard 1672 master]
214817
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214818
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214819
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.944746"], ["updated_at", "2015-01-19 20:20:03.944746"], ["user_id", 54]] [shard 1672 master]
214820
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
214821
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214822
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.946470"], ["updated_at", "2015-01-19 20:20:03.946470"]] [shard 1673 master]
214823
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214824
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214825
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
214826
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.949869"], ["updated_at", "2015-01-19 20:20:03.949869"], ["user_id", 46]] [shard 1673 master]
214827
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
214828
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214829
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214830
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.952766"], ["parent_id", 2793], ["updated_at", "2015-01-19 20:20:03.952766"]] [shard 1671 master]
214831
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214832
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214833
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "parent_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:03.955658"], ["parent_id", 2794], ["updated_at", "2015-01-19 20:20:03.955658"]] [shard 1671 master]
214834
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214835
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2794]] [shard 1671 master]
214836
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2793]] [shard 1671 master]
214837
+ User Load (0.3ms) SELECT "users".* FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = $1 [["parent_id", 2793]] [shard 1671 master]
214838
+  (0.1ms) ROLLBACK [shard 1673 master]
214839
+  (0.1ms) ROLLBACK [shard 1671 master]
214840
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
214841
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214842
+  (0.1ms) BEGIN [shard 1671 master]
214843
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
214844
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
214845
+  (0.4ms) COMMIT [shard 1671 master]
214846
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214847
+  (0.1ms) BEGIN [shard 1671 master]
214848
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
214849
+  (0.3ms) COMMIT [shard 1671 master]
214850
+  (0.1ms) BEGIN [shard 1671 master]
214851
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
214852
+  (0.2ms) COMMIT [shard 1671 master]
214853
+  (0.1ms) BEGIN [shard 1671 master]
214854
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214855
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214856
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214857
+  (0.1ms) BEGIN [shard 1673 master]
214858
+  (0.1ms) ROLLBACK [shard 1673 master]
214859
+  (0.1ms) ROLLBACK [shard 1671 master]
214860
+  (0.1ms) BEGIN [shard 1671 master]
214861
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214862
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214863
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214864
+  (0.1ms) BEGIN [shard 1673 master]
214865
+  (0.1ms) ROLLBACK [shard 1673 master]
214866
+  (0.1ms) ROLLBACK [shard 1671 master]
214867
+  (0.1ms) BEGIN [shard 1671 master]
214868
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214869
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214870
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214871
+  (0.1ms) BEGIN [shard 1673 master]
214872
+  (0.1ms) ROLLBACK [shard 1673 master]
214873
+  (0.1ms) ROLLBACK [shard 1671 master]
214874
+  (0.1ms) BEGIN [shard 1671 master]
214875
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214876
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214877
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214878
+  (0.1ms) BEGIN [shard 1673 master]
214879
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214880
+ SQL (0.4ms) INSERT INTO "mirror_users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:03.985454"], ["updated_at", "2015-01-19 20:20:03.985454"]] [shard 1671 master]
214881
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214882
+ MirrorUser Load (0.2ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 64]] [shard 1671 master]
214883
+ MirrorUser Load (0.1ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 64]] [shard 1671 master]
214884
+ MirrorUser Load (0.3ms) SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = 64 ORDER BY "mirror_users"."id" ASC LIMIT 1 [shard 1672 master]
214885
+  (0.1ms) ROLLBACK [shard 1673 master]
214886
+  (0.1ms) ROLLBACK [shard 1672 master]
214887
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1671 master]
214888
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214889
+  (0.1ms) BEGIN [shard 1671 master]
214890
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
214891
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
214892
+  (0.3ms) COMMIT [shard 1671 master]
214893
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214894
+  (0.1ms) BEGIN [shard 1671 master]
214895
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
214896
+  (0.3ms) COMMIT [shard 1671 master]
214897
+  (0.1ms) BEGIN [shard 1671 master]
214898
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
214899
+  (0.3ms) COMMIT [shard 1671 master]
214900
+  (0.1ms) BEGIN [shard 1671 master]
214901
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214902
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214903
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214904
+  (0.1ms) BEGIN [shard 1673 master]
214905
+  (0.1ms) ROLLBACK [shard 1673 master]
214906
+  (0.1ms) ROLLBACK [shard 1671 master]
214907
+  (0.1ms) BEGIN [shard 1671 master]
214908
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214909
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214910
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214911
+  (0.1ms) BEGIN [shard 1673 master]
214912
+  (0.1ms) ROLLBACK [shard 1673 master]
214913
+  (0.1ms) ROLLBACK [shard 1671 master]
214914
+  (0.1ms) BEGIN [shard 1671 master]
214915
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214916
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214917
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214918
+  (0.1ms) BEGIN [shard 1673 master]
214919
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
214920
+  (0.1ms) ROLLBACK [shard 1673 master]
214921
+  (0.1ms) ROLLBACK [shard 1671 master]
214922
+  (0.1ms) BEGIN [shard 1671 master]
214923
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214924
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214925
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214926
+  (0.1ms) BEGIN [shard 1673 master]
214927
+  (0.1ms) ROLLBACK [shard 1673 master]
214928
+  (0.1ms) ROLLBACK [shard 1671 master]
214929
+  (0.1ms) BEGIN [shard 1671 master]
214930
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214931
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214932
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214933
+  (0.1ms) BEGIN [shard 1673 master]
214934
+  (0.1ms) ROLLBACK [shard 1673 master]
214935
+  (0.1ms) ROLLBACK [shard 1671 master]
214936
+  (0.1ms) BEGIN [shard 1671 master]
214937
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214938
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214939
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214940
+  (0.1ms) BEGIN [shard 1673 master]
214941
+  (0.1ms) ROLLBACK [shard 1673 master]
214942
+  (0.1ms) ROLLBACK [shard 1671 master]
214943
+  (0.1ms) BEGIN [shard 1671 master]
214944
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214945
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214946
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214947
+  (0.1ms) BEGIN [shard 1673 master]
214948
+  (0.1ms) ROLLBACK [shard 1673 master]
214949
+  (0.1ms) ROLLBACK [shard 1671 master]
214950
+  (0.1ms) BEGIN [shard 1671 master]
214951
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214952
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214953
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214954
+  (0.1ms) BEGIN [shard 1673 master]
214955
+  (0.1ms) ROLLBACK [shard 1673 master]
214956
+  (0.1ms) ROLLBACK [shard 1671 master]
214957
+  (0.1ms) BEGIN [shard 1671 master]
214958
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214959
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214960
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214961
+  (0.1ms) BEGIN [shard 1673 master]
214962
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
214963
+  (0.1ms) ROLLBACK [shard 1673 master]
214964
+  (0.1ms) ROLLBACK [shard 1671 master]
214965
+  (0.1ms) BEGIN [shard 1671 master]
214966
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214967
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214968
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214969
+  (0.1ms) BEGIN [shard 1673 master]
214970
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
214971
+  (0.1ms) ROLLBACK [shard 1673 master]
214972
+  (0.1ms) ROLLBACK [shard 1671 master]
214973
+  (0.1ms) BEGIN [shard 1671 master]
214974
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214975
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214976
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214977
+  (0.1ms) BEGIN [shard 1673 master]
214978
+  (0.1ms) ROLLBACK [shard 1673 master]
214979
+  (0.1ms) ROLLBACK [shard 1671 master]
214980
+  (0.1ms) BEGIN [shard 1671 master]
214981
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214982
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214983
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214984
+  (0.1ms) BEGIN [shard 1673 master]
214985
+  (0.1ms) ROLLBACK [shard 1673 master]
214986
+  (0.1ms) ROLLBACK [shard 1671 master]
214987
+  (0.1ms) BEGIN [shard 1671 master]
214988
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
214989
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
214990
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
214991
+  (0.1ms) BEGIN [shard 1673 master]
214992
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214993
+ SQL (0.2ms) INSERT INTO "switchman_shards" DEFAULT VALUES RETURNING "id" [shard 1671 master]
214994
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214995
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
214996
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1676]] [shard 1671 master]
214997
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
214998
+  (0.1ms) ROLLBACK [shard 1673 master]
214999
+  (0.1ms) ROLLBACK [shard 1671 master]
215000
+  (0.1ms) BEGIN [shard 1671 master]
215001
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215002
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215003
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215004
+  (0.1ms) BEGIN [shard 1673 master]
215005
+  (0.1ms) ROLLBACK [shard 1673 master]
215006
+  (0.1ms) ROLLBACK [shard 1671 master]
215007
+  (0.1ms) BEGIN [shard 1671 master]
215008
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215009
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215010
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215011
+  (0.1ms) BEGIN [shard 1673 master]
215012
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215013
+ SQL (0.1ms) INSERT INTO "switchman_shards" DEFAULT VALUES RETURNING "id" [shard 1671 master]
215014
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215015
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215016
+ SQL (0.1ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1677]] [shard 1671 master]
215017
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215018
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1677 LIMIT 1 [shard 1671 master]
215019
+  (0.1ms) ROLLBACK [shard 1673 master]
215020
+  (0.1ms) ROLLBACK [shard 1671 master]
215021
+  (0.1ms) BEGIN [shard 1671 master]
215022
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215023
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215024
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215025
+  (0.1ms) BEGIN [shard 1673 master]
215026
+  (0.1ms) ROLLBACK [shard 1673 master]
215027
+  (0.1ms) ROLLBACK [shard 1671 master]
215028
+  (0.1ms) BEGIN [shard 1671 master]
215029
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215030
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215031
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215032
+  (0.1ms) BEGIN [shard 1673 master]
215033
+  (0.1ms) ROLLBACK [shard 1673 master]
215034
+  (0.1ms) ROLLBACK [shard 1671 master]
215035
+  (0.1ms) BEGIN [shard 1671 master]
215036
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215037
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215038
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215039
+  (0.1ms) BEGIN [shard 1673 master]
215040
+  (0.1ms) ROLLBACK [shard 1673 master]
215041
+  (0.1ms) ROLLBACK [shard 1671 master]
215042
+  (0.1ms) BEGIN [shard 1671 master]
215043
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215044
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215045
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215046
+  (0.1ms) BEGIN [shard 1673 master]
215047
+  (0.1ms) ROLLBACK [shard 1673 master]
215048
+  (0.1ms) ROLLBACK [shard 1671 master]
215049
+  (0.1ms) BEGIN [shard 1671 master]
215050
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215051
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215052
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215053
+  (0.1ms) BEGIN [shard 1673 master]
215054
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1673 LIMIT 1 [shard 1671 master]
215055
+  (0.1ms) ROLLBACK [shard 1673 master]
215056
+  (0.1ms) ROLLBACK [shard 1671 master]
215057
+  (0.1ms) BEGIN [shard 1671 master]
215058
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215059
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215060
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215061
+  (0.1ms) BEGIN [shard 1673 master]
215062
+  (0.1ms) ROLLBACK [shard 1673 master]
215063
+  (0.1ms) ROLLBACK [shard 1671 master]
215064
+  (0.1ms) BEGIN [shard 1671 master]
215065
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215066
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215067
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215068
+  (0.1ms) BEGIN [shard 1673 master]
215069
+  (0.1ms) ROLLBACK [shard 1673 master]
215070
+  (0.1ms) ROLLBACK [shard 1671 master]
215071
+  (0.1ms) BEGIN [shard 1671 master]
215072
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215073
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215074
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215075
+  (0.1ms) BEGIN [shard 1673 master]
215076
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 11673 LIMIT 1 [shard 1671 master]
215077
+  (0.1ms) ROLLBACK [shard 1673 master]
215078
+  (0.1ms) ROLLBACK [shard 1671 master]
215079
+  (0.1ms) BEGIN [shard 1671 master]
215080
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215081
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215082
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215083
+  (0.1ms) BEGIN [shard 1673 master]
215084
+  (0.1ms) ROLLBACK [shard 1673 master]
215085
+  (0.1ms) ROLLBACK [shard 1671 master]
215086
+  (0.1ms) BEGIN [shard 1671 master]
215087
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215088
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215089
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215090
+  (0.1ms) BEGIN [shard 1673 master]
215091
+  (0.1ms) ROLLBACK [shard 1673 master]
215092
+  (0.1ms) ROLLBACK [shard 1671 master]
215093
+  (0.1ms) BEGIN [shard 1671 master]
215094
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215095
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215096
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215097
+  (0.1ms) BEGIN [shard 1673 master]
215098
+  (0.1ms) ROLLBACK [shard 1673 master]
215099
+  (0.1ms) ROLLBACK [shard 1671 master]
215100
+  (0.1ms) BEGIN [shard 1671 master]
215101
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215102
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215103
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215104
+  (0.1ms) BEGIN [shard 1673 master]
215105
+  (0.1ms) ROLLBACK [shard 1673 master]
215106
+  (0.1ms) ROLLBACK [shard 1671 master]
215107
+  (0.1ms) BEGIN [shard 1671 master]
215108
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215109
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215110
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215111
+  (0.1ms) BEGIN [shard 1673 master]
215112
+  (0.1ms) ROLLBACK [shard 1673 master]
215113
+  (0.1ms) ROLLBACK [shard 1671 master]
215114
+  (0.1ms) BEGIN [shard 1671 master]
215115
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215116
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215117
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215118
+  (0.1ms) BEGIN [shard 1673 master]
215119
+  (0.1ms) ROLLBACK [shard 1673 master]
215120
+  (0.1ms) ROLLBACK [shard 1671 master]
215121
+  (0.1ms) BEGIN [shard 1671 master]
215122
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215123
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215124
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215125
+  (0.1ms) BEGIN [shard 1673 master]
215126
+  (0.1ms) ROLLBACK [shard 1673 master]
215127
+  (0.1ms) ROLLBACK [shard 1671 master]
215128
+  (0.1ms) BEGIN [shard 1671 master]
215129
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215130
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215131
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215132
+  (0.1ms) BEGIN [shard 1673 master]
215133
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '3' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215134
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215135
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "3"], ["name", "public"]] [shard 1671 master]
215136
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215137
+  (0.6ms) CREATE SCHEMA switchman_test_shard_1678 [shard 1678 deploy]
215138
+  (0.1ms) BEGIN [shard 1678 deploy]
215139
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [shard 1678 deploy]
215140
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1678 deploy]
215141
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1678 deploy]
215142
+ Migrating to CreateUsers (20130403132607)
215143
+  (2.1ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215144
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 1678 deploy]
215145
+ Migrating to CreateAppendages (20130411202442)
215146
+  (2.0ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215147
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 1678 deploy]
215148
+ Migrating to CreateMirrorUsers (20130411202551)
215149
+  (2.0ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215150
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 1678 deploy]
215151
+ Migrating to CreateDigits (20131022202028)
215152
+  (2.1ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215153
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 1678 deploy]
215154
+ Migrating to CreateFeatures (20131206172923)
215155
+  (2.0ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215156
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 1678 deploy]
215157
+ Migrating to AddParentIdToUsers (20140123154135)
215158
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1678 deploy]
215159
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 1678 deploy]
215160
+ Migrating to CreateRoots (20140219183820)
215161
+  (1.8ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp)  [shard 1678 deploy]
215162
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 1678 deploy]
215163
+  (0.9ms) COMMIT [shard 1678 deploy]
215164
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215165
+ SQL (0.2ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1678 [["name", "switchman_test_shard_1678"]] [shard 1671 master]
215166
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215167
+  (0.1ms) BEGIN [shard 1678 master]
215168
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.194049"], ["updated_at", "2015-01-19 20:20:04.194049"]] [shard 1678 master]
215169
+  (0.3ms) COMMIT [shard 1678 master]
215170
+  (0.2ms) SELECT COUNT(*) FROM "users" [shard 1678 master]
215171
+  (4.6ms) DROP SCHEMA switchman_test_shard_1678 CASCADE [shard 1678 deploy]
215172
+  (0.9ms) SELECT COUNT(*) FROM "users" [shard 1678 master]
215173
+ PG::UndefinedTable: ERROR: relation "users" does not exist
215174
+ LINE 1: SELECT COUNT(*) FROM "users"
215175
+ ^
215176
+ : SELECT COUNT(*) FROM "users"
215177
+  (0.2ms) ROLLBACK [shard 1673 master]
215178
+  (0.2ms) ROLLBACK [shard 1671 master]
215179
+  (0.1ms) BEGIN [shard 1671 master]
215180
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215181
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215182
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215183
+  (0.1ms) BEGIN [shard 1673 master]
215184
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
215185
+  (0.1ms) ROLLBACK [shard 1673 master]
215186
+  (0.1ms) ROLLBACK [shard 1671 master]
215187
+  (0.1ms) BEGIN [shard 1671 master]
215188
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215189
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215190
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215191
+  (0.1ms) BEGIN [shard 1673 master]
215192
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
215193
+  (0.1ms) ROLLBACK [shard 1673 master]
215194
+  (0.1ms) ROLLBACK [shard 1671 master]
215195
+  (0.1ms) BEGIN [shard 1671 master]
215196
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215197
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215198
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215199
+  (0.1ms) BEGIN [shard 1673 master]
215200
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
215201
+  (0.1ms) ROLLBACK [shard 1673 master]
215202
+  (0.1ms) ROLLBACK [shard 1671 master]
215203
+  (0.1ms) BEGIN [shard 1671 master]
215204
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215205
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215206
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215207
+  (0.1ms) BEGIN [shard 1673 master]
215208
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1671 master]
215209
+  (0.1ms) ROLLBACK [shard 1673 master]
215210
+  (0.1ms) ROLLBACK [shard 1671 master]
215211
+  (0.1ms) BEGIN [shard 1671 master]
215212
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215213
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215214
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215215
+  (0.1ms) BEGIN [shard 1673 master]
215216
+  (0.1ms) ROLLBACK [shard 1673 master]
215217
+  (0.1ms) ROLLBACK [shard 1671 master]
215218
+  (0.1ms) BEGIN [shard 1671 master]
215219
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215220
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215221
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215222
+  (0.1ms) BEGIN [shard 1673 master]
215223
+  (0.1ms) ROLLBACK [shard 1673 master]
215224
+  (0.1ms) ROLLBACK [shard 1671 master]
215225
+  (0.1ms) BEGIN [shard 1671 master]
215226
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215227
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215228
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215229
+  (0.1ms) BEGIN [shard 1673 master]
215230
+  (0.1ms) ROLLBACK [shard 1673 master]
215231
+  (0.1ms) ROLLBACK [shard 1671 master]
215232
+  (0.1ms) BEGIN [shard 1671 master]
215233
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215234
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215235
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215236
+  (0.1ms) BEGIN [shard 1673 master]
215237
+  (0.1ms) ROLLBACK [shard 1673 master]
215238
+  (0.1ms) ROLLBACK [shard 1671 master]
215239
+  (0.1ms) BEGIN [shard 1671 master]
215240
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215241
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215242
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215243
+  (0.1ms) BEGIN [shard 1673 master]
215244
+  (0.1ms) ROLLBACK [shard 1673 master]
215245
+  (0.1ms) ROLLBACK [shard 1671 master]
215246
+  (0.1ms) BEGIN [shard 1671 master]
215247
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215248
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215249
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215250
+  (0.1ms) BEGIN [shard 1673 master]
215251
+  (0.1ms) ROLLBACK [shard 1673 master]
215252
+  (0.1ms) ROLLBACK [shard 1671 master]
215253
+  (0.1ms) BEGIN [shard 1671 master]
215254
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215255
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215256
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215257
+  (0.1ms) BEGIN [shard 1673 master]
215258
+  (0.1ms) ROLLBACK [shard 1673 master]
215259
+  (0.1ms) ROLLBACK [shard 1671 master]
215260
+  (0.1ms) BEGIN [shard 1671 master]
215261
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215262
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215263
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215264
+  (0.1ms) BEGIN [shard 1673 master]
215265
+  (0.1ms) ROLLBACK [shard 1673 master]
215266
+  (0.1ms) ROLLBACK [shard 1671 master]
215267
+ SQL (0.5ms) DELETE FROM "switchman_shards" [shard 1671 master]
215268
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215269
+  (0.1ms) BEGIN [shard 1671 master]
215270
+  (0.1ms) ROLLBACK [shard 1671 master]
215271
+  (0.1ms) BEGIN [shard 1671 master]
215272
+  (0.1ms) ROLLBACK [shard 1671 master]
215273
+  (0.1ms) BEGIN [shard 1671 master]
215274
+  (0.1ms) ROLLBACK [shard 1671 master]
215275
+  (0.1ms) BEGIN [shard 1671 master]
215276
+  (0.1ms) ROLLBACK [shard 1671 master]
215277
+  (0.1ms) BEGIN [shard 1671 master]
215278
+  (0.1ms) ROLLBACK [shard 1671 master]
215279
+  (0.1ms) BEGIN [shard 1671 master]
215280
+  (0.1ms) ROLLBACK [shard 1671 master]
215281
+  (0.1ms) BEGIN [shard 1671 master]
215282
+  (0.1ms) ROLLBACK [shard 1671 master]
215283
+  (0.1ms) BEGIN [shard 1671 master]
215284
+  (0.1ms) ROLLBACK [shard 1671 master]
215285
+  (0.1ms) BEGIN [shard 1671 master]
215286
+  (0.1ms) ROLLBACK [shard 1671 master]
215287
+  (0.1ms) BEGIN [shard 1671 master]
215288
+  (0.1ms) ROLLBACK [shard 1671 master]
215289
+  (0.1ms) BEGIN [shard 1671 master]
215290
+  (0.1ms) ROLLBACK [shard 1671 master]
215291
+  (0.1ms) BEGIN [shard 1671 master]
215292
+  (0.1ms) ROLLBACK [shard 1671 master]
215293
+  (0.1ms) BEGIN [shard 1671 master]
215294
+  (0.1ms) ROLLBACK [shard 1671 master]
215295
+  (0.1ms) BEGIN [shard 1671 master]
215296
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215297
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215298
+  (6.1ms) COMMIT [shard 1671 master]
215299
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215300
+  (0.1ms) BEGIN [shard 1671 master]
215301
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215302
+  (6.2ms) COMMIT [shard 1671 master]
215303
+  (0.1ms) BEGIN [shard 1671 master]
215304
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215305
+  (3.6ms) COMMIT [shard 1671 master]
215306
+  (0.1ms) BEGIN [shard 1671 master]
215307
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215308
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215309
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215310
+  (0.1ms) BEGIN [shard 1673 master]
215311
+ Switchman::Shard Load (0.6ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '13' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215312
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215313
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "13"]] [shard 1671 master]
215314
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215315
+  (0.1ms) begin transaction [shard 1679 deploy]
215316
+  (0.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [shard 1679 deploy]
215317
+  (0.1ms) select sqlite_version(*) [shard 1679 deploy]
215318
+  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1679 deploy]
215319
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1679 deploy]
215320
+ Migrating to CreateUsers (20130403132607)
215321
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "mirror_user_id" integer(8), "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215322
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130403132607"]] [shard 1679 deploy]
215323
+ Migrating to CreateAppendages (20130411202442)
215324
+  (0.1ms) CREATE TABLE "appendages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "value" integer, "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215325
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130411202442"]] [shard 1679 deploy]
215326
+ Migrating to CreateMirrorUsers (20130411202551)
215327
+  (0.1ms) CREATE TABLE "mirror_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215328
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130411202551"]] [shard 1679 deploy]
215329
+ Migrating to CreateDigits (20131022202028)
215330
+  (0.1ms) CREATE TABLE "digits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "appendage_id" integer(8), "value" integer, "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215331
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131022202028"]] [shard 1679 deploy]
215332
+ Migrating to CreateFeatures (20131206172923)
215333
+  (0.2ms) CREATE TABLE "features" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer(8), "owner_type" varchar(255), "value" integer, "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215334
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131206172923"]] [shard 1679 deploy]
215335
+ Migrating to AddParentIdToUsers (20140123154135)
215336
+  (0.1ms) ALTER TABLE "users" ADD "parent_id" integer(8) [shard 1679 deploy]
215337
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123154135"]] [shard 1679 deploy]
215338
+ Migrating to CreateRoots (20140219183820)
215339
+  (0.1ms) CREATE TABLE "roots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime, "updated_at" datetime) [shard 1679 deploy]
215340
+ SQL (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140219183820"]] [shard 1679 deploy]
215341
+  (1.2ms) commit transaction [shard 1679 deploy]
215342
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215343
+ SQL (0.2ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1679 [["name", "db/shard_1679.sqlite3"]] [shard 1671 master]
215344
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215345
+  (0.0ms) begin transaction [shard 1679 master]
215346
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-19 20:20:04.384101"], ["updated_at", "2015-01-19 20:20:04.384101"]] [shard 1679 master]
215347
+  (0.9ms) commit transaction [shard 1679 master]
215348
+ Drop failed: No such file or directory @ unlink_internal - db/shard_1679.sqlite3
215349
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215350
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1679]] [shard 1671 master]
215351
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215352
+  (0.1ms) ROLLBACK [shard 1673 master]
215353
+  (0.1ms) ROLLBACK [shard 1671 master]
215354
+  (0.1ms) BEGIN [shard 1671 master]
215355
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215356
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215357
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215358
+  (0.1ms) BEGIN [shard 1673 master]
215359
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" IS NULL AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215360
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215361
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 1671 master]
215362
+  (0.1ms) ROLLBACK [shard 1673 master]
215363
+  (0.1ms) ROLLBACK [shard 1671 master]
215364
+  (0.1ms) BEGIN [shard 1671 master]
215365
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215366
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215367
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215368
+  (0.1ms) BEGIN [shard 1673 master]
215369
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '14' AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215370
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215371
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "14"], ["name", "public"]] [shard 1671 master]
215372
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215373
+  (0.6ms) CREATE SCHEMA switchman_test_shard_1680 [shard 1680 deploy]
215374
+  (0.1ms) BEGIN [shard 1680 deploy]
215375
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1680 deploy]
215376
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1680 deploy]
215377
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1680 deploy]
215378
+ Migrating to CreateUsers (20130403132607)
215379
+  (2.9ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215380
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 1680 deploy]
215381
+ Migrating to CreateAppendages (20130411202442)
215382
+  (1.9ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215383
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 1680 deploy]
215384
+ Migrating to CreateMirrorUsers (20130411202551)
215385
+  (1.6ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215386
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 1680 deploy]
215387
+ Migrating to CreateDigits (20131022202028)
215388
+  (1.7ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215389
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 1680 deploy]
215390
+ Migrating to CreateFeatures (20131206172923)
215391
+  (1.8ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215392
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 1680 deploy]
215393
+ Migrating to AddParentIdToUsers (20140123154135)
215394
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1680 deploy]
215395
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 1680 deploy]
215396
+ Migrating to CreateRoots (20140219183820)
215397
+  (4.2ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1680 deploy]
215398
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 1680 deploy]
215399
+  (3.1ms) COMMIT [shard 1680 deploy]
215400
+  (0.2ms) SAVEPOINT active_record_1 [shard 1671 master]
215401
+ SQL (0.3ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1680 [["name", "switchman_test_shard_1680"]] [shard 1671 master]
215402
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215403
+  (0.1ms) BEGIN [shard 1680 master]
215404
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.482451"], ["updated_at", "2015-01-19 20:20:04.482451"]] [shard 1680 master]
215405
+  (0.3ms) COMMIT [shard 1680 master]
215406
+  (4.2ms) DROP SCHEMA switchman_test_shard_1680 CASCADE [shard 1680 deploy]
215407
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215408
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1680]] [shard 1671 master]
215409
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215410
+  (0.1ms) ROLLBACK [shard 1673 master]
215411
+  (0.1ms) ROLLBACK [shard 1671 master]
215412
+  (0.1ms) BEGIN [shard 1671 master]
215413
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215414
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215415
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215416
+  (0.1ms) BEGIN [shard 1673 master]
215417
+ 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 "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215418
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215419
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "test"], ["name", "public"]] [shard 1671 master]
215420
+  (0.3ms) CREATE SCHEMA switchman_test_shard_1681 [shard 1681 deploy]
215421
+  (0.1ms) SAVEPOINT active_record_2 [shard 1681 deploy]
215422
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  [shard 1681 deploy]
215423
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1681 deploy]
215424
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" [shard 1681 deploy]
215425
+ Migrating to CreateUsers (20130403132607)
215426
+  (2.0ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215427
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130403132607"]] [shard 1681 deploy]
215428
+ Migrating to CreateAppendages (20130411202442)
215429
+  (1.8ms) CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215430
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202442"]] [shard 1681 deploy]
215431
+ Migrating to CreateMirrorUsers (20130411202551)
215432
+  (1.7ms) CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215433
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20130411202551"]] [shard 1681 deploy]
215434
+ Migrating to CreateDigits (20131022202028)
215435
+  (2.5ms) CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215436
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131022202028"]] [shard 1681 deploy]
215437
+ Migrating to CreateFeatures (20131206172923)
215438
+  (2.2ms) CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215439
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131206172923"]] [shard 1681 deploy]
215440
+ Migrating to AddParentIdToUsers (20140123154135)
215441
+  (0.2ms) ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1681 deploy]
215442
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123154135"]] [shard 1681 deploy]
215443
+ Migrating to CreateRoots (20140219183820)
215444
+  (1.8ms) CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 1681 deploy]
215445
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140219183820"]] [shard 1681 deploy]
215446
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 1681 deploy]
215447
+ SQL (0.2ms) UPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 1681 [["name", "switchman_test_shard_1681"]] [shard 1671 master]
215448
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215449
+  (0.1ms) SAVEPOINT active_record_1 [shard 1681 master]
215450
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.546858"], ["updated_at", "2015-01-19 20:20:04.546858"]] [shard 1681 master]
215451
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1681 master]
215452
+  (2.5ms) DROP SCHEMA switchman_test_shard_1681 CASCADE [shard 1681 deploy]
215453
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215454
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1681]] [shard 1671 master]
215455
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215456
+  (0.1ms) ROLLBACK [shard 1673 master]
215457
+  (2.2ms) ROLLBACK [shard 1671 master]
215458
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1671 master]
215459
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215460
+  (0.1ms) BEGIN [shard 1671 master]
215461
+  (0.1ms) ROLLBACK [shard 1671 master]
215462
+  (0.1ms) BEGIN [shard 1671 master]
215463
+  (0.1ms) ROLLBACK [shard 1671 master]
215464
+  (0.1ms) BEGIN [shard 1671 master]
215465
+  (0.1ms) ROLLBACK [shard 1671 master]
215466
+  (0.1ms) BEGIN [shard 1671 master]
215467
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215468
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215469
+  (0.3ms) COMMIT [shard 1671 master]
215470
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215471
+  (0.1ms) BEGIN [shard 1671 master]
215472
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215473
+  (0.2ms) COMMIT [shard 1671 master]
215474
+  (0.1ms) BEGIN [shard 1671 master]
215475
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215476
+  (0.2ms) COMMIT [shard 1671 master]
215477
+  (0.1ms) BEGIN [shard 1671 master]
215478
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215479
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215480
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215481
+  (0.1ms) BEGIN [shard 1673 master]
215482
+  (0.1ms) ROLLBACK [shard 1673 master]
215483
+  (0.1ms) ROLLBACK [shard 1671 master]
215484
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
215485
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215486
+  (0.1ms) BEGIN [shard 1671 master]
215487
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215488
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "15"], ["name", "non_existent_shard"]] [shard 1671 master]
215489
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215490
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215491
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "15"]] [shard 1671 master]
215492
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215493
+  (0.3ms) SELECT COUNT(*) FROM "users" [shard 1682 master]
215494
+ PG::UndefinedTable: ERROR: relation "users" does not exist
215495
+ LINE 1: SELECT COUNT(*) FROM "users"
215496
+ ^
215497
+ : SELECT COUNT(*) FROM "users"
215498
+  (0.5ms) SELECT COUNT(*) FROM "users" [shard 1683 master]
215499
+  (0.1ms) ROLLBACK [shard 1671 master]
215500
+  (0.1ms) BEGIN [shard 1671 master]
215501
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215502
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "16"]] [shard 1671 master]
215503
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215504
+  (0.1ms) ROLLBACK [shard 1671 master]
215505
+  (0.1ms) BEGIN [shard 1671 master]
215506
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215507
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "17"]] [shard 1671 master]
215508
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215509
+  (0.1ms) ROLLBACK [shard 1671 master]
215510
+  (0.1ms) BEGIN [shard 1671 master]
215511
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215512
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "18"]] [shard 1671 master]
215513
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215514
+  (0.1ms) ROLLBACK [shard 1671 master]
215515
+  (0.1ms) BEGIN [shard 1671 master]
215516
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215517
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "19"]] [shard 1671 master]
215518
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215519
+  (0.1ms) ROLLBACK [shard 1671 master]
215520
+  (0.1ms) BEGIN [shard 1671 master]
215521
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215522
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "20"]] [shard 1671 master]
215523
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215524
+  (0.1ms) ROLLBACK [shard 1671 master]
215525
+  (0.1ms) BEGIN [shard 1671 master]
215526
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215527
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "21"]] [shard 1671 master]
215528
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215529
+  (0.1ms) ROLLBACK [shard 1671 master]
215530
+  (0.1ms) BEGIN [shard 1671 master]
215531
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215532
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215533
+  (0.3ms) COMMIT [shard 1671 master]
215534
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215535
+  (0.1ms) BEGIN [shard 1671 master]
215536
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215537
+  (0.2ms) COMMIT [shard 1671 master]
215538
+  (0.1ms) BEGIN [shard 1671 master]
215539
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215540
+  (0.3ms) COMMIT [shard 1671 master]
215541
+  (0.1ms) BEGIN [shard 1671 master]
215542
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215543
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215544
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215545
+  (0.1ms) BEGIN [shard 1673 master]
215546
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215547
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.661905"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:04.661905"]] [shard 1671 master]
215548
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215549
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215550
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.663906"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:04.663906"]] [shard 1672 master]
215551
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215552
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 55 ORDER BY "users"."id" ASC LIMIT 1 [shard 1672 master]
215553
+  (0.1ms) ROLLBACK [shard 1673 master]
215554
+  (0.1ms) ROLLBACK [shard 1672 master]
215555
+  (0.1ms) BEGIN [shard 1671 master]
215556
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215557
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215558
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215559
+  (0.1ms) BEGIN [shard 1673 master]
215560
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215561
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.670443"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:04.670443"]] [shard 1671 master]
215562
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215563
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215564
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.672526"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:04.672526"]] [shard 1672 master]
215565
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215566
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
215567
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (2797) [shard 1671 master]
215568
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 1672 master]
215569
+  (0.2ms) ROLLBACK [shard 1673 master]
215570
+  (0.1ms) ROLLBACK [shard 1672 master]
215571
+  (0.1ms) BEGIN [shard 1671 master]
215572
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215573
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215574
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215575
+  (0.1ms) BEGIN [shard 1673 master]
215576
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215577
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.687298"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:04.687298"]] [shard 1671 master]
215578
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215579
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215580
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.690117"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:04.690117"]] [shard 1672 master]
215581
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215582
+  (0.1ms) ROLLBACK [shard 1673 master]
215583
+  (0.1ms) ROLLBACK [shard 1672 master]
215584
+  (0.1ms) BEGIN [shard 1671 master]
215585
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215586
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215587
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215588
+  (0.1ms) BEGIN [shard 1673 master]
215589
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215590
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.696479"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:04.696479"]] [shard 1671 master]
215591
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215592
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215593
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.698812"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:04.698812"]] [shard 1672 master]
215594
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215595
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" = 58 [shard 1672 master]
215596
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2799]] [shard 1671 master]
215597
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 58]] [shard 1672 master]
215598
+  (0.1ms) ROLLBACK [shard 1673 master]
215599
+  (0.1ms) ROLLBACK [shard 1672 master]
215600
+  (0.1ms) BEGIN [shard 1671 master]
215601
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215602
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215603
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215604
+  (0.1ms) BEGIN [shard 1673 master]
215605
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215606
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.707532"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:04.707532"]] [shard 1671 master]
215607
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215608
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215609
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:04.709379"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:04.709379"]] [shard 1672 master]
215610
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215611
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (2800) [shard 1671 master]
215612
+ SQL (0.2ms) UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (59) [shard 1672 master]
215613
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2800]] [shard 1671 master]
215614
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 59]] [shard 1672 master]
215615
+  (0.1ms) ROLLBACK [shard 1673 master]
215616
+  (0.1ms) ROLLBACK [shard 1672 master]
215617
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
215618
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215619
+  (0.1ms) BEGIN [shard 1671 master]
215620
+  (0.1ms) SELECT COUNT(*) FROM "switchman_shards" [shard 1671 master]
215621
+  (0.1ms) ROLLBACK [shard 1671 master]
215622
+  (0.1ms) BEGIN [shard 1671 master]
215623
+  (0.1ms) ROLLBACK [shard 1671 master]
215624
+  (0.1ms) BEGIN [shard 1671 master]
215625
+  (0.1ms) ROLLBACK [shard 1671 master]
215626
+  (0.1ms) BEGIN [shard 1671 master]
215627
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215628
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215629
+  (0.3ms) COMMIT [shard 1671 master]
215630
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215631
+  (0.1ms) BEGIN [shard 1671 master]
215632
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215633
+  (0.3ms) COMMIT [shard 1671 master]
215634
+  (0.1ms) BEGIN [shard 1671 master]
215635
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215636
+  (0.3ms) COMMIT [shard 1671 master]
215637
+  (0.1ms) BEGIN [shard 1673 master]
215638
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215639
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.727534"], ["updated_at", "2015-01-19 20:20:04.727534"]] [shard 1673 master]
215640
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
215641
+  (0.1ms) BEGIN [shard 1671 master]
215642
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215643
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215644
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215645
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215646
+  (0.3ms) SELECT COUNT(*) FROM "users" [shard 1673 master]
215647
+  (0.1ms) SAVEPOINT active_record_2 [shard 1673 master]
215648
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.733125"], ["updated_at", "2015-01-19 20:20:04.733125"]] [shard 1673 master]
215649
+  (0.1ms) RELEASE SAVEPOINT active_record_2 [shard 1673 master]
215650
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 [shard 1673 master]
215651
+  (0.2ms) ROLLBACK [shard 1671 master]
215652
+  (0.2ms) SELECT COUNT(*) FROM "users" [shard 1673 master]
215653
+  (0.1ms) ROLLBACK [shard 1673 master]
215654
+ SQL (6.3ms) DELETE FROM "switchman_shards" [shard 1671 master]
215655
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215656
+  (0.1ms) BEGIN [shard 1671 master]
215657
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215658
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215659
+  (11.3ms) COMMIT [shard 1671 master]
215660
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215661
+  (0.1ms) BEGIN [shard 1671 master]
215662
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215663
+  (0.3ms) COMMIT [shard 1671 master]
215664
+  (0.1ms) BEGIN [shard 1671 master]
215665
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215666
+  (0.2ms) COMMIT [shard 1671 master]
215667
+  (0.1ms) BEGIN [shard 1671 master]
215668
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215669
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215670
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215671
+  (0.1ms) BEGIN [shard 1673 master]
215672
+  (0.1ms) ROLLBACK [shard 1673 master]
215673
+  (0.2ms) ROLLBACK [shard 1671 master]
215674
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
215675
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215676
+  (0.1ms) BEGIN [shard 1671 master]
215677
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215678
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215679
+  (0.4ms) COMMIT [shard 1671 master]
215680
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215681
+  (0.1ms) BEGIN [shard 1671 master]
215682
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215683
+  (0.3ms) COMMIT [shard 1671 master]
215684
+  (0.1ms) BEGIN [shard 1671 master]
215685
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215686
+  (0.2ms) COMMIT [shard 1671 master]
215687
+  (0.1ms) BEGIN [shard 1671 master]
215688
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215689
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215690
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215691
+  (0.1ms) BEGIN [shard 1673 master]
215692
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215693
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "22"]] [shard 1671 master]
215694
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215695
+  (0.2ms) ROLLBACK [shard 1673 master]
215696
+  (0.1ms) ROLLBACK [shard 1671 master]
215697
+  (0.1ms) BEGIN [shard 1671 master]
215698
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215699
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215700
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215701
+  (0.1ms) BEGIN [shard 1673 master]
215702
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215703
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:04.863798"], ["updated_at", "2015-01-19 20:20:04.863798"]] [shard 1671 master]
215704
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215705
+  (0.1ms) ROLLBACK [shard 1673 master]
215706
+  (0.1ms) ROLLBACK [shard 1671 master]
215707
+  (0.1ms) BEGIN [shard 1671 master]
215708
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215709
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215710
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215711
+  (0.1ms) BEGIN [shard 1673 master]
215712
+  (0.1ms) ROLLBACK [shard 1673 master]
215713
+  (0.1ms) ROLLBACK [shard 1671 master]
215714
+  (0.1ms) BEGIN [shard 1671 master]
215715
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215716
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215717
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215718
+  (0.1ms) BEGIN [shard 1673 master]
215719
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215720
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "23"]] [shard 1671 master]
215721
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215722
+  (0.1ms) ROLLBACK [shard 1673 master]
215723
+  (0.1ms) ROLLBACK [shard 1671 master]
215724
+  (0.1ms) BEGIN [shard 1671 master]
215725
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215726
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215727
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215728
+  (0.1ms) BEGIN [shard 1673 master]
215729
+  (0.1ms) ROLLBACK [shard 1673 master]
215730
+  (0.1ms) ROLLBACK [shard 1671 master]
215731
+  (0.1ms) BEGIN [shard 1671 master]
215732
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215733
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215734
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215735
+  (0.1ms) BEGIN [shard 1673 master]
215736
+  (0.1ms) ROLLBACK [shard 1673 master]
215737
+  (0.1ms) ROLLBACK [shard 1671 master]
215738
+  (0.1ms) BEGIN [shard 1671 master]
215739
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215740
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215741
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215742
+  (0.1ms) BEGIN [shard 1673 master]
215743
+  (0.1ms) ROLLBACK [shard 1673 master]
215744
+  (0.1ms) ROLLBACK [shard 1671 master]
215745
+ SQL (0.7ms) DELETE FROM "switchman_shards" [shard 1671 master]
215746
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215747
+  (0.1ms) BEGIN [shard 1671 master]
215748
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215749
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215750
+  (0.4ms) COMMIT [shard 1671 master]
215751
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215752
+  (0.1ms) BEGIN [shard 1671 master]
215753
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215754
+  (0.3ms) COMMIT [shard 1671 master]
215755
+  (0.1ms) BEGIN [shard 1671 master]
215756
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215757
+  (0.3ms) COMMIT [shard 1671 master]
215758
+  (0.1ms) BEGIN [shard 1671 master]
215759
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215760
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215761
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215762
+  (0.1ms) BEGIN [shard 1673 master]
215763
+  (0.1ms) ROLLBACK [shard 1673 master]
215764
+  (0.1ms) ROLLBACK [shard 1671 master]
215765
+  (0.1ms) BEGIN [shard 1671 master]
215766
+ Switchman::Shard Load (0.4ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215767
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215768
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215769
+  (0.1ms) BEGIN [shard 1673 master]
215770
+  (0.1ms) ROLLBACK [shard 1673 master]
215771
+  (0.1ms) ROLLBACK [shard 1671 master]
215772
+  (0.1ms) BEGIN [shard 1671 master]
215773
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215774
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215775
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215776
+  (0.1ms) BEGIN [shard 1673 master]
215777
+  (0.1ms) ROLLBACK [shard 1673 master]
215778
+  (0.1ms) ROLLBACK [shard 1671 master]
215779
+  (0.1ms) BEGIN [shard 1671 master]
215780
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215781
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215782
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215783
+  (0.1ms) BEGIN [shard 1673 master]
215784
+  (0.1ms) ROLLBACK [shard 1673 master]
215785
+  (0.1ms) ROLLBACK [shard 1671 master]
215786
+  (0.1ms) BEGIN [shard 1671 master]
215787
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215788
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215789
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215790
+  (0.1ms) BEGIN [shard 1673 master]
215791
+  (0.1ms) ROLLBACK [shard 1673 master]
215792
+  (0.1ms) ROLLBACK [shard 1671 master]
215793
+  (0.1ms) BEGIN [shard 1671 master]
215794
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215795
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215796
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215797
+  (0.1ms) BEGIN [shard 1673 master]
215798
+  (0.1ms) ROLLBACK [shard 1673 master]
215799
+  (0.1ms) ROLLBACK [shard 1671 master]
215800
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1671 master]
215801
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215802
+  (0.1ms) BEGIN [shard 1671 master]
215803
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215804
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215805
+  (0.3ms) COMMIT [shard 1671 master]
215806
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215807
+  (0.1ms) BEGIN [shard 1671 master]
215808
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215809
+  (0.3ms) COMMIT [shard 1671 master]
215810
+  (0.1ms) BEGIN [shard 1671 master]
215811
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215812
+  (0.3ms) COMMIT [shard 1671 master]
215813
+  (0.1ms) BEGIN [shard 1671 master]
215814
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215815
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215816
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215817
+  (0.1ms) BEGIN [shard 1673 master]
215818
+  (0.0ms) SAVEPOINT active_record_1 [shard 1672 master]
215819
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:21:05.017373"], ["updated_at", "2015-01-19 20:21:05.017373"]] [shard 1672 master]
215820
+  (0.0ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215821
+  (0.0ms) ROLLBACK [shard 1673 master]
215822
+  (0.1ms) ROLLBACK [shard 1672 master]
215823
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
215824
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215825
+  (0.1ms) BEGIN [shard 1671 master]
215826
+ Switchman::Shard Exists (0.1ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215827
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215828
+  (0.3ms) COMMIT [shard 1671 master]
215829
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215830
+  (0.1ms) BEGIN [shard 1671 master]
215831
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215832
+  (0.3ms) COMMIT [shard 1671 master]
215833
+  (0.1ms) BEGIN [shard 1671 master]
215834
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215835
+  (0.4ms) COMMIT [shard 1671 master]
215836
+  (0.1ms) BEGIN [shard 1671 master]
215837
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215838
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215839
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215840
+  (0.1ms) BEGIN [shard 1673 master]
215841
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215842
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.031647"], ["updated_at", "2015-01-19 20:20:05.031647"]] [shard 1671 master]
215843
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215844
+  (0.1ms) ROLLBACK [shard 1673 master]
215845
+  (0.1ms) ROLLBACK [shard 1671 master]
215846
+  (0.1ms) BEGIN [shard 1671 master]
215847
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215848
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215849
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215850
+  (0.1ms) BEGIN [shard 1673 master]
215851
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215852
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.037022"], ["updated_at", "2015-01-19 20:20:05.037022"]] [shard 1671 master]
215853
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215854
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215855
+ SQL (0.3ms) INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.042781"], ["owner_id", 2803], ["owner_type", "User"], ["updated_at", "2015-01-19 20:20:05.042781"]] [shard 1671 master]
215856
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215857
+ Feature Load (0.4ms) SELECT "features"."owner_id" FROM "features" WHERE "features"."id" = 132 ORDER BY "features"."id" ASC LIMIT 1 [shard 1671 master]
215858
+  (0.1ms) ROLLBACK [shard 1673 master]
215859
+  (0.1ms) ROLLBACK [shard 1671 master]
215860
+  (0.1ms) BEGIN [shard 1671 master]
215861
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215862
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215863
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215864
+  (0.1ms) BEGIN [shard 1673 master]
215865
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215866
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.053661"], ["updated_at", "2015-01-19 20:20:05.053661"]] [shard 1671 master]
215867
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215868
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
215869
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1673 LIMIT 1 [shard 1671 master]
215870
+  (0.1ms) ROLLBACK [shard 1673 master]
215871
+  (0.1ms) ROLLBACK [shard 1671 master]
215872
+ SQL (6.5ms) DELETE FROM "switchman_shards" [shard 1671 master]
215873
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215874
+  (0.1ms) BEGIN [shard 1671 master]
215875
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215876
+ SQL (0.2ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "24"]] [shard 1671 master]
215877
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215878
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
215879
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id") VALUES ($1) RETURNING "id" [["database_server_id", "24"]] [shard 1671 master]
215880
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
215881
+  (0.1ms) ROLLBACK [shard 1671 master]
215882
+  (0.1ms) BEGIN [shard 1671 master]
215883
+  (0.1ms) ROLLBACK [shard 1671 master]
215884
+  (0.1ms) BEGIN [shard 1671 master]
215885
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215886
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215887
+  (6.2ms) COMMIT [shard 1671 master]
215888
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215889
+  (0.1ms) BEGIN [shard 1671 master]
215890
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215891
+  (0.4ms) COMMIT [shard 1671 master]
215892
+  (0.1ms) BEGIN [shard 1671 master]
215893
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215894
+  (0.3ms) COMMIT [shard 1671 master]
215895
+  (0.1ms) BEGIN [shard 1671 master]
215896
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215897
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215898
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215899
+  (0.1ms) BEGIN [shard 1673 master]
215900
+  (0.1ms) ROLLBACK [shard 1673 master]
215901
+  (0.1ms) ROLLBACK [shard 1671 master]
215902
+  (0.1ms) BEGIN [shard 1671 master]
215903
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215904
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215905
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215906
+  (0.1ms) BEGIN [shard 1673 master]
215907
+  (0.1ms) ROLLBACK [shard 1673 master]
215908
+  (0.1ms) ROLLBACK [shard 1671 master]
215909
+  (0.1ms) BEGIN [shard 1671 master]
215910
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215911
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215912
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215913
+  (0.1ms) BEGIN [shard 1673 master]
215914
+  (0.1ms) ROLLBACK [shard 1673 master]
215915
+  (0.1ms) ROLLBACK [shard 1671 master]
215916
+  (0.1ms) BEGIN [shard 1671 master]
215917
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215918
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215919
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215920
+  (0.1ms) BEGIN [shard 1673 master]
215921
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (1672,1673)) AND "switchman_shards"."id" IN (1671, 1672) [shard 1671 master]
215922
+  (0.1ms) ROLLBACK [shard 1673 master]
215923
+  (0.1ms) ROLLBACK [shard 1671 master]
215924
+  (0.1ms) BEGIN [shard 1671 master]
215925
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215926
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215927
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215928
+  (0.1ms) BEGIN [shard 1673 master]
215929
+  (0.1ms) ROLLBACK [shard 1673 master]
215930
+  (0.1ms) ROLLBACK [shard 1671 master]
215931
+ SQL (0.3ms) DELETE FROM "switchman_shards" [shard 1671 master]
215932
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215933
+  (0.1ms) BEGIN [shard 1671 master]
215934
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
215935
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
215936
+  (0.3ms) COMMIT [shard 1671 master]
215937
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215938
+  (0.1ms) BEGIN [shard 1671 master]
215939
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
215940
+  (0.3ms) COMMIT [shard 1671 master]
215941
+  (0.1ms) BEGIN [shard 1671 master]
215942
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
215943
+  (0.3ms) COMMIT [shard 1671 master]
215944
+  (0.1ms) BEGIN [shard 1671 master]
215945
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215946
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215947
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215948
+  (0.1ms) BEGIN [shard 1673 master]
215949
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215950
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.117442"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.117442"]] [shard 1672 master]
215951
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215952
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215953
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.120163"], ["updated_at", "2015-01-19 20:20:05.120163"], ["user_id", 61]] [shard 1672 master]
215954
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215955
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215956
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.122089"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.122089"]] [shard 1673 master]
215957
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
215958
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215959
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.124908"], ["updated_at", "2015-01-19 20:20:05.124908"], ["user_id", 49]] [shard 1673 master]
215960
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
215961
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
215962
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1673 LIMIT 1 [shard 1671 master]
215963
+  (0.2ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (61) [shard 1672 master]
215964
+  (0.4ms) SELECT "users"."name" FROM "users" WHERE "users"."id" IN (49) [shard 1673 master]
215965
+  (0.1ms) ROLLBACK [shard 1673 master]
215966
+  (0.1ms) ROLLBACK [shard 1672 master]
215967
+  (0.1ms) BEGIN [shard 1671 master]
215968
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215969
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215970
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215971
+  (0.1ms) BEGIN [shard 1673 master]
215972
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215973
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.137457"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.137457"]] [shard 1672 master]
215974
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215975
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215976
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.140058"], ["updated_at", "2015-01-19 20:20:05.140058"], ["user_id", 62]] [shard 1672 master]
215977
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
215978
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215979
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.141758"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.141758"]] [shard 1673 master]
215980
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
215981
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
215982
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.144155"], ["updated_at", "2015-01-19 20:20:05.144155"], ["user_id", 50]] [shard 1673 master]
215983
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
215984
+  (0.3ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 42 [shard 1672 master]
215985
+  (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 33 [shard 1673 master]
215986
+  (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 42 [shard 1672 master]
215987
+  (0.2ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 33 [shard 1673 master]
215988
+  (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 42 [shard 1672 master]
215989
+  (0.1ms) SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 33 [shard 1673 master]
215990
+  (0.1ms) ROLLBACK [shard 1673 master]
215991
+  (0.1ms) ROLLBACK [shard 1672 master]
215992
+  (0.1ms) BEGIN [shard 1671 master]
215993
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
215994
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
215995
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
215996
+  (0.1ms) BEGIN [shard 1673 master]
215997
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
215998
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.155746"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.155746"]] [shard 1672 master]
215999
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216000
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216001
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.158204"], ["updated_at", "2015-01-19 20:20:05.158204"], ["user_id", 63]] [shard 1672 master]
216002
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216003
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216004
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.159855"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.159855"]] [shard 1673 master]
216005
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216006
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216007
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.162695"], ["updated_at", "2015-01-19 20:20:05.162695"], ["user_id", 51]] [shard 1673 master]
216008
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216009
+  (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 43 [shard 1672 master]
216010
+  (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1673 master]
216011
+  (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 43 [shard 1672 master]
216012
+  (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1673 master]
216013
+  (0.2ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 43 [shard 1672 master]
216014
+  (0.1ms) SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34 [shard 1673 master]
216015
+  (0.1ms) ROLLBACK [shard 1673 master]
216016
+  (0.1ms) ROLLBACK [shard 1672 master]
216017
+  (0.1ms) BEGIN [shard 1671 master]
216018
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216019
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216020
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216021
+  (0.1ms) BEGIN [shard 1673 master]
216022
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216023
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.173549"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.173549"]] [shard 1672 master]
216024
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216025
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216026
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.176103"], ["updated_at", "2015-01-19 20:20:05.176103"], ["user_id", 64]] [shard 1672 master]
216027
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216028
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216029
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.177855"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.177855"]] [shard 1673 master]
216030
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216031
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216032
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.180210"], ["updated_at", "2015-01-19 20:20:05.180210"], ["user_id", 52]] [shard 1673 master]
216033
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216034
+  (0.1ms) SAVEPOINT active_record_1 [shard 1671 master]
216035
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.181920"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.181920"]] [shard 1671 master]
216036
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1671 master]
216037
+  (0.5ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (2804) [shard 1671 master]
216038
+  (0.2ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (64) [shard 1672 master]
216039
+  (0.5ms) SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (52) [shard 1673 master]
216040
+  (0.1ms) ROLLBACK [shard 1673 master]
216041
+  (0.1ms) ROLLBACK [shard 1672 master]
216042
+  (0.1ms) BEGIN [shard 1671 master]
216043
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216044
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216045
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216046
+  (0.1ms) BEGIN [shard 1673 master]
216047
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216048
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.191779"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.191779"]] [shard 1672 master]
216049
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216050
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216051
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.193471"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.193471"]] [shard 1673 master]
216052
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216053
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216054
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.195196"], ["updated_at", "2015-01-19 20:20:05.195196"], ["user_id", 65], ["value", 1]] [shard 1672 master]
216055
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216056
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216057
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.197433"], ["updated_at", "2015-01-19 20:20:05.197433"], ["user_id", 16730000000000053], ["value", 3]] [shard 1672 master]
216058
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216059
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216060
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.199394"], ["updated_at", "2015-01-19 20:20:05.199394"], ["user_id", 16720000000000065], ["value", 2]] [shard 1673 master]
216061
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216062
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216063
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.201155"], ["updated_at", "2015-01-19 20:20:05.201155"], ["user_id", 53], ["value", 4]] [shard 1673 master]
216064
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216065
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216066
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.202662"], ["updated_at", "2015-01-19 20:20:05.202662"], ["user_id", 53], ["value", 5]] [shard 1673 master]
216067
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216068
+  (0.3ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216069
+  (0.4ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216070
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216071
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216072
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216073
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216074
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1672 master]
216075
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (65) [shard 1672 master]
216076
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (53) [shard 1673 master]
216077
+  (0.2ms) SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1673 master]
216078
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (53) [shard 1673 master]
216079
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (65) [shard 1672 master]
216080
+  (0.1ms) ROLLBACK [shard 1673 master]
216081
+  (0.1ms) ROLLBACK [shard 1672 master]
216082
+  (0.1ms) BEGIN [shard 1671 master]
216083
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216084
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216085
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216086
+  (0.1ms) BEGIN [shard 1673 master]
216087
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216088
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.221334"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.221334"]] [shard 1672 master]
216089
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216090
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216091
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.222974"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.222974"]] [shard 1673 master]
216092
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216093
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216094
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.225121"], ["updated_at", "2015-01-19 20:20:05.225121"], ["user_id", 66], ["value", 1]] [shard 1672 master]
216095
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216096
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216097
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.227458"], ["updated_at", "2015-01-19 20:20:05.227458"], ["user_id", 16730000000000054], ["value", 3]] [shard 1672 master]
216098
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216099
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216100
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.230084"], ["updated_at", "2015-01-19 20:20:05.230084"], ["user_id", 16720000000000066], ["value", 2]] [shard 1673 master]
216101
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216102
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216103
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.231760"], ["updated_at", "2015-01-19 20:20:05.231760"], ["user_id", 54], ["value", 4]] [shard 1673 master]
216104
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216105
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216106
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.233642"], ["updated_at", "2015-01-19 20:20:05.233642"], ["user_id", 54], ["value", 5]] [shard 1673 master]
216107
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216108
+  (0.4ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216109
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216110
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216111
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216112
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216113
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216114
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1672 master]
216115
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (66) [shard 1672 master]
216116
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (54) [shard 1673 master]
216117
+  (0.3ms) SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1673 master]
216118
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (54) [shard 1673 master]
216119
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (66) [shard 1672 master]
216120
+  (0.1ms) ROLLBACK [shard 1673 master]
216121
+  (0.1ms) ROLLBACK [shard 1672 master]
216122
+  (0.1ms) BEGIN [shard 1671 master]
216123
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216124
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216125
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216126
+  (0.1ms) BEGIN [shard 1673 master]
216127
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216128
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.258354"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.258354"]] [shard 1672 master]
216129
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216130
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216131
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.260523"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.260523"]] [shard 1673 master]
216132
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216133
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216134
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.262526"], ["updated_at", "2015-01-19 20:20:05.262526"], ["user_id", 67], ["value", 1]] [shard 1672 master]
216135
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216136
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216137
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.264976"], ["updated_at", "2015-01-19 20:20:05.264976"], ["user_id", 16730000000000055], ["value", 3]] [shard 1672 master]
216138
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216139
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216140
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.266982"], ["updated_at", "2015-01-19 20:20:05.266982"], ["user_id", 16720000000000067], ["value", 2]] [shard 1673 master]
216141
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216142
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216143
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.268663"], ["updated_at", "2015-01-19 20:20:05.268663"], ["user_id", 55], ["value", 4]] [shard 1673 master]
216144
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216145
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216146
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.270290"], ["updated_at", "2015-01-19 20:20:05.270290"], ["user_id", 55], ["value", 5]] [shard 1673 master]
216147
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216148
+  (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 1672 master]
216149
+  (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 1673 master]
216150
+  (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 1672 master]
216151
+  (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 1673 master]
216152
+  (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 1672 master]
216153
+  (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 1673 master]
216154
+  (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 1672 master]
216155
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67) [shard 1672 master]
216156
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (55) [shard 1673 master]
216157
+  (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 1673 master]
216158
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (55) [shard 1673 master]
216159
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67) [shard 1672 master]
216160
+  (0.1ms) ROLLBACK [shard 1673 master]
216161
+  (0.1ms) ROLLBACK [shard 1672 master]
216162
+  (0.1ms) BEGIN [shard 1671 master]
216163
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216164
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216165
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216166
+  (0.1ms) BEGIN [shard 1673 master]
216167
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216168
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.289672"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.289672"]] [shard 1672 master]
216169
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216170
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216171
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.291245"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.291245"]] [shard 1673 master]
216172
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216173
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216174
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.292873"], ["updated_at", "2015-01-19 20:20:05.292873"], ["user_id", 68], ["value", 1]] [shard 1672 master]
216175
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216176
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216177
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.294811"], ["updated_at", "2015-01-19 20:20:05.294811"], ["user_id", 16730000000000056], ["value", 3]] [shard 1672 master]
216178
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216179
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216180
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.296746"], ["updated_at", "2015-01-19 20:20:05.296746"], ["user_id", 16720000000000068], ["value", 2]] [shard 1673 master]
216181
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216182
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216183
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.298773"], ["updated_at", "2015-01-19 20:20:05.298773"], ["user_id", 56], ["value", 4]] [shard 1673 master]
216184
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216185
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216186
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.300447"], ["updated_at", "2015-01-19 20:20:05.300447"], ["user_id", 56], ["value", 5]] [shard 1673 master]
216187
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216188
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216189
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.302765"], ["updated_at", "2015-01-19 20:20:05.302765"], ["user_id", 68]] [shard 1672 master]
216190
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216191
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216192
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.304287"], ["updated_at", "2015-01-19 20:20:05.304287"]] [shard 1672 master]
216193
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216194
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216195
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.306920"], ["updated_at", "2015-01-19 20:20:05.306920"], ["user_id", 69]] [shard 1672 master]
216196
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216197
+  (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 1672 master]
216198
+  (0.1ms) ROLLBACK [shard 1673 master]
216199
+  (0.1ms) ROLLBACK [shard 1672 master]
216200
+  (0.1ms) BEGIN [shard 1671 master]
216201
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216202
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216203
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216204
+  (0.1ms) BEGIN [shard 1673 master]
216205
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216206
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.314589"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.314589"]] [shard 1672 master]
216207
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216208
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216209
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.316511"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.316511"]] [shard 1673 master]
216210
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216211
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216212
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.318125"], ["updated_at", "2015-01-19 20:20:05.318125"], ["user_id", 70], ["value", 1]] [shard 1672 master]
216213
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216214
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216215
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.320017"], ["updated_at", "2015-01-19 20:20:05.320017"], ["user_id", 16730000000000057], ["value", 3]] [shard 1672 master]
216216
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216217
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216218
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.321822"], ["updated_at", "2015-01-19 20:20:05.321822"], ["user_id", 16720000000000070], ["value", 2]] [shard 1673 master]
216219
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216220
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216221
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.323301"], ["updated_at", "2015-01-19 20:20:05.323301"], ["user_id", 57], ["value", 4]] [shard 1673 master]
216222
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216223
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216224
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.324711"], ["updated_at", "2015-01-19 20:20:05.324711"], ["user_id", 57], ["value", 5]] [shard 1673 master]
216225
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216226
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216227
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216228
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216229
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216230
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216231
+  (0.2ms) SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216232
+  (0.2ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1672 master]
216233
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 1672 master]
216234
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (57) [shard 1673 master]
216235
+  (0.2ms) SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1673 master]
216236
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (57) [shard 1673 master]
216237
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 1672 master]
216238
+  (0.1ms) ROLLBACK [shard 1673 master]
216239
+  (0.1ms) ROLLBACK [shard 1672 master]
216240
+  (0.1ms) BEGIN [shard 1671 master]
216241
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216242
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216243
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216244
+  (0.1ms) BEGIN [shard 1673 master]
216245
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216246
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.344569"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.344569"]] [shard 1672 master]
216247
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216248
+  (0.2ms) SAVEPOINT active_record_1 [shard 1673 master]
216249
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.347317"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.347317"]] [shard 1673 master]
216250
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216251
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216252
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.350022"], ["updated_at", "2015-01-19 20:20:05.350022"], ["user_id", 71], ["value", 1]] [shard 1672 master]
216253
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216254
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216255
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.352233"], ["updated_at", "2015-01-19 20:20:05.352233"], ["user_id", 16730000000000058], ["value", 3]] [shard 1672 master]
216256
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216257
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216258
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.354335"], ["updated_at", "2015-01-19 20:20:05.354335"], ["user_id", 16720000000000071], ["value", 2]] [shard 1673 master]
216259
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216260
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216261
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.355857"], ["updated_at", "2015-01-19 20:20:05.355857"], ["user_id", 58], ["value", 4]] [shard 1673 master]
216262
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216263
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216264
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.357393"], ["updated_at", "2015-01-19 20:20:05.357393"], ["user_id", 58], ["value", 5]] [shard 1673 master]
216265
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216266
+  (0.3ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216267
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216268
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216269
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216270
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1672 master]
216271
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1673 master]
216272
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1672 master]
216273
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (71) [shard 1672 master]
216274
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (58) [shard 1673 master]
216275
+  (0.2ms) SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1673 master]
216276
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (58) [shard 1673 master]
216277
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (71) [shard 1672 master]
216278
+  (0.1ms) ROLLBACK [shard 1673 master]
216279
+  (0.1ms) ROLLBACK [shard 1672 master]
216280
+  (0.1ms) BEGIN [shard 1671 master]
216281
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216282
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216283
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216284
+  (0.1ms) BEGIN [shard 1673 master]
216285
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216286
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.374722"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.374722"]] [shard 1672 master]
216287
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216288
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216289
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.377126"], ["updated_at", "2015-01-19 20:20:05.377126"], ["user_id", 72], ["value", 1]] [shard 1672 master]
216290
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216291
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216292
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.379139"], ["updated_at", "2015-01-19 20:20:05.379139"], ["user_id", 72], ["value", 2]] [shard 1672 master]
216293
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216294
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216295
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.380858"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.380858"]] [shard 1673 master]
216296
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216297
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216298
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.383681"], ["updated_at", "2015-01-19 20:20:05.383681"], ["user_id", 59], ["value", 3]] [shard 1673 master]
216299
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216300
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216301
+ SQL (0.3ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.385683"], ["updated_at", "2015-01-19 20:20:05.385683"], ["user_id", 59], ["value", 4]] [shard 1673 master]
216302
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216303
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216304
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.388174"], ["updated_at", "2015-01-19 20:20:05.388174"], ["user_id", 59], ["value", 5]] [shard 1673 master]
216305
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216306
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 72]] [shard 1672 master]
216307
+  (0.2ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1672 master]
216308
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 59]] [shard 1673 master]
216309
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1673 master]
216310
+  (0.3ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (59, 60) [shard 1672 master]
216311
+  (0.4ms) SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (54, 55, 56) [shard 1673 master]
216312
+  (0.2ms) ROLLBACK [shard 1673 master]
216313
+  (0.1ms) ROLLBACK [shard 1672 master]
216314
+  (0.1ms) BEGIN [shard 1671 master]
216315
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216316
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216317
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216318
+  (0.1ms) BEGIN [shard 1673 master]
216319
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216320
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.403329"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.403329"]] [shard 1672 master]
216321
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216322
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216323
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.406042"], ["updated_at", "2015-01-19 20:20:05.406042"], ["user_id", 73], ["value", 1]] [shard 1672 master]
216324
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216325
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216326
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.408083"], ["updated_at", "2015-01-19 20:20:05.408083"], ["user_id", 73], ["value", 2]] [shard 1672 master]
216327
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216328
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216329
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.409858"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.409858"]] [shard 1673 master]
216330
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216331
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216332
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.412399"], ["updated_at", "2015-01-19 20:20:05.412399"], ["user_id", 60], ["value", 3]] [shard 1673 master]
216333
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216334
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216335
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.414368"], ["updated_at", "2015-01-19 20:20:05.414368"], ["user_id", 60], ["value", 4]] [shard 1673 master]
216336
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216337
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216338
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.416300"], ["updated_at", "2015-01-19 20:20:05.416300"], ["user_id", 60], ["value", 5]] [shard 1673 master]
216339
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216340
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 73]] [shard 1672 master]
216341
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1672 master]
216342
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 60]] [shard 1673 master]
216343
+  (0.1ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1673 master]
216344
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (61, 62) [shard 1672 master]
216345
+  (0.2ms) SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (57, 58, 59) [shard 1673 master]
216346
+  (0.1ms) ROLLBACK [shard 1673 master]
216347
+  (0.1ms) ROLLBACK [shard 1672 master]
216348
+  (0.1ms) BEGIN [shard 1671 master]
216349
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216350
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216351
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216352
+  (0.1ms) BEGIN [shard 1673 master]
216353
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216354
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.427522"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.427522"]] [shard 1672 master]
216355
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216356
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216357
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.429998"], ["updated_at", "2015-01-19 20:20:05.429998"], ["user_id", 74], ["value", 1]] [shard 1672 master]
216358
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216359
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216360
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.431976"], ["updated_at", "2015-01-19 20:20:05.431976"], ["user_id", 74], ["value", 2]] [shard 1672 master]
216361
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216362
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216363
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.433509"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.433509"]] [shard 1673 master]
216364
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216365
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216366
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.435764"], ["updated_at", "2015-01-19 20:20:05.435764"], ["user_id", 61], ["value", 3]] [shard 1673 master]
216367
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216368
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216369
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.437635"], ["updated_at", "2015-01-19 20:20:05.437635"], ["user_id", 61], ["value", 4]] [shard 1673 master]
216370
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216371
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216372
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.439608"], ["updated_at", "2015-01-19 20:20:05.439608"], ["user_id", 61], ["value", 5]] [shard 1673 master]
216373
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216374
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 74]] [shard 1672 master]
216375
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1672 master]
216376
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 61]] [shard 1673 master]
216377
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1673 master]
216378
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (63, 64) [shard 1672 master]
216379
+  (0.2ms) SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (60, 61, 62) [shard 1673 master]
216380
+  (0.2ms) ROLLBACK [shard 1673 master]
216381
+  (0.2ms) ROLLBACK [shard 1672 master]
216382
+  (0.1ms) BEGIN [shard 1671 master]
216383
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216384
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216385
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216386
+  (0.1ms) BEGIN [shard 1673 master]
216387
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216388
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.451554"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.451554"]] [shard 1672 master]
216389
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216390
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216391
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.454029"], ["updated_at", "2015-01-19 20:20:05.454029"], ["user_id", 75], ["value", 1]] [shard 1672 master]
216392
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216393
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216394
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.455841"], ["updated_at", "2015-01-19 20:20:05.455841"], ["user_id", 75], ["value", 2]] [shard 1672 master]
216395
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216396
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216397
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.457395"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.457395"]] [shard 1673 master]
216398
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216399
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216400
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.459864"], ["updated_at", "2015-01-19 20:20:05.459864"], ["user_id", 62], ["value", 3]] [shard 1673 master]
216401
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216402
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216403
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.461712"], ["updated_at", "2015-01-19 20:20:05.461712"], ["user_id", 62], ["value", 4]] [shard 1673 master]
216404
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216405
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216406
+ SQL (0.2ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.463564"], ["updated_at", "2015-01-19 20:20:05.463564"], ["user_id", 62], ["value", 5]] [shard 1673 master]
216407
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216408
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 75]] [shard 1672 master]
216409
+  (0.1ms) SELECT COUNT(*) FROM "appendages" [shard 1672 master]
216410
+  (0.1ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 62]] [shard 1673 master]
216411
+  (0.1ms) SELECT COUNT(*) FROM "appendages" [shard 1673 master]
216412
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (65, 66) [shard 1672 master]
216413
+  (0.2ms) SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (63, 64, 65) [shard 1673 master]
216414
+  (0.1ms) ROLLBACK [shard 1673 master]
216415
+  (0.1ms) ROLLBACK [shard 1672 master]
216416
+  (0.1ms) BEGIN [shard 1671 master]
216417
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216418
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216419
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216420
+  (0.1ms) BEGIN [shard 1673 master]
216421
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216422
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.475764"], ["name", "user1"], ["updated_at", "2015-01-19 20:20:05.475764"]] [shard 1672 master]
216423
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216424
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216425
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.478375"], ["updated_at", "2015-01-19 20:20:05.478375"], ["user_id", 76], ["value", 1]] [shard 1672 master]
216426
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216427
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216428
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.480305"], ["updated_at", "2015-01-19 20:20:05.480305"], ["user_id", 76], ["value", 2]] [shard 1672 master]
216429
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216430
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216431
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.481982"], ["name", "user2"], ["updated_at", "2015-01-19 20:20:05.481982"]] [shard 1673 master]
216432
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216433
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216434
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.484369"], ["updated_at", "2015-01-19 20:20:05.484369"], ["user_id", 63], ["value", 3]] [shard 1673 master]
216435
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216436
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216437
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.486219"], ["updated_at", "2015-01-19 20:20:05.486219"], ["user_id", 63], ["value", 4]] [shard 1673 master]
216438
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216439
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216440
+ SQL (0.1ms) INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-01-19 20:20:05.488071"], ["updated_at", "2015-01-19 20:20:05.488071"], ["user_id", 63], ["value", 5]] [shard 1673 master]
216441
+  (0.2ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216442
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 76]] [shard 1672 master]
216443
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1672 master]
216444
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = $1 [["user_id", 63]] [shard 1673 master]
216445
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1673 master]
216446
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (67, 68) [shard 1672 master]
216447
+  (0.2ms) SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (66, 67, 68) [shard 1673 master]
216448
+  (0.1ms) ROLLBACK [shard 1673 master]
216449
+  (0.1ms) ROLLBACK [shard 1672 master]
216450
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
216451
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216452
+  (0.1ms) BEGIN [shard 1671 master]
216453
+ Switchman::Shard Exists (0.2ms) SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1671 master]
216454
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("default", "id") VALUES ($1, $2) RETURNING "id" [["default", "t"], ["id", 1671]] [shard 1671 master]
216455
+  (0.3ms) COMMIT [shard 1671 master]
216456
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216457
+  (0.1ms) BEGIN [shard 1671 master]
216458
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["id", 1672], ["name", "switchman_test_shard_1672"]] [shard 1671 master]
216459
+  (0.3ms) COMMIT [shard 1671 master]
216460
+  (0.1ms) BEGIN [shard 1671 master]
216461
+ SQL (0.1ms) INSERT INTO "switchman_shards" ("database_server_id", "id", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["id", 1673], ["name", "switchman_test_shard_1673"]] [shard 1671 master]
216462
+  (0.3ms) COMMIT [shard 1671 master]
216463
+  (0.1ms) BEGIN [shard 1671 master]
216464
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216465
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216466
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216467
+  (0.1ms) BEGIN [shard 1673 master]
216468
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216469
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.507547"], ["updated_at", "2015-01-19 20:20:05.507547"]] [shard 1672 master]
216470
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216471
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1672 LIMIT 1 [shard 1671 master]
216472
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 77]] [shard 1672 master]
216473
+  (0.1ms) ROLLBACK [shard 1673 master]
216474
+  (0.1ms) ROLLBACK [shard 1672 master]
216475
+  (0.1ms) BEGIN [shard 1671 master]
216476
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216477
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216478
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216479
+  (0.1ms) BEGIN [shard 1673 master]
216480
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216481
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.516969"], ["updated_at", "2015-01-19 20:20:05.516969"]] [shard 1672 master]
216482
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216483
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216484
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 78]] [shard 1672 master]
216485
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216486
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 16720000000000078 ORDER BY "users"."id" ASC LIMIT 1 [shard 1672 master]
216487
+  (0.1ms) ROLLBACK [shard 1673 master]
216488
+  (0.1ms) ROLLBACK [shard 1672 master]
216489
+  (0.1ms) BEGIN [shard 1671 master]
216490
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216491
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216492
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216493
+  (0.1ms) BEGIN [shard 1673 master]
216494
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216495
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.525063"], ["updated_at", "2015-01-19 20:20:05.525063"]] [shard 1672 master]
216496
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216497
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 79 LIMIT 1 [shard 1672 master]
216498
+  (0.1ms) ROLLBACK [shard 1673 master]
216499
+  (0.1ms) ROLLBACK [shard 1672 master]
216500
+  (0.1ms) BEGIN [shard 1671 master]
216501
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216502
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216503
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216504
+  (0.1ms) BEGIN [shard 1673 master]
216505
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216506
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.532179"], ["updated_at", "2015-01-19 20:20:05.532179"]] [shard 1672 master]
216507
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216508
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (80) LIMIT 1 [shard 1672 master]
216509
+  (0.1ms) ROLLBACK [shard 1673 master]
216510
+  (0.1ms) ROLLBACK [shard 1672 master]
216511
+  (0.1ms) BEGIN [shard 1671 master]
216512
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216513
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216514
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216515
+  (0.1ms) BEGIN [shard 1673 master]
216516
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216517
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.538967"], ["updated_at", "2015-01-19 20:20:05.538967"]] [shard 1672 master]
216518
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216519
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."id" = 81 LIMIT 1 [shard 1672 master]
216520
+  (0.1ms) ROLLBACK [shard 1673 master]
216521
+  (0.1ms) ROLLBACK [shard 1672 master]
216522
+  (0.1ms) BEGIN [shard 1671 master]
216523
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216524
+ Switchman::Shard Load (0.3ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1672]] [shard 1671 master]
216525
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1673]] [shard 1671 master]
216526
+  (0.1ms) BEGIN [shard 1673 master]
216527
+  (0.1ms) SAVEPOINT active_record_1 [shard 1672 master]
216528
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-01-19 20:20:05.546292"], ["updated_at", "2015-01-19 20:20:05.546292"]] [shard 1672 master]
216529
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1672 master]
216530
+  (0.1ms) SAVEPOINT active_record_1 [shard 1673 master]
216531
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-01-19 20:20:05.547787"], ["name", "multi-shard exists"], ["updated_at", "2015-01-19 20:20:05.547787"]] [shard 1673 master]
216532
+  (0.1ms) RELEASE SAVEPOINT active_record_1 [shard 1673 master]
216533
+ Switchman::Shard Load (0.1ms) SELECT "switchman_shards".* FROM "switchman_shards" [shard 1671 master]
216534
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1671 master]
216535
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1672 master]
216536
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1673 master]
216537
+  (0.1ms) ROLLBACK [shard 1673 master]
216538
+  (0.1ms) ROLLBACK [shard 1672 master]
216539
+ SQL (0.4ms) DELETE FROM "switchman_shards" [shard 1671 master]
216540
+ Switchman::Shard Load (0.2ms) SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1671 master]
216541
+  (0.1ms) BEGIN [shard 1671 master]
216542
+  (0.1ms) ROLLBACK [shard 1671 master]
216543
+  (5.5ms) DROP SCHEMA switchman_test_shard_1672 CASCADE [shard 1672 deploy]
216544
+  (0.1ms) BEGIN
216545
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1672]]
216546
+  (0.1ms) COMMIT
216547
+  (5.5ms) DROP SCHEMA switchman_test_shard_1673 CASCADE [shard 1673 deploy]
216548
+  (0.2ms) BEGIN
216549
+ SQL (0.2ms) DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1673]]
216550
+  (0.1ms) COMMIT