switchman 1.2.29 → 1.2.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/switchman/active_record/base.rb +1 -1
- data/lib/switchman/active_record/connection_handler.rb +1 -1
- data/lib/switchman/active_record/connection_pool.rb +2 -2
- data/lib/switchman/active_record/postgresql_adapter.rb +1 -1
- data/lib/switchman/database_server.rb +1 -1
- data/lib/switchman/version.rb +1 -1
- data/spec/dummy/db/schema.rb +12 -12
- data/spec/dummy/db/shard_1746.sqlite3 +0 -0
- data/spec/dummy/log/development.log +49 -0
- data/spec/dummy/log/test.log +3533 -0
- data/spec/dummy/tmp/cache/386/6D0/shard%2F1759 +1 -0
- data/spec/dummy/tmp/cache/3B1/0B0/shard%2F11744 +1 -0
- data/spec/lib/active_record/base_spec.rb +7 -0
- data/spec/models/shard_spec.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9d43f90b72896c88d968454e98ab442ad18194b
|
4
|
+
data.tar.gz: e600c3c7f45533d7b738b366c8d717c9fb08d71f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cabd3142197a1660624817a21ed5ac4a5776f5cb73160c57d85dc481c7ec6dd2490b5aa2aa1a46186ae0cec9ec401a3768a5ec6ceb36cb063a2846b017bf00a8
|
7
|
+
data.tar.gz: f85ac155c530ce54a18b044771ce6e2702129fdb4a340e2433f6b516598df8f99c13b5c99bbb628f1da8d948156c78bd0f44dad6189f04867a29f7519cd7fe95
|
@@ -60,7 +60,7 @@ module Switchman
|
|
60
60
|
ConnectionHandler.make_sharing_automagic(spec.config)
|
61
61
|
ConnectionHandler.make_sharing_automagic(Shard.default.database_server.config)
|
62
62
|
|
63
|
-
::ActiveRecord::Base.configurations[::Rails.env] = spec.config.stringify_keys
|
63
|
+
::ActiveRecord::Base.configurations[::Rails.env] = spec.instance_variable_get(:@config).stringify_keys
|
64
64
|
end
|
65
65
|
@shard_connection_pools ||= { [:master, Shard.default.database_server.shareable? ? ::Rails.env : Shard.default] => pool}
|
66
66
|
|
@@ -17,7 +17,7 @@ module Switchman
|
|
17
17
|
raise "Not postgres!" unless self.spec.config[:adapter] == 'postgresql'
|
18
18
|
connection unless @schemas
|
19
19
|
# default shard will not switch databases immediately, so it won't be set yet
|
20
|
-
@schemas ||= connection.
|
20
|
+
@schemas ||= connection.current_schemas
|
21
21
|
@schemas.first
|
22
22
|
end
|
23
23
|
|
@@ -65,7 +65,7 @@ module Switchman
|
|
65
65
|
|
66
66
|
def switch_database(conn)
|
67
67
|
if !@schemas && conn.adapter_name == 'PostgreSQL' && !self.shard.database_server.config[:shard_name]
|
68
|
-
@schemas = conn.
|
68
|
+
@schemas = conn.current_schemas
|
69
69
|
end
|
70
70
|
|
71
71
|
spec.config[:shard_name] = self.shard.name
|
@@ -255,7 +255,7 @@ module Switchman
|
|
255
255
|
if shard == :bootstrap
|
256
256
|
# rescue nil because the database may not exist yet; if it doesn't,
|
257
257
|
# it will shortly, and this will be re-invoked
|
258
|
-
::ActiveRecord::Base.connection.
|
258
|
+
::ActiveRecord::Base.connection.current_schemas.first rescue nil
|
259
259
|
else
|
260
260
|
shard.activate { ::ActiveRecord::Base.connection_pool.default_schema }
|
261
261
|
end
|
data/lib/switchman/version.rb
CHANGED
data/spec/dummy/db/schema.rb
CHANGED
@@ -19,35 +19,35 @@ ActiveRecord::Schema.define(version: 20140219183820) do
|
|
19
19
|
create_table "appendages", force: true do |t|
|
20
20
|
t.integer "user_id", limit: 8
|
21
21
|
t.integer "value"
|
22
|
-
t.datetime "created_at"
|
23
|
-
t.datetime "updated_at"
|
22
|
+
t.datetime "created_at"
|
23
|
+
t.datetime "updated_at"
|
24
24
|
end
|
25
25
|
|
26
26
|
create_table "digits", force: true do |t|
|
27
27
|
t.integer "appendage_id", limit: 8
|
28
28
|
t.integer "value"
|
29
|
-
t.datetime "created_at"
|
30
|
-
t.datetime "updated_at"
|
29
|
+
t.datetime "created_at"
|
30
|
+
t.datetime "updated_at"
|
31
31
|
end
|
32
32
|
|
33
33
|
create_table "features", force: true do |t|
|
34
34
|
t.integer "owner_id", limit: 8
|
35
35
|
t.string "owner_type"
|
36
36
|
t.integer "value"
|
37
|
-
t.datetime "created_at"
|
38
|
-
t.datetime "updated_at"
|
37
|
+
t.datetime "created_at"
|
38
|
+
t.datetime "updated_at"
|
39
39
|
end
|
40
40
|
|
41
41
|
create_table "mirror_users", force: true do |t|
|
42
42
|
t.integer "user_id", limit: 8
|
43
|
-
t.datetime "created_at"
|
44
|
-
t.datetime "updated_at"
|
43
|
+
t.datetime "created_at"
|
44
|
+
t.datetime "updated_at"
|
45
45
|
end
|
46
46
|
|
47
47
|
create_table "roots", force: true do |t|
|
48
48
|
t.integer "user_id", limit: 8
|
49
|
-
t.datetime "created_at"
|
50
|
-
t.datetime "updated_at"
|
49
|
+
t.datetime "created_at"
|
50
|
+
t.datetime "updated_at"
|
51
51
|
end
|
52
52
|
|
53
53
|
create_table "switchman_shards", force: true do |t|
|
@@ -59,8 +59,8 @@ ActiveRecord::Schema.define(version: 20140219183820) do
|
|
59
59
|
create_table "users", force: true do |t|
|
60
60
|
t.string "name"
|
61
61
|
t.integer "mirror_user_id", limit: 8
|
62
|
-
t.datetime "created_at"
|
63
|
-
t.datetime "updated_at"
|
62
|
+
t.datetime "created_at"
|
63
|
+
t.datetime "updated_at"
|
64
64
|
t.integer "parent_id", limit: 8
|
65
65
|
end
|
66
66
|
|
Binary file
|
@@ -99,3 +99,52 @@ Connecting to database specified by database.yml
|
|
99
99
|
[1m[35mSwitchman::Shard Load (1.9ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL LIMIT 1
|
100
100
|
[1m[36m (0.4ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m [shard master]
|
101
101
|
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL LIMIT 1
|
102
|
+
[1m[36m (36.0ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
103
|
+
[1m[35mSwitchman::Shard Load (3.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
104
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
105
|
+
[1m[35mSwitchman::Shard Load (2.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
106
|
+
[1m[36m (2.3ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m [shard master]
|
107
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
108
|
+
[1m[36mSwitchman::Shard Load (1.0ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id[0m [shard 1 deploy]
|
109
|
+
[1m[35mActiveRecord::SchemaMigration Load (2.8ms)[0m SELECT "schema_migrations".* FROM "schema_migrations" [shard 1 deploy]
|
110
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m [shard 1 deploy]
|
111
|
+
[1m[36m (0.4ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
112
|
+
[1m[35mSwitchman::Shard Load (0.8ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
113
|
+
[1m[36m (0.4ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
114
|
+
[1m[35mSwitchman::Shard Load (0.7ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'test' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
115
|
+
[1m[36m (0.4ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m [shard master]
|
116
|
+
[1m[35mSwitchman::Shard Load (0.5ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = 'production' AND "switchman_shards"."name" IS NULL ORDER BY "switchman_shards"."id" ASC LIMIT 1
|
117
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "switchman_shards"[0m [shard 1 master]
|
118
|
+
[1m[35mSwitchman::Shard Load (2.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='development') AND (name<>':memory:' OR name IS NULL) ORDER BY "switchman_shards"."id" ASC LIMIT 1 [shard 1 master]
|
119
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m [shard 1 master]
|
120
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "name") VALUES ($1, $2) RETURNING "id" [["database_server_id", "development"], ["name", "public"]] [shard 1 master]
|
121
|
+
[1m[36m (2.8ms)[0m [1mCREATE SCHEMA switchman_development_shard_2[0m [shard 2 deploy]
|
122
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 2 deploy]
|
123
|
+
[1m[36m (9.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 2 deploy]
|
124
|
+
[1m[35m (2.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 2 deploy]
|
125
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m [shard 2 deploy]
|
126
|
+
Migrating to CreateUsers (20130403132607)
|
127
|
+
[1m[35m (26.7ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
128
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130403132607"]] [shard 2 deploy]
|
129
|
+
Migrating to CreateAppendages (20130411202442)
|
130
|
+
[1m[35m (19.7ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130411202442"]] [shard 2 deploy]
|
132
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
133
|
+
[1m[35m (16.1ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
134
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20130411202551"]] [shard 2 deploy]
|
135
|
+
Migrating to CreateDigits (20131022202028)
|
136
|
+
[1m[35m (8.3ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
137
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20131022202028"]] [shard 2 deploy]
|
138
|
+
Migrating to CreateFeatures (20131206172923)
|
139
|
+
[1m[35m (7.9ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
140
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20131206172923"]] [shard 2 deploy]
|
141
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
142
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 2 deploy]
|
143
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140123154135"]] [shard 2 deploy]
|
144
|
+
Migrating to CreateRoots (20140219183820)
|
145
|
+
[1m[35m (7.3ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp, "updated_at" timestamp) [shard 2 deploy]
|
146
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140219183820"]] [shard 2 deploy]
|
147
|
+
[1m[35m (6.5ms)[0m COMMIT [shard 2 deploy]
|
148
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "switchman_shards" SET "name" = $1 WHERE "switchman_shards"."id" = 2[0m [["name", "switchman_development_shard_2"]] [shard 1 master]
|
149
|
+
[1m[35m (0.4ms)[0m COMMIT [shard 1 master]
|
150
|
+
[1m[36m (0.4ms)[0m [1mselect current_user[0m [shard 1 master]
|
data/spec/dummy/log/test.log
CHANGED
@@ -223638,3 +223638,3536 @@ Connecting to database specified by database.yml
|
|
223638
223638
|
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "1"], ["default", false], ["name", nil]]
|
223639
223639
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
223640
223640
|
[1m[35m (0.1ms)[0m ROLLBACK
|
223641
|
+
Connecting to database specified by database.yml
|
223642
|
+
[1m[36m (0.5ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
223643
|
+
[1m[35mSwitchman::Shard Load (18.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
223644
|
+
Connecting to database specified by database.yml
|
223645
|
+
[1m[36m (0.5ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
223646
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
223647
|
+
Connecting to database specified by database.yml
|
223648
|
+
[1m[36m (0.5ms)[0m [1mSELECT * FROM unnest(current_schemas(false))[0m
|
223649
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
223650
|
+
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "switchman_shards"[0m
|
223651
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
223652
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
223653
|
+
[1m[35mSwitchman::Shard Exists (0.4ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1
|
223654
|
+
[1m[36mSQL (24.0ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["name", nil]]
|
223655
|
+
[1m[35m (0.5ms)[0m COMMIT
|
223656
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m
|
223657
|
+
[1m[35mSwitchman::Shard Load (1.9ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='test') AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1
|
223658
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
223659
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["default", false], ["name", "public"]]
|
223660
|
+
[1m[36m (1.3ms)[0m [1mCREATE SCHEMA switchman_test_shard_1743[0m [shard 1743 deploy]
|
223661
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 deploy]
|
223662
|
+
[1m[36m (27.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 1743 deploy]
|
223663
|
+
[1m[35m (2.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1743 deploy]
|
223664
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m [shard 1743 deploy]
|
223665
|
+
Migrating to CreateUsers (20130403132607)
|
223666
|
+
[1m[35m (28.7ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223667
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130403132607')[0m [shard 1743 deploy]
|
223668
|
+
Migrating to CreateAppendages (20130411202442)
|
223669
|
+
[1m[35m (11.8ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223670
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202442')[0m [shard 1743 deploy]
|
223671
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
223672
|
+
[1m[35m (14.0ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223673
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202551')[0m [shard 1743 deploy]
|
223674
|
+
Migrating to CreateDigits (20131022202028)
|
223675
|
+
[1m[35m (7.8ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223676
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131022202028')[0m [shard 1743 deploy]
|
223677
|
+
Migrating to CreateFeatures (20131206172923)
|
223678
|
+
[1m[35m (14.2ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223679
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131206172923')[0m [shard 1743 deploy]
|
223680
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
223681
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1743 deploy]
|
223682
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140123154135')[0m [shard 1743 deploy]
|
223683
|
+
Migrating to CreateRoots (20140219183820)
|
223684
|
+
[1m[35m (26.0ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1743 deploy]
|
223685
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140219183820')[0m [shard 1743 deploy]
|
223686
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 deploy]
|
223687
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1743' WHERE "switchman_shards"."id" = 1743[0m [shard 1742 master]
|
223688
|
+
[1m[35m (1.2ms)[0m COMMIT [shard 1742 master]
|
223689
|
+
[1m[36mSwitchman::Shard Load (0.8ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '1' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1[0m [shard 1742 master]
|
223690
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
223691
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["name", "public"]] [shard 1742 master]
|
223692
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
223693
|
+
[1m[36m (0.6ms)[0m [1mCREATE SCHEMA switchman_test_shard_1744[0m [shard 1744 deploy]
|
223694
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 deploy]
|
223695
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 1744 deploy]
|
223696
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1744 deploy]
|
223697
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m [shard 1744 deploy]
|
223698
|
+
Migrating to CreateUsers (20130403132607)
|
223699
|
+
[1m[35m (2.2ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223700
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130403132607')[0m [shard 1744 deploy]
|
223701
|
+
Migrating to CreateAppendages (20130411202442)
|
223702
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223703
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202442')[0m [shard 1744 deploy]
|
223704
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
223705
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223706
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202551')[0m [shard 1744 deploy]
|
223707
|
+
Migrating to CreateDigits (20131022202028)
|
223708
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223709
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131022202028')[0m [shard 1744 deploy]
|
223710
|
+
Migrating to CreateFeatures (20131206172923)
|
223711
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223712
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131206172923')[0m [shard 1744 deploy]
|
223713
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
223714
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1744 deploy]
|
223715
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140123154135')[0m [shard 1744 deploy]
|
223716
|
+
Migrating to CreateRoots (20140219183820)
|
223717
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1744 deploy]
|
223718
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140219183820')[0m [shard 1744 deploy]
|
223719
|
+
[1m[35m (1.1ms)[0m COMMIT [shard 1744 deploy]
|
223720
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223721
|
+
[1m[35m (0.3ms)[0m UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1744' WHERE "switchman_shards"."id" = 1744 [shard 1742 master]
|
223722
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
223723
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
223724
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
223725
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
223726
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
223727
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
223728
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
223729
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223730
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223731
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
223732
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
223733
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
223734
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
223735
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
223736
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223737
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223738
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223739
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223740
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223741
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223742
|
+
[1m[36mSQL (8.0ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223743
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223744
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223745
|
+
[1m[35mSQL (6.5ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 1]] [shard 1743 master]
|
223746
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223747
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223748
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 2]] [shard 1743 master]
|
223749
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223751
|
+
[1m[35mSQL (12.0ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223752
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223753
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223754
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 3]] [shard 1744 master]
|
223755
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223756
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223757
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 4]] [shard 1744 master]
|
223758
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223760
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 1], ["value", 5]] [shard 1744 master]
|
223761
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223762
|
+
[1m[36m (1.0ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 1[0m [shard 1743 master]
|
223763
|
+
[1m[35m (0.4ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1743 master]
|
223764
|
+
[1m[36m (0.4ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."user_id" = 1[0m [shard 1744 master]
|
223765
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" [shard 1744 master]
|
223766
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1[0m [shard 1742 master]
|
223767
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
|
223768
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (1, 2)[0m [shard 1743 master]
|
223769
|
+
[1m[35m (0.3ms)[0m SELECT MIN("appendages"."value") AS min_id FROM "appendages" WHERE "appendages"."id" IN (1, 2, 3) [shard 1744 master]
|
223770
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223771
|
+
[1m[35m (0.2ms)[0m ROLLBACK [shard 1743 master]
|
223772
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223773
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223774
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223775
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223776
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223777
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223778
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223779
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223780
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223781
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 1]] [shard 1743 master]
|
223782
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223783
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223784
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 2]] [shard 1743 master]
|
223785
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223786
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223787
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223788
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223789
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223790
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 3]] [shard 1744 master]
|
223791
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223792
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223793
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 4]] [shard 1744 master]
|
223794
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223795
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223796
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2], ["value", 5]] [shard 1744 master]
|
223797
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223798
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 2[0m [shard 1743 master]
|
223799
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "appendages" [shard 1743 master]
|
223800
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 2[0m [shard 1744 master]
|
223801
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "appendages" [shard 1744 master]
|
223802
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (3, 4)[0m [shard 1743 master]
|
223803
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "appendages" WHERE "appendages"."id" IN (4, 5, 6) [shard 1744 master]
|
223804
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223805
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223806
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223807
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223808
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223809
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223810
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223812
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223813
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223814
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223815
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 1]] [shard 1743 master]
|
223816
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223818
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 2]] [shard 1743 master]
|
223819
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223820
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223821
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223824
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 3]] [shard 1744 master]
|
223825
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223826
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223827
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 4]] [shard 1744 master]
|
223828
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223829
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223830
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 3], ["value", 5]] [shard 1744 master]
|
223831
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223832
|
+
[1m[36m (0.5ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 3[0m [shard 1743 master]
|
223833
|
+
[1m[35m (0.3ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1743 master]
|
223834
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."user_id" = 3[0m [shard 1744 master]
|
223835
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" [shard 1744 master]
|
223836
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (5, 6)[0m [shard 1743 master]
|
223837
|
+
[1m[35m (0.3ms)[0m SELECT MAX("appendages"."value") AS max_id FROM "appendages" WHERE "appendages"."id" IN (7, 8, 9) [shard 1744 master]
|
223838
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223839
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223840
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223841
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223842
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223843
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223844
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223845
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223846
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223847
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223848
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223849
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 1]] [shard 1743 master]
|
223850
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223851
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223852
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 2]] [shard 1743 master]
|
223853
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223854
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223855
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223856
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223857
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223858
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 3]] [shard 1744 master]
|
223859
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223860
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223861
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 4]] [shard 1744 master]
|
223862
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223864
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 4], ["value", 5]] [shard 1744 master]
|
223865
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223866
|
+
[1m[36m (1.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 4[0m [shard 1743 master]
|
223867
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1743 master]
|
223868
|
+
[1m[36m (0.3ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."user_id" = 4[0m [shard 1744 master]
|
223869
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" [shard 1744 master]
|
223870
|
+
[1m[36m (0.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (7, 8)[0m [shard 1743 master]
|
223871
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count FROM "appendages" WHERE "appendages"."id" IN (10, 11, 12) [shard 1744 master]
|
223872
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223873
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223874
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223875
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223876
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223877
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223878
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223879
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223880
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223881
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223882
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223883
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 1]] [shard 1743 master]
|
223884
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223885
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223886
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 2]] [shard 1743 master]
|
223887
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223888
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223889
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223890
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223892
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 3]] [shard 1744 master]
|
223893
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223894
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223895
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 4]] [shard 1744 master]
|
223896
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223897
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223898
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 5], ["value", 5]] [shard 1744 master]
|
223899
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223900
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 5[0m [shard 1743 master]
|
223901
|
+
[1m[35m (0.1ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1743 master]
|
223902
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 5[0m [shard 1744 master]
|
223903
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" [shard 1744 master]
|
223904
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (9, 10)[0m [shard 1743 master]
|
223905
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."id" IN (13, 14, 15) [shard 1744 master]
|
223906
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223907
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223908
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223909
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223910
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223911
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223912
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223913
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223914
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223915
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223916
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223917
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223918
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223919
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223920
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 1]] [shard 1743 master]
|
223921
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223922
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223923
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000006], ["value", 3]] [shard 1743 master]
|
223924
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223925
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223926
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000006], ["value", 2]] [shard 1744 master]
|
223927
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223928
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223929
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 4]] [shard 1744 master]
|
223930
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223931
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223932
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 6], ["value", 5]] [shard 1744 master]
|
223933
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223934
|
+
[1m[36m (0.1ms)[0m [1mSHOW max_identifier_length[0m [shard 1742 master]
|
223935
|
+
[1m[35m (0.3ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
|
223936
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1744 master]
|
223937
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1743 master]
|
223938
|
+
[1m[36m (0.4ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1744 master]
|
223939
|
+
[1m[35m (0.1ms)[0m SHOW max_identifier_length [shard 1744 master]
|
223940
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
223941
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
223942
|
+
[1m[36m (0.2ms)[0m [1mSELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [shard 1743 master]
|
223943
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1743 master]
|
223944
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (6)[0m [shard 1744 master]
|
223945
|
+
[1m[35m (0.2ms)[0m SELECT MAX("appendages"."value") AS maximum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
|
223946
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (6)[0m [shard 1744 master]
|
223947
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (6) [shard 1743 master]
|
223948
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223949
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223950
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223951
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223952
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223953
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223954
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223956
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223957
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223958
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223959
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
223960
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223961
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223962
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 1]] [shard 1743 master]
|
223963
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
223965
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000007], ["value", 3]] [shard 1743 master]
|
223966
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
223967
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223968
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000007], ["value", 2]] [shard 1744 master]
|
223969
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223971
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 4]] [shard 1744 master]
|
223972
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
223973
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
223974
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 7], ["value", 5]] [shard 1744 master]
|
223975
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
223976
|
+
[1m[36m (0.3ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
223977
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
223978
|
+
[1m[36m (0.2ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
223979
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
223980
|
+
[1m[36m (0.2ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
223981
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS minimum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
223982
|
+
[1m[36m (0.2ms)[0m [1mSELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [shard 1743 master]
|
223983
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1743 master]
|
223984
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (7)[0m [shard 1744 master]
|
223985
|
+
[1m[35m (0.2ms)[0m SELECT MIN("appendages"."value") AS minimum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
|
223986
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (7)[0m [shard 1744 master]
|
223987
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (7) [shard 1743 master]
|
223988
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
223989
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
223990
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
223991
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
223992
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
223993
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
223994
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
223995
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
223996
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
223997
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
223998
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
223999
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224000
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224001
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224002
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 1]] [shard 1743 master]
|
224003
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224004
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224005
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000008], ["value", 3]] [shard 1743 master]
|
224006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224007
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224008
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000008], ["value", 2]] [shard 1744 master]
|
224009
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224010
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224011
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 4]] [shard 1744 master]
|
224012
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224013
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224014
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 8], ["value", 5]] [shard 1744 master]
|
224015
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224016
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224017
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224018
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224019
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224020
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224021
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224022
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [shard 1743 master]
|
224023
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1743 master]
|
224024
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (8)[0m [shard 1744 master]
|
224025
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
|
224026
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (8)[0m [shard 1744 master]
|
224027
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (8) [shard 1743 master]
|
224028
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224029
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224030
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224031
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224032
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224033
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224034
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224035
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224036
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224037
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224038
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224039
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224040
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224041
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224042
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 1]] [shard 1743 master]
|
224043
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224044
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224045
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000009], ["value", 3]] [shard 1743 master]
|
224046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224047
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224048
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000009], ["value", 2]] [shard 1744 master]
|
224049
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224050
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224051
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 4]] [shard 1744 master]
|
224052
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224053
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224054
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", 5]] [shard 1744 master]
|
224055
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224057
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 9], ["value", nil]] [shard 1743 master]
|
224058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224059
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224060
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224061
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224062
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224063
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", nil]] [shard 1743 master]
|
224064
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224065
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) AS count_all, user_id AS user_id FROM "appendages" GROUP BY user_id ORDER BY COUNT(*) DESC LIMIT 1 [shard 1743 master]
|
224066
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224067
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224068
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224069
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224070
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224071
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224072
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224073
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224074
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224075
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224076
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224077
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224078
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224079
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224080
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 1]] [shard 1743 master]
|
224081
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224082
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224083
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000010], ["value", 3]] [shard 1743 master]
|
224084
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224085
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224086
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000011], ["value", 2]] [shard 1744 master]
|
224087
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224088
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224089
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", 4]] [shard 1744 master]
|
224090
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224091
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224092
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 10], ["value", 5]] [shard 1744 master]
|
224093
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224094
|
+
[1m[36m (0.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224095
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224096
|
+
[1m[36m (0.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224097
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224098
|
+
[1m[36m (0.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224099
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224100
|
+
[1m[36m (0.2ms)[0m [1mSELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [shard 1743 master]
|
224101
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1743 master]
|
224102
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (10)[0m [shard 1744 master]
|
224103
|
+
[1m[35m (0.2ms)[0m SELECT AVG("appendages"."value") AS average, COUNT("appendages"."value") AS count, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
|
224104
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (10)[0m [shard 1744 master]
|
224105
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (11) [shard 1743 master]
|
224106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224107
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224108
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224109
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224110
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224111
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224112
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224113
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224114
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224115
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224117
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224118
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224119
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224120
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 12], ["value", 1]] [shard 1743 master]
|
224121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224122
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224123
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17440000000000011], ["value", 3]] [shard 1743 master]
|
224124
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224125
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224126
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17430000000000012], ["value", 2]] [shard 1744 master]
|
224127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224129
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 4]] [shard 1744 master]
|
224130
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224131
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224132
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 11], ["value", 5]] [shard 1744 master]
|
224133
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224134
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224135
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224136
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224137
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224138
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id[0m [shard 1743 master]
|
224139
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_value, appendages.user_id AS appendages_user_id FROM "appendages" GROUP BY appendages.user_id [shard 1744 master]
|
224140
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id[0m [shard 1743 master]
|
224141
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (12) [shard 1743 master]
|
224142
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (11)[0m [shard 1744 master]
|
224143
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_value, user_id AS user_id FROM "appendages" GROUP BY user_id [shard 1744 master]
|
224144
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (11)[0m [shard 1744 master]
|
224145
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (12) [shard 1743 master]
|
224146
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224147
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224148
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224149
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224150
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224151
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224152
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224153
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224154
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224155
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224156
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224157
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 1743 master]
|
224158
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224159
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224160
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224161
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224162
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224163
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 12], ["value", nil]] [shard 1744 master]
|
224164
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224165
|
+
[1m[35mSQL (0.3ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
|
224166
|
+
[1m[36mSQL (0.2ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34[0m [shard 1744 master]
|
224167
|
+
[1m[35mSQL (0.2ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
|
224168
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34[0m [shard 1744 master]
|
224169
|
+
[1m[35mSQL (0.1ms)[0m SELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 25 [shard 1743 master]
|
224170
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "appendages"."id" FROM "appendages" WHERE "appendages"."id" = 34[0m [shard 1744 master]
|
224171
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224172
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
224173
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224174
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224175
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224176
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224177
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224178
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224179
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224180
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 1743 master]
|
224183
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224184
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224185
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224186
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224187
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224188
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 13], ["value", nil]] [shard 1744 master]
|
224189
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224190
|
+
[1m[36mSQL (0.2ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26[0m [shard 1743 master]
|
224191
|
+
[1m[35mSQL (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
|
224192
|
+
[1m[36mSQL (0.2ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26[0m [shard 1743 master]
|
224193
|
+
[1m[35mSQL (0.2ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
|
224194
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 26[0m [shard 1743 master]
|
224195
|
+
[1m[35mSQL (0.1ms)[0m SELECT "appendages"."user_id" FROM "appendages" WHERE "appendages"."id" = 35 [shard 1744 master]
|
224196
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224197
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224198
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224199
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224200
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224201
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224202
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224204
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224205
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224206
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224207
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 1743 master]
|
224208
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224209
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224210
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224211
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224212
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224213
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 14], ["value", nil]] [shard 1744 master]
|
224214
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224215
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224216
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224217
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224218
|
+
[1m[36mSQL (0.8ms)[0m [1mSELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (2895)[0m [shard 1742 master]
|
224219
|
+
[1m[35mSQL (0.4ms)[0m SELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (15) [shard 1743 master]
|
224220
|
+
[1m[36mSQL (0.3ms)[0m [1mSELECT DISTINCT "users"."name" FROM "users" WHERE "users"."id" IN (14)[0m [shard 1744 master]
|
224221
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224222
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
224223
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224224
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224225
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224226
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224227
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224228
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224229
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224230
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224231
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224232
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 1743 master]
|
224233
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224234
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224235
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224236
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224237
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224238
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 15], ["value", nil]] [shard 1744 master]
|
224239
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224240
|
+
[1m[36mSQL (0.2ms)[0m [1mSELECT "users"."name" FROM "users" WHERE "users"."id" IN (16)[0m [shard 1743 master]
|
224241
|
+
[1m[35mSQL (0.2ms)[0m SELECT "users"."name" FROM "users" WHERE "users"."id" IN (15) [shard 1744 master]
|
224242
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224243
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
224244
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
224245
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224246
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224247
|
+
[1m[35mSwitchman::Shard Exists (0.1ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224248
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
224249
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
224250
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224251
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224252
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
224253
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
224254
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224255
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
224256
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224257
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224258
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224259
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224260
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224261
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224262
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224263
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224264
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224266
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2896], ["value", nil]] [shard 1742 master]
|
224267
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224269
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224270
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224271
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224272
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17], ["value", nil]] [shard 1743 master]
|
224273
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224274
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224275
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224276
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224277
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224278
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224279
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 16], ["value", nil]] [shard 1744 master]
|
224280
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224281
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224282
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224283
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224284
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224285
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224286
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224287
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224288
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224290
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224291
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224292
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224293
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2897], ["value", nil]] [shard 1742 master]
|
224294
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224295
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224296
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224297
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224298
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224299
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 18], ["value", nil]] [shard 1743 master]
|
224300
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224301
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224302
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224303
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224305
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224306
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 17], ["value", nil]] [shard 1744 master]
|
224307
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224308
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224309
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
|
224310
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224311
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224312
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224313
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224314
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224315
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224316
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224317
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224318
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224319
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224320
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224321
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2898], ["value", nil]] [shard 1742 master]
|
224322
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224323
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224324
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224325
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224326
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224327
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 19], ["value", nil]] [shard 1743 master]
|
224328
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224330
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224334
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 18], ["value", nil]] [shard 1744 master]
|
224335
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224336
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224337
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224338
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224339
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224340
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224341
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224342
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224343
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224344
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224345
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224346
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224347
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224348
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2899], ["value", nil]] [shard 1742 master]
|
224349
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224350
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224351
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224352
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224353
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224354
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 20], ["value", nil]] [shard 1743 master]
|
224355
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224357
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224358
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224360
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224361
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 19], ["value", nil]] [shard 1744 master]
|
224362
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224363
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224364
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224365
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224366
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224367
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224368
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224369
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224370
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224371
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224372
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224373
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224374
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224375
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2900], ["value", nil]] [shard 1742 master]
|
224376
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224377
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224378
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224379
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224380
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224381
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 21], ["value", nil]] [shard 1743 master]
|
224382
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224383
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224384
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224385
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224386
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224387
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224388
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 20], ["value", nil]] [shard 1744 master]
|
224389
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224390
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224391
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224392
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224393
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224394
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224395
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224396
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224397
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224398
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224399
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224400
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224402
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2901], ["value", nil]] [shard 1742 master]
|
224403
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224404
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224405
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224406
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 22], ["value", nil]] [shard 1743 master]
|
224409
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224410
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224411
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224412
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224413
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224414
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224415
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 21], ["value", nil]] [shard 1744 master]
|
224416
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224417
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224418
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224419
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224420
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224421
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224422
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224423
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224424
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224426
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224427
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224428
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224429
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2902], ["value", nil]] [shard 1742 master]
|
224430
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224431
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224432
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224433
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224434
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224435
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 23], ["value", nil]] [shard 1743 master]
|
224436
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224438
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224440
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224441
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224442
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 22], ["value", nil]] [shard 1744 master]
|
224443
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224444
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224445
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224446
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224447
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224448
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224449
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224450
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224451
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224452
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224453
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224454
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224455
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224456
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2903], ["value", nil]] [shard 1742 master]
|
224457
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224458
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224459
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224460
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224461
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 24], ["value", nil]] [shard 1743 master]
|
224463
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224465
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224466
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224467
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224468
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224469
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 23], ["value", nil]] [shard 1744 master]
|
224470
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224471
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224472
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224473
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224474
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224475
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224476
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224477
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224478
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224479
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224480
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224481
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224482
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224483
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2904], ["value", nil]] [shard 1742 master]
|
224484
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224485
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224486
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224487
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224488
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224489
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 25], ["value", nil]] [shard 1743 master]
|
224490
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224491
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224492
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224493
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224494
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224495
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224496
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 24], ["value", nil]] [shard 1744 master]
|
224497
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224499
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224500
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224501
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224502
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224503
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224504
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224505
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224506
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224507
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224508
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224509
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224510
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2905], ["value", nil]] [shard 1742 master]
|
224511
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224512
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224513
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224514
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224515
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224516
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 26], ["value", nil]] [shard 1743 master]
|
224517
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224518
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224519
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224520
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224522
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224523
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 25], ["value", nil]] [shard 1744 master]
|
224524
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224525
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224526
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224527
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", nil]] [shard 1743 master]
|
224528
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224529
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224530
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
224531
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224532
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224533
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224534
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224535
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224536
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224537
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224538
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224539
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224540
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2906], ["value", nil]] [shard 1742 master]
|
224541
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224542
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224543
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224544
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224545
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224546
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 27], ["value", nil]] [shard 1743 master]
|
224547
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224548
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224549
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224550
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224551
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224552
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224553
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 26], ["value", nil]] [shard 1744 master]
|
224554
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224555
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224556
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224557
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224558
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224559
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224560
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224561
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224562
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224563
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224564
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224565
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224566
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224567
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2907], ["value", nil]] [shard 1742 master]
|
224568
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224569
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224570
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224571
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224572
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224573
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 28], ["value", nil]] [shard 1743 master]
|
224574
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224575
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224576
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224577
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224579
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224580
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 27], ["value", nil]] [shard 1744 master]
|
224581
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224582
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224584
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 2907], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224585
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224586
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224587
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 2908], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224588
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224589
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2908]] [shard 1742 master]
|
224590
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2907 LIMIT 1[0m [shard 1742 master]
|
224591
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = 2907 [shard 1742 master]
|
224592
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224593
|
+
[1m[35m (0.2ms)[0m ROLLBACK [shard 1742 master]
|
224594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224595
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224596
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224597
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224598
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224599
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224600
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224601
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224602
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224603
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2910], ["value", nil]] [shard 1742 master]
|
224604
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224606
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224608
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224609
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 29], ["value", nil]] [shard 1743 master]
|
224610
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224612
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224613
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224614
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224615
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224616
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 28], ["value", nil]] [shard 1744 master]
|
224617
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224618
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224619
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224620
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224621
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224622
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224623
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224624
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224625
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224627
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224628
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224629
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224630
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2911], ["value", nil]] [shard 1742 master]
|
224631
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224632
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224633
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224634
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224636
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 30], ["value", nil]] [shard 1743 master]
|
224637
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224638
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224639
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224640
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224642
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224643
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 29], ["value", nil]] [shard 1744 master]
|
224644
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224645
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224647
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224648
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224649
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224650
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224651
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224652
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224653
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224654
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1742 master]
|
224655
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224656
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224657
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 2912], ["value", nil]] [shard 1742 master]
|
224658
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224659
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224660
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1743 master]
|
224661
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224662
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224663
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 31], ["value", nil]] [shard 1743 master]
|
224664
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224666
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00]] [shard 1744 master]
|
224667
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224668
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224669
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
224670
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:06 UTC +00:00], ["user_id", 30], ["value", nil]] [shard 1744 master]
|
224671
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
224672
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224673
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224674
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224675
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224676
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224677
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224678
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224679
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224680
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224681
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224682
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224683
|
+
[1m[35m (0.4ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224684
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 2913], ["value", nil]] [shard 1742 master]
|
224685
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224687
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
224688
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224690
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 32], ["value", nil]] [shard 1743 master]
|
224691
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224692
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224693
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
|
224694
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224695
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224696
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
224697
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", 31], ["value", nil]] [shard 1744 master]
|
224698
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
224699
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224700
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224701
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224702
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
224703
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224704
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224705
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224706
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
224707
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
224708
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224709
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224710
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
224711
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
224712
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224713
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
224714
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224715
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224716
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224717
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224718
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224719
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224720
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
224721
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
224722
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
224723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
224724
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
224725
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
224726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224727
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224728
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224729
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [shard 1743 master]
|
224730
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224731
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224732
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224733
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224734
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224735
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224736
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224737
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224738
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224739
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224740
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224741
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224742
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [shard 1742 master]
|
224743
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224744
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224745
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224746
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224747
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224748
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224749
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224751
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224752
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224753
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224754
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "users"[0m [shard 1742 master]
|
224755
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224756
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224757
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224758
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224759
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
224760
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224761
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "users" [shard 1742 master]
|
224762
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users"[0m [shard 1742 master]
|
224763
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224764
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224765
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
224766
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224767
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "a"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224768
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224769
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]] [shard 1742 master]
|
224770
|
+
[1m[36mCACHE (0.0ms)[0m [1m1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2919]]
|
224771
|
+
[1m[35mCACHE (0.0ms)[0m 1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]]
|
224772
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224773
|
+
[1m[35m (0.3ms)[0m UPDATE "users" SET "name" = 'b', "updated_at" = '2015-03-10 19:18:07.064654' WHERE "users"."id" = 2919 [shard 1742 master]
|
224774
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224775
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2919]] [shard 1742 master]
|
224776
|
+
[1m[36mCACHE (0.0ms)[0m [1m1742::SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 2919]]
|
224777
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "users" [shard 1742 master]
|
224778
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224779
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224780
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224781
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224782
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "users"[0m [shard 1742 master]
|
224783
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "users" [shard 1742 master]
|
224784
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224785
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224786
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224787
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224788
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224789
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224790
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224791
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224792
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224793
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224794
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224795
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224796
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224797
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
224798
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224799
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224800
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224801
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224802
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224803
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224804
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224805
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224806
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224807
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224808
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224809
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224810
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224811
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224812
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224813
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224814
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224815
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224816
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224817
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224818
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224819
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224820
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224821
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224822
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224823
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224824
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224825
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224826
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224827
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224828
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224829
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224830
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224831
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224832
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224833
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224834
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224835
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224836
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224837
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224838
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224839
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224840
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224841
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224842
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224843
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224844
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224845
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224846
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224847
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224848
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224849
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
224850
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224851
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224852
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224853
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224854
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224855
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224856
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224857
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224858
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
224859
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224860
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
224861
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224862
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224863
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224864
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224865
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224866
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224867
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224868
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224869
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
224870
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224871
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224872
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224873
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224874
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224875
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224876
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224877
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224878
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224879
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224880
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224881
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224882
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224883
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224884
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" FOR UPDATE[0m [shard 1742 master]
|
224885
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224886
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224887
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224888
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224889
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224890
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224891
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224892
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224893
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224894
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224895
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224896
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224897
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224898
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224899
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224900
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224901
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224902
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224903
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224904
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224905
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224906
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224908
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224909
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224910
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224911
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.134578' [shard 1742 master]
|
224912
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224913
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224914
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224915
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224916
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224917
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224918
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224919
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
224920
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224921
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
224922
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" [0m [shard 1742 master]
|
224923
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.141045' [shard 1742 master]
|
224924
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224925
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224926
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224927
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224928
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224929
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224930
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.144989'[0m [shard 1742 master]
|
224931
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" [shard 1742 master]
|
224932
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224933
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
224934
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224935
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" [shard 1742 master]
|
224936
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "updated_at" = '2015-03-10 19:18:07.149163'[0m [shard 1742 master]
|
224937
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" [shard 1742 master]
|
224938
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224939
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224940
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224941
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224942
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224943
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224944
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224945
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224946
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224947
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224948
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224949
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224950
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224951
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224952
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224953
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224954
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224955
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224956
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224957
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
224958
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224959
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
224960
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224961
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224962
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224963
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
224964
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224965
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
224966
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224967
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224968
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
224969
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
224970
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
224971
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
224972
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
224973
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224974
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224975
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
224976
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
224977
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
224978
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
224979
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224980
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
224981
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224982
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224983
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224984
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224985
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
224986
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224987
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
224988
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224989
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
224990
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
224991
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
224992
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
224993
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
224994
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
224995
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
224996
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
224997
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
224998
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
224999
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225000
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225001
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225002
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225003
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225004
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '2' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1[0m [shard 1742 master]
|
225005
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225006
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "2"], ["default", false], ["name", "public"]] [shard 1742 master]
|
225007
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225008
|
+
[1m[36m (0.7ms)[0m [1mCREATE SCHEMA switchman_test_shard_1745[0m [shard 1745 deploy]
|
225009
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1745 deploy]
|
225010
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 1745 deploy]
|
225011
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1745 deploy]
|
225012
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m [shard 1745 deploy]
|
225013
|
+
Migrating to CreateUsers (20130403132607)
|
225014
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225015
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130403132607')[0m [shard 1745 deploy]
|
225016
|
+
Migrating to CreateAppendages (20130411202442)
|
225017
|
+
[1m[35m (3.3ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225018
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202442')[0m [shard 1745 deploy]
|
225019
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
225020
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225021
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202551')[0m [shard 1745 deploy]
|
225022
|
+
Migrating to CreateDigits (20131022202028)
|
225023
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225024
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131022202028')[0m [shard 1745 deploy]
|
225025
|
+
Migrating to CreateFeatures (20131206172923)
|
225026
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225027
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131206172923')[0m [shard 1745 deploy]
|
225028
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
225029
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1745 deploy]
|
225030
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140123154135')[0m [shard 1745 deploy]
|
225031
|
+
Migrating to CreateRoots (20140219183820)
|
225032
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1745 deploy]
|
225033
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140219183820')[0m [shard 1745 deploy]
|
225034
|
+
[1m[35m (0.9ms)[0m COMMIT [shard 1745 deploy]
|
225035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225036
|
+
[1m[35m (0.2ms)[0m UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1745' WHERE "switchman_shards"."id" = 1745 [shard 1742 master]
|
225037
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225038
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1745 master]
|
225039
|
+
[1m[36mSQL (6.6ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1745 master]
|
225040
|
+
[1m[35m (11.2ms)[0m COMMIT [shard 1745 master]
|
225041
|
+
[1m[36m (8.3ms)[0m [1mDROP SCHEMA switchman_test_shard_1745 CASCADE[0m [shard 1745 deploy]
|
225042
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225043
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1[0m [["id", 1745]] [shard 1742 master]
|
225044
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225045
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225046
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225047
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225048
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225049
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225050
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225051
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225052
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" IS NULL AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
|
225053
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225054
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1 [shard 1742 master]
|
225055
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225056
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225057
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225058
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225059
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225060
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225061
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225062
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '3' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
|
225063
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225064
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "3"], ["default", false], ["name", nil]] [shard 1742 master]
|
225065
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225066
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*) [shard 1746 deploy]
|
225067
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m [shard 1746 deploy]
|
225068
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [shard 1746 deploy]
|
225069
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m [shard 1746 deploy]
|
225070
|
+
[1m[35m (0.0ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" [shard 1746 deploy]
|
225071
|
+
Migrating to CreateUsers (20130403132607)
|
225072
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "mirror_user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225073
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130403132607') [shard 1746 deploy]
|
225074
|
+
Migrating to CreateAppendages (20130411202442)
|
225075
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "appendages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225076
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130411202442') [shard 1746 deploy]
|
225077
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
225078
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "mirror_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225079
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130411202551') [shard 1746 deploy]
|
225080
|
+
Migrating to CreateDigits (20131022202028)
|
225081
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "digits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "appendage_id" integer(8), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225082
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20131022202028') [shard 1746 deploy]
|
225083
|
+
Migrating to CreateFeatures (20131206172923)
|
225084
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "features" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer(8), "owner_type" varchar(255), "value" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225085
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20131206172923') [shard 1746 deploy]
|
225086
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
225087
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "parent_id" integer(8)[0m [shard 1746 deploy]
|
225088
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20140123154135') [shard 1746 deploy]
|
225089
|
+
Migrating to CreateRoots (20140219183820)
|
225090
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "roots" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer(8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m [shard 1746 deploy]
|
225091
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20140219183820') [shard 1746 deploy]
|
225092
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m [shard 1746 deploy]
|
225093
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225094
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "switchman_shards" SET "name" = 'db/shard_1746.sqlite3' WHERE "switchman_shards"."id" = 1746[0m [shard 1742 master]
|
225095
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225096
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m [shard 1746 master]
|
225097
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1746 master]
|
225098
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m [shard 1746 master]
|
225099
|
+
Drop failed: No such file or directory @ unlink_internal - db/shard_1746.sqlite3
|
225100
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225101
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1[0m [["id", 1746]] [shard 1742 master]
|
225102
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225103
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225104
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225105
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225106
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225107
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225108
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225109
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225110
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (database_server_id IS NULL OR database_server_id='test') AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1 [shard 1742 master]
|
225111
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225112
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "test"], ["default", false], ["name", "public"]] [shard 1742 master]
|
225113
|
+
[1m[36m (0.2ms)[0m [1mCREATE SCHEMA switchman_test_shard_1747[0m [shard 1747 deploy]
|
225114
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2 [shard 1747 deploy]
|
225115
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 1747 deploy]
|
225116
|
+
[1m[35m (7.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1747 deploy]
|
225117
|
+
[1m[36m (0.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m [shard 1747 deploy]
|
225118
|
+
Migrating to CreateUsers (20130403132607)
|
225119
|
+
[1m[35m (3.3ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225120
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130403132607')[0m [shard 1747 deploy]
|
225121
|
+
Migrating to CreateAppendages (20130411202442)
|
225122
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225123
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202442')[0m [shard 1747 deploy]
|
225124
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
225125
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225126
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202551')[0m [shard 1747 deploy]
|
225127
|
+
Migrating to CreateDigits (20131022202028)
|
225128
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225129
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131022202028')[0m [shard 1747 deploy]
|
225130
|
+
Migrating to CreateFeatures (20131206172923)
|
225131
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225132
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131206172923')[0m [shard 1747 deploy]
|
225133
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
225134
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1747 deploy]
|
225135
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140123154135')[0m [shard 1747 deploy]
|
225136
|
+
Migrating to CreateRoots (20140219183820)
|
225137
|
+
[1m[35m (3.8ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1747 deploy]
|
225138
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140219183820')[0m [shard 1747 deploy]
|
225139
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2 [shard 1747 deploy]
|
225140
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1747' WHERE "switchman_shards"."id" = 1747[0m [shard 1742 master]
|
225141
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225142
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1747 master]
|
225143
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1747 master]
|
225144
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1747 master]
|
225145
|
+
[1m[35m (2.9ms)[0m DROP SCHEMA switchman_test_shard_1747 CASCADE [shard 1747 deploy]
|
225146
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225147
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1747]] [shard 1742 master]
|
225148
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225149
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225150
|
+
[1m[36m (2.2ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225151
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
225152
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225153
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225154
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225155
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225156
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225157
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225158
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225159
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225160
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225161
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225162
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225163
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225164
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225165
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225166
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225167
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225168
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225169
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225170
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225171
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225172
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225173
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225174
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225175
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225176
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225177
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225178
|
+
[1m[36mSwitchman::Shard Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225179
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225180
|
+
[1m[36m (6.1ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225181
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225182
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225183
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225184
|
+
[1m[36m (10.8ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225185
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225186
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225187
|
+
[1m[35m (0.4ms)[0m COMMIT [shard 1742 master]
|
225188
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225189
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225190
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225191
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225192
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225193
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225194
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225195
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225196
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225197
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225198
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225199
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225200
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225201
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225202
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225203
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225204
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225205
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225206
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225207
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225208
|
+
[1m[36mSQL (2.3ms)[0m [1mINSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", nil]] [shard 1742 master]
|
225209
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225210
|
+
[1m[36mMirrorUser Load (0.2ms)[0m [1mSELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1[0m [["id", 67]] [shard 1742 master]
|
225211
|
+
[1m[35mMirrorUser Load (0.1ms)[0m SELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = $1 LIMIT 1 [["id", 67]] [shard 1742 master]
|
225212
|
+
[1m[36mMirrorUser Load (0.2ms)[0m [1mSELECT "mirror_users".* FROM "mirror_users" WHERE "mirror_users"."id" = 67 LIMIT 1[0m [shard 1743 master]
|
225213
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225214
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225215
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225216
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225217
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225218
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225219
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225220
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225221
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
225222
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225223
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225224
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225225
|
+
[1m[35mSwitchman::Shard Exists (0.3ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225226
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225227
|
+
[1m[35m (5.8ms)[0m COMMIT [shard 1742 master]
|
225228
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225229
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225230
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225231
|
+
[1m[35m (6.1ms)[0m COMMIT [shard 1742 master]
|
225232
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225233
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225234
|
+
[1m[36m (30.8ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225235
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225236
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225237
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225238
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225239
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225240
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225241
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225242
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225243
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225244
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225245
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225246
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225247
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
225248
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225249
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225250
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225251
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
225252
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225253
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225254
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225255
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225256
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
225257
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
|
225258
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
225259
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225260
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225261
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225262
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225263
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
225264
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users" [0m [shard 1744 master]
|
225265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2 [shard 1744 master]
|
225266
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1744 master]
|
225267
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2 [shard 1744 master]
|
225268
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m [shard 1744 master]
|
225269
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225270
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m [shard 1744 master]
|
225271
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225272
|
+
[1m[36mSQL (6.1ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225273
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225274
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225275
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225276
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225277
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
225278
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225279
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "switchman_shards" [shard 1742 master]
|
225280
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225281
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225282
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225283
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225284
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225285
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "9"], ["default", false], ["name", nil]] [shard 1742 master]
|
225286
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225288
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "9"], ["default", false], ["name", nil]] [shard 1742 master]
|
225289
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225290
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225291
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225292
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225293
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225294
|
+
[1m[36m (6.1ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225295
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225296
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225297
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225298
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225299
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225300
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225301
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
225302
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225303
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225304
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225305
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225306
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225307
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225308
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
|
225309
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225310
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1[0m [shard 1742 master]
|
225311
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
|
225312
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225313
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225314
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225315
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225316
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225317
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225318
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225320
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225321
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225322
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225323
|
+
[1m[35mSQL (23.1ms)[0m INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["owner_id", 2929], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["value", nil]] [shard 1742 master]
|
225324
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225325
|
+
[1m[35mFeature Load (0.2ms)[0m SELECT owner_id FROM "features" WHERE "features"."id" = 137 LIMIT 1 [shard 1742 master]
|
225326
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225327
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225328
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225329
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225330
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225331
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225332
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225334
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225335
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225336
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225337
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225338
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225339
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225340
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225341
|
+
[1m[35mSwitchman::Shard Exists (0.1ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225342
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225343
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
225344
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225345
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225346
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225347
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
225348
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225349
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225350
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225351
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225352
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225353
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225354
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225355
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225357
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225358
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225359
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225360
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
225361
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225362
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1[0m [shard 1742 master]
|
225363
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (2931) [shard 1742 master]
|
225364
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "name" = 'a' WHERE "users"."id" IN (35)[0m [shard 1743 master]
|
225365
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2931]] [shard 1742 master]
|
225366
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 35]] [shard 1743 master]
|
225367
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225368
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225369
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225370
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225371
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225372
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225373
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225374
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225375
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225376
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225377
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225378
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
225379
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225380
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "name" = 'a' WHERE "users"."id" = 36[0m [shard 1743 master]
|
225381
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 2932]] [shard 1742 master]
|
225382
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 36]] [shard 1743 master]
|
225383
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225384
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225385
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225386
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225387
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225388
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225389
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225390
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225391
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225392
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225393
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225394
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
225395
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225396
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225397
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
225398
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225399
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225400
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225401
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225402
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225403
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225404
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225405
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225406
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
225407
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
225408
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
225409
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (2934) [shard 1742 master]
|
225410
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (38)[0m [shard 1743 master]
|
225411
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225412
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225413
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225414
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225415
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225416
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225417
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225418
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225419
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user1"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1742 master]
|
225420
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225421
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225422
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", "user2"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1743 master]
|
225423
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225424
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 39 LIMIT 1[0m [shard 1743 master]
|
225425
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225426
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225427
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
225428
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225429
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225430
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225431
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "10"], ["default", false], ["name", "non_existent_shard"]] [shard 1742 master]
|
225432
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225434
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "10"], ["default", false], ["name", nil]] [shard 1742 master]
|
225435
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225436
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "users" [0m [shard 1750 master]
|
225437
|
+
PG::UndefinedTable: ERROR: relation "users" does not exist
|
225438
|
+
LINE 1: SELECT COUNT(*) FROM "users"
|
225439
|
+
^
|
225440
|
+
: SELECT COUNT(*) FROM "users"
|
225441
|
+
[1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "users" [shard 1751 master]
|
225442
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225443
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225444
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225445
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "11"], ["default", false], ["name", nil]] [shard 1742 master]
|
225446
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225447
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225450
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "12"], ["default", false], ["name", nil]] [shard 1742 master]
|
225451
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225452
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225453
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225455
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "13"], ["default", false], ["name", nil]] [shard 1742 master]
|
225456
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225457
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225458
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225459
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225460
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "14"], ["default", false], ["name", nil]] [shard 1742 master]
|
225461
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225462
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225463
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225465
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "15"], ["default", false], ["name", nil]] [shard 1742 master]
|
225466
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225467
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225468
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225469
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225470
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "16"], ["default", false], ["name", nil]] [shard 1742 master]
|
225471
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225472
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225473
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225474
|
+
[1m[36mSwitchman::Shard Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225475
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225476
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225477
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225478
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225479
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225480
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225481
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225482
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225483
|
+
[1m[35m (0.4ms)[0m COMMIT [shard 1742 master]
|
225484
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225485
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225486
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225487
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225488
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225489
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
225490
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225491
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225492
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225493
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225494
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225495
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225496
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1[0m [shard 1742 master]
|
225497
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1 [shard 1742 master]
|
225498
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225499
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225500
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225501
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225502
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225503
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225504
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225505
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225506
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225507
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225508
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225509
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225510
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225511
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225512
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 11744 LIMIT 1[0m [shard 1742 master]
|
225513
|
+
[1m[35m (0.2ms)[0m ROLLBACK [shard 1744 master]
|
225514
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225515
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225516
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225517
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225518
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225519
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225520
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225521
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225522
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225523
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225524
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225525
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225526
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225527
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225528
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225529
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225530
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225531
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225532
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225533
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225534
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."database_server_id" = '17' AND (name<>':memory:' OR name IS NULL) ORDER BY id LIMIT 1[0m [shard 1742 master]
|
225535
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225536
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "17"], ["default", false], ["name", "public"]] [shard 1742 master]
|
225537
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225538
|
+
[1m[36m (2.0ms)[0m [1mCREATE SCHEMA switchman_test_shard_1758[0m [shard 1758 deploy]
|
225539
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1758 deploy]
|
225540
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m [shard 1758 deploy]
|
225541
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") [shard 1758 deploy]
|
225542
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m [shard 1758 deploy]
|
225543
|
+
Migrating to CreateUsers (20130403132607)
|
225544
|
+
[1m[35m (4.1ms)[0m CREATE TABLE "users" ("id" bigserial primary key, "name" character varying(255), "mirror_user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225545
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130403132607')[0m [shard 1758 deploy]
|
225546
|
+
Migrating to CreateAppendages (20130411202442)
|
225547
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "appendages" ("id" bigserial primary key, "user_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225548
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202442')[0m [shard 1758 deploy]
|
225549
|
+
Migrating to CreateMirrorUsers (20130411202551)
|
225550
|
+
[1m[35m (4.6ms)[0m CREATE TABLE "mirror_users" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225551
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130411202551')[0m [shard 1758 deploy]
|
225552
|
+
Migrating to CreateDigits (20131022202028)
|
225553
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "digits" ("id" bigserial primary key, "appendage_id" bigint, "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225554
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131022202028')[0m [shard 1758 deploy]
|
225555
|
+
Migrating to CreateFeatures (20131206172923)
|
225556
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "features" ("id" bigserial primary key, "owner_id" bigint, "owner_type" character varying(255), "value" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225557
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131206172923')[0m [shard 1758 deploy]
|
225558
|
+
Migrating to AddParentIdToUsers (20140123154135)
|
225559
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD COLUMN "parent_id" bigint [shard 1758 deploy]
|
225560
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140123154135')[0m [shard 1758 deploy]
|
225561
|
+
Migrating to CreateRoots (20140219183820)
|
225562
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "roots" ("id" bigserial primary key, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [shard 1758 deploy]
|
225563
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140219183820')[0m [shard 1758 deploy]
|
225564
|
+
[1m[35m (0.6ms)[0m COMMIT [shard 1758 deploy]
|
225565
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225566
|
+
[1m[35m (0.2ms)[0m UPDATE "switchman_shards" SET "name" = 'switchman_test_shard_1758' WHERE "switchman_shards"."id" = 1758 [shard 1742 master]
|
225567
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225568
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1758 master]
|
225569
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:07 UTC +00:00]] [shard 1758 master]
|
225570
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1758 master]
|
225571
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" [0m [shard 1758 master]
|
225572
|
+
[1m[35m (4.8ms)[0m DROP SCHEMA switchman_test_shard_1758 CASCADE [shard 1758 deploy]
|
225573
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "users" [0m [shard 1758 master]
|
225574
|
+
PG::UndefinedTable: ERROR: relation "users" does not exist
|
225575
|
+
LINE 1: SELECT COUNT(*) FROM "users"
|
225576
|
+
^
|
225577
|
+
: SELECT COUNT(*) FROM "users"
|
225578
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225579
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225580
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225581
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225582
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225583
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225584
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225585
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225586
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225587
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225588
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225589
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225590
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225591
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225592
|
+
[1m[35mSwitchman::Shard Load (0.8ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
|
225593
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225594
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225595
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225596
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225597
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225598
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225599
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225600
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
|
225601
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225602
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225603
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225604
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225605
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225606
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225607
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225608
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
|
225609
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225610
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225611
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225612
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225613
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225614
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225615
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225616
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id [shard 1742 master]
|
225617
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225618
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
225619
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225620
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225621
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225622
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225623
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225624
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225625
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225626
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225627
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225628
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225629
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225630
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225631
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225632
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225633
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225634
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225635
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225636
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225637
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225638
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225639
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225640
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225641
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225642
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225643
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225644
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225645
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225646
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225647
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225648
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225649
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225650
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225651
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225652
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225653
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225654
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225655
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225656
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225657
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225658
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225659
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225660
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225661
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225662
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225663
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225664
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225665
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225666
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225667
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225668
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225669
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225670
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225671
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225672
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225673
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225674
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225675
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225676
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225677
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225678
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225679
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225680
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225681
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", nil], ["default", false], ["name", nil]] [shard 1742 master]
|
225682
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225683
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225684
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1759]] [shard 1742 master]
|
225685
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225686
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1759 LIMIT 1 [shard 1742 master]
|
225687
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225688
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225689
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225690
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225691
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225692
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225693
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225694
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225695
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225696
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225697
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225698
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225699
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225700
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225701
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225702
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225703
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225704
|
+
[1m[35mSwitchman::Shard Load (0.4ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225705
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225706
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225707
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225708
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
225709
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225710
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225711
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225712
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225713
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225714
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225715
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225716
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225717
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225718
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225719
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225720
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225721
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225722
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225723
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", nil], ["default", false], ["name", nil]] [shard 1742 master]
|
225724
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225725
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225726
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 [["id", 1760]] [shard 1742 master]
|
225727
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225728
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225729
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225730
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225731
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225732
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225733
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225734
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225735
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225736
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225737
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225738
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225739
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225740
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225741
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225742
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225743
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225744
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225745
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225746
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225747
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225748
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225749
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id[0m [shard 1742 master]
|
225750
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225751
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225752
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225753
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225754
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225755
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225756
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225757
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" ORDER BY database_server_id IS NOT NULL, database_server_id, id[0m [shard 1742 master]
|
225758
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225759
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225760
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225761
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225762
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225763
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225764
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225765
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225766
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225767
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225768
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225769
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225770
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225771
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225772
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225773
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225774
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225775
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225776
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225777
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225778
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225779
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225780
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225781
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225782
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225783
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225784
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225785
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225786
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225787
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225788
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225789
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225790
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225791
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225792
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225793
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225794
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225795
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225796
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225797
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225798
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225799
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225800
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225801
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225802
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225803
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225804
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225805
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225806
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225807
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225808
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225809
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225810
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225811
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225812
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225813
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225814
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
225815
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225816
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225817
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225818
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225819
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225820
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225821
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225822
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225823
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225824
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225825
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225826
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225827
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225828
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225829
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225830
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225831
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225832
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225833
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225834
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225835
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225836
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225837
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225838
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225839
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225840
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225841
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225842
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225843
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225844
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225845
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225846
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225847
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225848
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225849
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225850
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225851
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225852
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225853
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225854
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225855
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225856
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
225857
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225858
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225860
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
225861
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225862
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225863
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225864
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225865
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225866
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225867
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225868
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225869
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225870
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
|
225871
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225873
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
225874
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225875
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225876
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
225877
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225878
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225879
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225880
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225881
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225882
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225883
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225884
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225885
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225886
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225887
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225888
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
225890
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
225891
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
225892
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
|
225893
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225894
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225895
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225896
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225897
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225898
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225899
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225900
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225901
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225902
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
225903
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225904
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225905
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225906
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225907
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
225908
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
225909
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
225910
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225911
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1743 master]
|
225912
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225913
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
225914
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1744 master]
|
225915
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
225916
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225917
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
225918
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225919
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225920
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225921
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225922
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225923
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225924
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
|
225925
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
225926
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
225927
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
225928
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225929
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225930
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225931
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225932
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
225933
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225934
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225935
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225936
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225937
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225938
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225939
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225940
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225941
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil]] [shard 1742 master]
|
225942
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
225943
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225944
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
225945
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
225946
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225947
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225948
|
+
[1m[35mSwitchman::Shard Exists (0.1ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225949
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
225950
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
225951
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225952
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225953
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
225954
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
225955
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225956
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
225957
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
225958
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
225959
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
225960
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
225961
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
225962
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
225963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
225964
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
225965
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
225966
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
225967
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
225968
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
225969
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
225970
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 43], ["value", nil]] [shard 1743 master]
|
225971
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
225972
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1 [shard 1742 master]
|
225973
|
+
[1m[36mAppendage Load (0.4ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1[0m [["id", 46]] [shard 1743 master]
|
225974
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 43 LIMIT 1 [shard 1743 master]
|
225975
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225976
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
225977
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225978
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225979
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225980
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225981
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225983
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
225984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225985
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
225986
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
225987
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
225988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
225989
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 44], ["value", nil]] [shard 1743 master]
|
225990
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
225991
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
225992
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
225993
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
225994
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
225995
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
225996
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
225997
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
225998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
225999
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226000
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226001
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226002
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226003
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226004
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226005
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226006
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226007
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226008
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226009
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226010
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226011
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226012
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226013
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226014
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226015
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226016
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226017
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226018
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 46], ["value", nil]] [shard 1743 master]
|
226019
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226020
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226021
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", nil], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
|
226022
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226023
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1744 LIMIT 1[0m [shard 1742 master]
|
226024
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226025
|
+
[1m[36mSQL (6.6ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "id", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["appendage_id", 48], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["id", 17440000000000001], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226026
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226027
|
+
[1m[36mDigit Load (0.4ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 46 AND "digits"."id" = $1 LIMIT 1[0m [["id", 17440000000000001]] [shard 1743 master]
|
226028
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226029
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226030
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226031
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226032
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226033
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226034
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226035
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226036
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226037
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226038
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226039
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226040
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226041
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226042
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 47], ["value", nil]] [shard 1743 master]
|
226043
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226044
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 47 AND "appendages"."id" = $1 LIMIT 1 [["id", 49]] [shard 1743 master]
|
226045
|
+
[1m[36mAppendage Load (0.4ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 38 AND "appendages"."id" = $1 LIMIT 1[0m [["id", 17430000000000049]] [shard 1744 master]
|
226046
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226047
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226048
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226049
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226050
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226051
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226052
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226053
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226054
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226055
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226056
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226057
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226058
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226059
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226060
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "mirror_users" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil]] [shard 1743 master]
|
226061
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226062
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226063
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226064
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226065
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226066
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226067
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226068
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226069
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226070
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226071
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226072
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226073
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226074
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226075
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226076
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 49], ["value", nil]] [shard 1743 master]
|
226077
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226078
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226079
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 50], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226080
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226081
|
+
[1m[36mDigit Load (0.5ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 49 AND "digits"."id" = $1 LIMIT 1[0m [["id", 1]] [shard 1743 master]
|
226082
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226083
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226084
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226085
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226086
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226087
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226088
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226089
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226090
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226091
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226092
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226093
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226094
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226095
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226096
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 50], ["value", nil]] [shard 1743 master]
|
226097
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226098
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226099
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226100
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 41], ["value", nil]] [shard 1744 master]
|
226101
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226102
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226103
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226104
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226105
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226106
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226107
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226108
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226109
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226110
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226111
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226112
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226113
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226114
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226115
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226116
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226117
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 51], ["value", nil]] [shard 1743 master]
|
226118
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226119
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226120
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226121
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226122
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226123
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226124
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226125
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226130
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226131
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226132
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226133
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226134
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226135
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226136
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226137
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226138
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226140
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226141
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226142
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226143
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226144
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226145
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226146
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 53], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226147
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226148
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226149
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", 54], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226150
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226151
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 53]] [shard 1743 master]
|
226152
|
+
[1m[35m (0.1ms)[0m SHOW max_identifier_length [shard 1743 master]
|
226153
|
+
[1m[36mUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = 53 AND "users"."id" = 55 LIMIT 1[0m [shard 1743 master]
|
226154
|
+
WARNING: Can't mass-assign protected attributes: id
|
226155
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226156
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226157
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226158
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 53]] [shard 1743 master]
|
226159
|
+
[1m[35mUser Exists (0.3ms)[0m SELECT 1 AS one FROM "users" INNER JOIN "users" "children_grandchildren_join" ON "users"."parent_id" = "children_grandchildren_join"."id" WHERE "children_grandchildren_join"."parent_id" = 53 AND "users"."id" = 17440000000000045 LIMIT 1 [shard 1743 master]
|
226160
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226161
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226162
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226163
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226164
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226165
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226166
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226167
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226168
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226169
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226170
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226171
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226172
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226173
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226174
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 56], ["value", nil]] [shard 1743 master]
|
226175
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226176
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 56[0m [shard 1743 master]
|
226177
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 56]] [shard 1743 master]
|
226178
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "appendages" WHERE "appendages"."user_id" = 56[0m [shard 1743 master]
|
226179
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226180
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226181
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226182
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226183
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226184
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226185
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226186
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226187
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226188
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226189
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226190
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226191
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226192
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226193
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 57], ["value", 1]] [shard 1743 master]
|
226194
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226195
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226196
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000057], ["value", nil]] [shard 1744 master]
|
226197
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226198
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 57 AND "appendages"."value" IS NULL[0m [shard 1743 master]
|
226199
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000057 AND "appendages"."value" IS NULL [shard 1744 master]
|
226200
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 57]] [shard 1743 master]
|
226201
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 57 AND "appendages"."value" IS NULL [shard 1743 master]
|
226202
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000057 AND "appendages"."value" IS NULL[0m [shard 1744 master]
|
226203
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226204
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226205
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226206
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226207
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226208
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226209
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226210
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226211
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226212
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226213
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226214
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226215
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226216
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226217
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 58], ["value", nil]] [shard 1743 master]
|
226218
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226219
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226220
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 55], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226221
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226222
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226223
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000058], ["value", nil]] [shard 1744 master]
|
226224
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226225
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226226
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 57], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
|
226227
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226228
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 58 AND "digits"."value" IS NULL[0m [shard 1743 master]
|
226229
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000058 AND "digits"."value" IS NULL [shard 1744 master]
|
226230
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 58]] [shard 1743 master]
|
226231
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 58 AND "digits"."value" IS NULL [shard 1743 master]
|
226232
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000058 AND "digits"."value" IS NULL[0m [shard 1744 master]
|
226233
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226234
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226235
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226236
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226237
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226238
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226239
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226241
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226242
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226243
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226244
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226245
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226246
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226247
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 59], ["value", nil]] [shard 1743 master]
|
226248
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226249
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226250
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 56], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226251
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226252
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226253
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000059], ["value", nil]] [shard 1744 master]
|
226254
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226255
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226256
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
|
226257
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226258
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 59 AND "digits"."value" IS NULL[0m [shard 1743 master]
|
226259
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000059 AND "digits"."value" IS NULL [shard 1744 master]
|
226260
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 59]] [shard 1743 master]
|
226261
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 59 AND "digits"."value" IS NULL [shard 1743 master]
|
226262
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000059 AND "digits"."value" IS NULL[0m [shard 1744 master]
|
226263
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226264
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226265
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226266
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226267
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226268
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226269
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226270
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226271
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226272
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226273
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226274
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226275
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226276
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226277
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1743 master]
|
226278
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226279
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226280
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 57], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
|
226281
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226282
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226283
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000060], ["value", nil]] [shard 1744 master]
|
226284
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226286
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 59], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
|
226287
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226288
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 60[0m [shard 1743 master]
|
226289
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 60]] [shard 1743 master]
|
226290
|
+
[1m[36mDigit Load (0.3ms)[0m [1mSELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 60[0m [shard 1743 master]
|
226291
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000060 [shard 1744 master]
|
226292
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226293
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226294
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226295
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226296
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226297
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226298
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226300
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226301
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226302
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226303
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226304
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226305
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226306
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 61], ["value", nil]] [shard 1743 master]
|
226307
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226308
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226309
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226310
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226311
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226312
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 58], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
|
226313
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226314
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226315
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000061], ["value", nil]] [shard 1744 master]
|
226316
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226317
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226318
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 60], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
|
226319
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226320
|
+
[1m[36m (0.4ms)[0m [1mSELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 61 AND (digits.value IS NOT NULL)[0m [shard 1743 master]
|
226321
|
+
[1m[35m (0.4ms)[0m SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000061 AND (digits.value IS NOT NULL) [shard 1744 master]
|
226322
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 61]] [shard 1743 master]
|
226323
|
+
[1m[35m (0.3ms)[0m SELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 61 AND (digits.value IS NOT NULL) [shard 1743 master]
|
226324
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("digits"."value") AS sum_id FROM "digits" INNER JOIN "appendages" ON "digits"."appendage_id" = "appendages"."id" WHERE "appendages"."user_id" = 17430000000000061 AND (digits.value IS NOT NULL)[0m [shard 1744 master]
|
226325
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226326
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226327
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226328
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226329
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226330
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226331
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226332
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226333
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226334
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226335
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226336
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226337
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226338
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226339
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 62], ["value", 1]] [shard 1743 master]
|
226340
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226341
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226342
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000062], ["value", 2]] [shard 1744 master]
|
226343
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226344
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 62[0m [shard 1743 master]
|
226345
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 62]] [shard 1743 master]
|
226346
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 62[0m [shard 1743 master]
|
226347
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" = 17430000000000062 [shard 1744 master]
|
226348
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226349
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226350
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226351
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226352
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226353
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226354
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226355
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226356
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226357
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226358
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226359
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226360
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226361
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226362
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 63], ["value", 1]] [shard 1743 master]
|
226363
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226364
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226365
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000063], ["value", nil]] [shard 1744 master]
|
226366
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226367
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226368
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226369
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 63], ["value", 2]] [shard 1743 master]
|
226370
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226371
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226372
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 63]] [shard 1743 master]
|
226373
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 63 AND (appendages.value IS NOT NULL) [shard 1743 master]
|
226374
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 17430000000000063 AND (appendages.value IS NOT NULL)[0m [shard 1744 master]
|
226375
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 63]] [shard 1743 master]
|
226376
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 63 AND (appendages.value IS NOT NULL)[0m [shard 1743 master]
|
226377
|
+
[1m[35m (0.2ms)[0m SELECT SUM("appendages"."value") AS sum_id FROM "appendages" WHERE "appendages"."user_id" = 17430000000000063 AND (appendages.value IS NOT NULL) [shard 1744 master]
|
226378
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226379
|
+
[1m[35m (0.2ms)[0m ROLLBACK [shard 1743 master]
|
226380
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226381
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226382
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226383
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226384
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226385
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226386
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226387
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226388
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226389
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226390
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226391
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226392
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1744 master]
|
226393
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226394
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226395
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 64 LIMIT 1 [shard 1743 master]
|
226396
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 64], ["value", nil]] [shard 1743 master]
|
226397
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226398
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1[0m [["id", 62]] [shard 1743 master]
|
226399
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 64 LIMIT 1 [shard 1743 master]
|
226400
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226401
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226402
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226403
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226404
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226405
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226406
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226409
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226410
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226411
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226412
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226413
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226414
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000055], ["value", nil]] [shard 1743 master]
|
226415
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226416
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = $1 LIMIT 1[0m [["id", 63]] [shard 1743 master]
|
226417
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 55 LIMIT 1 [shard 1744 master]
|
226418
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226419
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226420
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226421
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226422
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226423
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226424
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226426
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226427
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226428
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226429
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226430
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226431
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226432
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 66], ["value", nil]] [shard 1743 master]
|
226433
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226434
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226435
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000066], ["value", nil]] [shard 1744 master]
|
226436
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226438
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000056], ["value", nil]] [shard 1743 master]
|
226439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226440
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (66)[0m [shard 1743 master]
|
226441
|
+
[1m[35mAppendage Load (0.3ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (66) [shard 1743 master]
|
226442
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (17430000000000066)[0m [shard 1744 master]
|
226443
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (56) [shard 1744 master]
|
226444
|
+
[1m[36mAppendage Load (0.1ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (56)[0m [shard 1744 master]
|
226445
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "appendages" WHERE "appendages"."id" = 64 [shard 1743 master]
|
226446
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226447
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226448
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226449
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226450
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226451
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226452
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226454
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226455
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226456
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226457
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226458
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226459
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226460
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000067], ["value", nil]] [shard 1742 master]
|
226461
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226462
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226463
|
+
[1m[35mSQL (13.5ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 1451], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
|
226464
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226466
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000057], ["value", nil]] [shard 1743 master]
|
226467
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226468
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226469
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17430000000000066], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
|
226470
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226471
|
+
[1m[35mDigit Load (0.2ms)[0m SELECT "digits".* FROM "digits" [shard 1742 master]
|
226472
|
+
[1m[36mAppendage Load (0.3ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (1451)[0m [shard 1742 master]
|
226473
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" IN (66) [shard 1743 master]
|
226474
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (67)[0m [shard 1743 master]
|
226475
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (57) [shard 1744 master]
|
226476
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = 67[0m [shard 1743 master]
|
226477
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226478
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226479
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226480
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226481
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226482
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226483
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226485
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226486
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226487
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226488
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226489
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226491
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
|
226492
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 1452], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
|
226495
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226497
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17420000000001452], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226499
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 1452 LIMIT 1 [shard 1742 master]
|
226500
|
+
[1m[36mDigit Load (0.2ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (1452)[0m [shard 1742 master]
|
226501
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226502
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226503
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226504
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226505
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226506
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226507
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226508
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226509
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226510
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226511
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226512
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226513
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226514
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226515
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000069], ["value", nil]] [shard 1742 master]
|
226516
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226517
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226518
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000059], ["value", nil]] [shard 1742 master]
|
226519
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226521
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
|
226522
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226523
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226524
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 2938], ["value", nil]] [shard 1742 master]
|
226525
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226526
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" [0m [shard 1742 master]
|
226527
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (69) [shard 1743 master]
|
226528
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (59)[0m [shard 1744 master]
|
226529
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (2938) [shard 1742 master]
|
226530
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = 69[0m [shard 1743 master]
|
226531
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226532
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226533
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226534
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226535
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226536
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226537
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226539
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226540
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226543
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226544
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226545
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 70], ["value", nil]] [shard 1743 master]
|
226546
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226547
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226548
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000070], ["value", nil]] [shard 1744 master]
|
226549
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226550
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226551
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17430000000000070], ["value", nil]] [shard 1744 master]
|
226552
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226553
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226554
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 67], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226555
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226558
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 65], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
|
226559
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226560
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226561
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226562
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 17440000000000065], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226563
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226565
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17440000000000066], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226566
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226567
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226568
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000060], ["value", nil]] [shard 1743 master]
|
226569
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226571
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226572
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1744 master]
|
226573
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226574
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226575
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226576
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226577
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 60], ["value", nil]] [shard 1744 master]
|
226578
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226579
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226580
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226581
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 17430000000000068], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
|
226582
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226584
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["appendage_id", 17440000000000067], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1743 master]
|
226585
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226586
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226587
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "digits" ("appendage_id", "created_at", "updated_at", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["appendage_id", 68], ["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1744 master]
|
226588
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226589
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (70) [shard 1743 master]
|
226590
|
+
[1m[36mAppendage Load (0.2ms)[0m [1mSELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (70)[0m [shard 1743 master]
|
226591
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (17430000000000070) [shard 1744 master]
|
226592
|
+
[1m[36mDigit Load (0.2ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (67)[0m [shard 1743 master]
|
226593
|
+
[1m[35mDigit Load (0.3ms)[0m SELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (65, 66) [shard 1744 master]
|
226594
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (60)[0m [shard 1744 master]
|
226595
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."user_id" IN (60) [shard 1744 master]
|
226596
|
+
[1m[36mDigit Load (0.2ms)[0m [1mSELECT "digits".* FROM "digits" WHERE "digits"."appendage_id" IN (67, 68)[0m [shard 1744 master]
|
226597
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "digits" WHERE "digits"."id" = 8 [shard 1743 master]
|
226598
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226599
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226600
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226601
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226602
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226603
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226604
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226606
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226609
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226610
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226612
|
+
[1m[36mSQL (5.5ms)[0m [1mINSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 71], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 1]] [shard 1743 master]
|
226613
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226614
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226615
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 17430000000000071], ["owner_type", "User"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", 2]] [shard 1744 master]
|
226616
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226617
|
+
[1m[35mFeature Load (0.4ms)[0m SELECT "features".* FROM "features" WHERE "features"."owner_id" = 71 AND "features"."owner_type" = 'User' [shard 1743 master]
|
226618
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 71]] [shard 1743 master]
|
226619
|
+
[1m[35mFeature Load (0.2ms)[0m SELECT "features".* FROM "features" WHERE "features"."owner_id" = 71 AND "features"."owner_type" = 'User' [shard 1743 master]
|
226620
|
+
[1m[36mFeature Load (0.5ms)[0m [1mSELECT "features".* FROM "features" WHERE "features"."owner_id" = 17430000000000071 AND "features"."owner_type" = 'User'[0m [shard 1744 master]
|
226621
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226622
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226623
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226624
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226625
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226626
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226627
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226628
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226629
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226630
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226631
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
226632
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226633
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
226634
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226635
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "appendages" ("created_at", "updated_at", "user_id", "value") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", nil], ["value", nil]] [shard 1742 master]
|
226636
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226637
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226638
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "features" ("created_at", "owner_id", "owner_type", "updated_at", "value") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["owner_id", 1456], ["owner_type", "Appendage"], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["value", nil]] [shard 1742 master]
|
226639
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226640
|
+
[1m[36mFeature Load (0.3ms)[0m [1mSELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1[0m [["id", 138]] [shard 1742 master]
|
226641
|
+
[1m[35mAppendage Load (0.2ms)[0m SELECT "appendages".* FROM "appendages" WHERE "appendages"."id" = 1456 LIMIT 1 [shard 1742 master]
|
226642
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226643
|
+
[1m[35m (0.2ms)[0m UPDATE "features" SET "owner_id" = 17430000000000072, "owner_type" = 'User', "updated_at" = '2015-03-10 19:18:08.615368' WHERE "features"."id" = 138 [shard 1742 master]
|
226644
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226645
|
+
[1m[35mFeature Load (0.2ms)[0m SELECT "features".* FROM "features" WHERE "features"."id" = $1 LIMIT 1 [["id", 138]] [shard 1742 master]
|
226646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226647
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226648
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226649
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226650
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226651
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226652
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226653
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226654
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226655
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226656
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226657
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226658
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226659
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226660
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "roots" ("created_at", "updated_at", "user_id") VALUES ($1, $2, $3) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["user_id", 17440000000000063]] [shard 1742 master]
|
226661
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226662
|
+
[1m[36mRoot Load (0.3ms)[0m [1mSELECT "roots".* FROM "roots" WHERE "roots"."id" = $1 LIMIT 1[0m [["id", 68]] [shard 1742 master]
|
226663
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 63 LIMIT 1 [shard 1744 master]
|
226664
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226665
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226666
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226667
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226668
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226669
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226670
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226672
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226673
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226674
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1744 master]
|
226675
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1744 master]
|
226676
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1744 master]
|
226677
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226678
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226679
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226680
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226681
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
226682
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226683
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226684
|
+
[1m[36mSwitchman::Shard Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226685
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226686
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226687
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226688
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226689
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226690
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226691
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226692
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226693
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226694
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226695
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226696
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226697
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226698
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226700
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:19:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:19:08 UTC +00:00]] [shard 1743 master]
|
226701
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226702
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226703
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1743 master]
|
226704
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
226705
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226706
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226707
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226708
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226709
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226710
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226711
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226712
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226713
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
226714
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226715
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226716
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226717
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226718
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226719
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226720
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226721
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226722
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226723
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226724
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226725
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226726
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226727
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226728
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226729
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" IN (1742, 1743) AND (id IN (1743,1744)) [shard 1742 master]
|
226730
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226731
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226732
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226733
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226734
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226735
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226736
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226737
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226738
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226739
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226740
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226741
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226742
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226743
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226744
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226745
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226746
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226747
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226748
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226749
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226750
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226751
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
226752
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226753
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
226754
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226755
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226756
|
+
[1m[36mSwitchman::Shard Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226757
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226758
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226759
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226760
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226761
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226762
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226763
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226764
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226765
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226766
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226767
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226768
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226769
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226770
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226771
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226772
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226773
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226774
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226775
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226776
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226777
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226778
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226779
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226780
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226781
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226782
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226783
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226784
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226785
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226786
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226787
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226788
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226789
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226790
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226791
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226792
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226793
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "19"], ["default", false], ["name", nil]] [shard 1742 master]
|
226794
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226795
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226796
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "19"], ["default", false], ["name", nil]] [shard 1742 master]
|
226797
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226798
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226799
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226800
|
+
[1m[36mSQL (5.7ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
226801
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226802
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226803
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226804
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226805
|
+
[1m[35mSwitchman::Shard Exists (0.1ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226806
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226807
|
+
[1m[35m (5.1ms)[0m COMMIT [shard 1742 master]
|
226808
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226809
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226810
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226811
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226812
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226813
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226814
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226815
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226816
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226817
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226818
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226819
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226820
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226821
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id" [["database_server_id", "20"], ["default", false], ["name", nil]] [shard 1742 master]
|
226822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226823
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226824
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226825
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226826
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226827
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226828
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226829
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226830
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226831
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226832
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226833
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226834
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226835
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226836
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226837
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226838
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226839
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226840
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226841
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226842
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226843
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226844
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226845
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226846
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226847
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226848
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226849
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226850
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226851
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1742 master]
|
226852
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "name") VALUES ($1, $2, $3) RETURNING "id"[0m [["database_server_id", "21"], ["default", false], ["name", nil]] [shard 1742 master]
|
226853
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1742 master]
|
226854
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226855
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226856
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226857
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226858
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226859
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226860
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226861
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226862
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226863
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226864
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226865
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226866
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226867
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226868
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1742 master]
|
226869
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1742 master]
|
226870
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1742 master]
|
226871
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226872
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226873
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
226874
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226875
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226876
|
+
[1m[36mSwitchman::Shard Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226877
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226878
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226879
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226880
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226881
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226882
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226883
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226884
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226885
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226886
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226887
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226888
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226889
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226890
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226891
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226892
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226893
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226894
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226895
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226896
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226897
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226898
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226899
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226900
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226901
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226902
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226903
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226904
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226905
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226906
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226907
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226908
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226909
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226910
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226911
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226912
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226913
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226914
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226915
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226916
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226917
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226918
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226919
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226920
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226921
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226922
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226923
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226924
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226925
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
226926
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226927
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
226928
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
226929
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226930
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226931
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226932
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226933
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226934
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226935
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226936
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226937
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226938
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226939
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226940
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226941
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
226942
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226943
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
226944
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
226945
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
226946
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
226947
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226948
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
226949
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
226950
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
226951
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
226952
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226953
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226954
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226955
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226956
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226957
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226958
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226959
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226960
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226961
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226962
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226963
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226964
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226965
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
226966
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226967
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226968
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226969
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226970
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226971
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
226972
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
226973
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "switchman_shards" [shard 1742 master]
|
226974
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226975
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226976
|
+
[1m[36mSwitchman::Shard Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
226977
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
226978
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226979
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226980
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226981
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
226982
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
226983
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
226984
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
226985
|
+
[1m[35m (0.3ms)[0m COMMIT [shard 1742 master]
|
226986
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226987
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
226988
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
226989
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
226990
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
226991
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
226992
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
226993
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
226994
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = 1743 LIMIT 1[0m [shard 1742 master]
|
226995
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (77) LIMIT 1 [shard 1743 master]
|
226996
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
226997
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
226998
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
226999
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227000
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227001
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227002
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227003
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
227004
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:08 UTC +00:00]] [shard 1743 master]
|
227005
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
227006
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 78 LIMIT 1[0m [shard 1743 master]
|
227007
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227008
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
227009
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
227010
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227011
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227012
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227013
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
227014
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
227015
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
|
227016
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
227017
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
227018
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = $1[0m [["id", 79]] [shard 1743 master]
|
227019
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
227020
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 17430000000000079 LIMIT 1[0m [shard 1743 master]
|
227021
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227022
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
227023
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
227024
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227025
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227026
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227027
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227028
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
227029
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
|
227030
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
227031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1744 master]
|
227032
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", "multi-shard exists"], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1744 master]
|
227033
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1744 master]
|
227034
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" [0m [shard 1742 master]
|
227035
|
+
[1m[35mUser Exists (0.5ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1742 master]
|
227036
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1[0m [shard 1743 master]
|
227037
|
+
[1m[35mUser Exists (0.4ms)[0m SELECT 1 AS one FROM "users" WHERE "users"."name" = 'multi-shard exists' LIMIT 1 [shard 1744 master]
|
227038
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227039
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
227040
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227041
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227042
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227043
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227044
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227045
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1 [shard 1743 master]
|
227046
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
|
227047
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1 [shard 1743 master]
|
227048
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."id" = 81 LIMIT 1[0m [shard 1743 master]
|
227049
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227050
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1743 master]
|
227051
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
227052
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227053
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227054
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227055
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227056
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m [shard 1743 master]
|
227057
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "mirror_user_id", "name", "parent_id", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00], ["mirror_user_id", nil], ["name", nil], ["parent_id", nil], ["updated_at", Tue, 10 Mar 2015 19:18:09 UTC +00:00]] [shard 1743 master]
|
227058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m [shard 1743 master]
|
227059
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 82]] [shard 1743 master]
|
227060
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227061
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1743 master]
|
227062
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
227063
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227064
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227065
|
+
[1m[35mSwitchman::Shard Exists (0.2ms)[0m SELECT 1 AS one FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227066
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", nil], ["default", true], ["id", 1742], ["name", nil]] [shard 1742 master]
|
227067
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
227068
|
+
[1m[36mSwitchman::Shard Load (0.3ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227069
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
227070
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["database_server_id", "test"], ["default", false], ["id", 1743], ["name", "switchman_test_shard_1743"]] [shard 1742 master]
|
227071
|
+
[1m[35m (0.2ms)[0m COMMIT [shard 1742 master]
|
227072
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227073
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "switchman_shards" ("database_server_id", "default", "id", "name") VALUES ($1, $2, $3, $4) RETURNING "id" [["database_server_id", "1"], ["default", false], ["id", 1744], ["name", "switchman_test_shard_1744"]] [shard 1742 master]
|
227074
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m [shard 1742 master]
|
227075
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
227076
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227077
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227078
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227079
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227080
|
+
[1m[36mSwitchman::Shard Load (1.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<1743) OR (id>=1744 AND id<1745)) ORDER BY id[0m [shard 1742 master]
|
227081
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227082
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
227083
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
227084
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227085
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227086
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227087
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227088
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<1743))[0m [shard 1742 master]
|
227089
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1744 master]
|
227090
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
227091
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1742 master]
|
227092
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227093
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227094
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227095
|
+
[1m[35m (0.1ms)[0m BEGIN [shard 1744 master]
|
227096
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE ('f')[0m [shard 1742 master]
|
227097
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227098
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
227099
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
227100
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227101
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227102
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227103
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227104
|
+
[1m[36mSwitchman::Shard Load (0.4ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<=1743)) AND (id NOT IN (1742))[0m [shard 1742 master]
|
227105
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1744 master]
|
227106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1742 master]
|
227107
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1742 master]
|
227108
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1[0m [shard 1742 master]
|
227109
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1743]] [shard 1742 master]
|
227110
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1744]] [shard 1742 master]
|
227111
|
+
[1m[35m (0.0ms)[0m BEGIN [shard 1744 master]
|
227112
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1742))[0m [shard 1742 master]
|
227113
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "switchman_shards" [shard 1742 master]
|
227114
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227115
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
227116
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227117
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227118
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227119
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227120
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227121
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1743 AND id<=1743)) AND (id NOT IN (1742)) [shard 1742 master]
|
227122
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227123
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
227124
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227125
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227126
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227127
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227128
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227129
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id<=1743)) ORDER BY id [shard 1742 master]
|
227130
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227131
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
227132
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227133
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227134
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227135
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227136
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227137
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id NOT IN (1742)) [shard 1742 master]
|
227138
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227139
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
227140
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227141
|
+
[1m[35mSwitchman::Shard Load (0.3ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227142
|
+
[1m[36mSwitchman::Shard Load (0.2ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227143
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227144
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227145
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE (id IN (1742)) [shard 1742 master]
|
227146
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227147
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
227148
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227149
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227150
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227151
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227152
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227153
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1743)) ORDER BY id [shard 1742 master]
|
227154
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227155
|
+
[1m[35m (0.1ms)[0m ROLLBACK [shard 1742 master]
|
227156
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1742 master]
|
227157
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227158
|
+
[1m[36mSwitchman::Shard Load (0.1ms)[0m [1mSELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1[0m [["id", 1743]] [shard 1742 master]
|
227159
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."id" = $1 LIMIT 1 [["id", 1744]] [shard 1742 master]
|
227160
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m [shard 1744 master]
|
227161
|
+
[1m[35mSwitchman::Shard Load (0.2ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE ((id>=1742 AND id<=1743)) ORDER BY id [shard 1742 master]
|
227162
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m [shard 1744 master]
|
227163
|
+
[1m[35m (0.0ms)[0m ROLLBACK [shard 1742 master]
|
227164
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards"[0m [shard 1742 master]
|
227165
|
+
[1m[35mSwitchman::Shard Load (0.1ms)[0m SELECT "switchman_shards".* FROM "switchman_shards" WHERE "switchman_shards"."default" = 't' LIMIT 1 [shard 1742 master]
|
227166
|
+
[1m[36m (6.2ms)[0m [1mDROP SCHEMA switchman_test_shard_1743 CASCADE[0m [shard 1743 deploy]
|
227167
|
+
[1m[35m (0.1ms)[0m BEGIN
|
227168
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1[0m [["id", 1743]]
|
227169
|
+
[1m[35m (0.1ms)[0m COMMIT
|
227170
|
+
[1m[36m (6.1ms)[0m [1mDROP SCHEMA switchman_test_shard_1744 CASCADE[0m [shard 1744 deploy]
|
227171
|
+
[1m[35m (0.2ms)[0m BEGIN
|
227172
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "switchman_shards" WHERE "switchman_shards"."id" = $1[0m [["id", 1744]]
|
227173
|
+
[1m[35m (0.1ms)[0m COMMIT
|