marks 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +1 -0
  3. data/Rakefile +37 -0
  4. data/app/models/marks/mark.rb +8 -0
  5. data/db/migrate/20121116121923_create_marks_marks.rb +11 -0
  6. data/lib/marks.rb +13 -0
  7. data/lib/marks/engine.rb +5 -0
  8. data/lib/marks/markable.rb +22 -0
  9. data/lib/marks/marker.rb +31 -0
  10. data/lib/marks/version.rb +3 -0
  11. data/lib/tasks/marks_tasks.rake +4 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/models/reply.rb +3 -0
  19. data/test/dummy/app/models/user.rb +3 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/config.ru +4 -0
  22. data/test/dummy/config/application.rb +59 -0
  23. data/test/dummy/config/boot.rb +10 -0
  24. data/test/dummy/config/database.yml +25 -0
  25. data/test/dummy/config/environment.rb +5 -0
  26. data/test/dummy/config/environments/development.rb +37 -0
  27. data/test/dummy/config/environments/production.rb +67 -0
  28. data/test/dummy/config/environments/test.rb +37 -0
  29. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy/config/initializers/inflections.rb +15 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/secret_token.rb +7 -0
  33. data/test/dummy/config/initializers/session_store.rb +8 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +5 -0
  36. data/test/dummy/config/routes.rb +58 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20121116121913_create_users.rb +7 -0
  39. data/test/dummy/db/migrate/20121116121922_create_replies.rb +7 -0
  40. data/test/dummy/db/schema.rb +36 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/development.log +179 -0
  43. data/test/dummy/log/test.log +1102 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/marks_test.rb +22 -0
  50. data/test/test_helper.rb +15 -0
  51. metadata +173 -0
Binary file
@@ -0,0 +1,7 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.timestamps
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateReplies < ActiveRecord::Migration
2
+ def change
3
+ create_table :replies do |t|
4
+ t.timestamps
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,36 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20121116121923) do
15
+
16
+ create_table "marks_marks", :force => true do |t|
17
+ t.integer "marker_id"
18
+ t.string "marker_type"
19
+ t.integer "markable_id"
20
+ t.string "markable_type"
21
+ t.string "type"
22
+ t.datetime "created_at", :null => false
23
+ t.datetime "updated_at", :null => false
24
+ end
25
+
26
+ create_table "replies", :force => true do |t|
27
+ t.datetime "created_at", :null => false
28
+ t.datetime "updated_at", :null => false
29
+ end
30
+
31
+ create_table "users", :force => true do |t|
32
+ t.datetime "created_at", :null => false
33
+ t.datetime "updated_at", :null => false
34
+ end
35
+
36
+ end
File without changes
@@ -0,0 +1,179 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.1ms) select sqlite_version(*)
5
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
+ Migrating to CreateUsers (20121116121913)
9
+  (0.0ms) begin transaction
10
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
11
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')
12
+  (0.8ms) commit transaction
13
+ Migrating to CreateReplies (20121116121922)
14
+  (0.0ms) begin transaction
15
+  (0.3ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
16
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')
17
+  (0.9ms) commit transaction
18
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
19
+ Connecting to database specified by database.yml
20
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
21
+ Migrating to CreateUsers (20121116121913)
22
+ Migrating to CreateReplies (20121116121922)
23
+  (0.0ms) select sqlite_version(*)
24
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
25
+ Connecting to database specified by database.yml
26
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
27
+ Migrating to CreateUsers (20121116121913)
28
+ Migrating to CreateReplies (20121116121922)
29
+ Migrating to CreateMarksMarks (20121116122448)
30
+  (0.0ms) select sqlite_version(*)
31
+  (0.0ms) begin transaction
32
+  (0.4ms) CREATE TABLE "marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116122448')
34
+  (2.5ms) commit transaction
35
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
36
+ Connecting to database specified by database.yml
37
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
38
+  (0.2ms) select sqlite_version(*)
39
+  (2.5ms) CREATE TABLE "marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
40
+  (0.9ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
41
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
42
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
43
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
44
+  (0.1ms) SELECT version FROM "schema_migrations"
45
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116122448')
46
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
47
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
48
+ Connecting to database specified by database.yml
49
+ Connecting to database specified by database.yml
50
+  (0.1ms) select sqlite_version(*)
51
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
52
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
54
+ Migrating to CreateUsers (20121116121913)
55
+  (0.0ms) begin transaction
56
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
57
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')
58
+  (0.9ms) commit transaction
59
+ Migrating to CreateReplies (20121116121922)
60
+  (0.0ms) begin transaction
61
+  (0.3ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
62
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')
63
+  (0.8ms) commit transaction
64
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
65
+ Connecting to database specified by database.yml
66
+  (0.1ms) SELECT version FROM schema_migrations
67
+ Connecting to database specified by database.yml
68
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
69
+ Migrating to CreateUsers (20121116121913)
70
+ Migrating to CreateReplies (20121116121922)
71
+ Migrating to CreateMarksMarks (20121116123958)
72
+  (0.0ms) select sqlite_version(*)
73
+  (0.0ms) begin transaction
74
+  (0.4ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
75
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116123958')
76
+  (2.4ms) commit transaction
77
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
78
+ Connecting to database specified by database.yml
79
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
80
+  (0.2ms) select sqlite_version(*)
81
+  (2.6ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
82
+  (1.0ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
83
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
84
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
85
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86
+  (0.1ms) SELECT version FROM "schema_migrations"
87
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116123958')
88
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
89
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
90
+ Connecting to database specified by database.yml
91
+  (1.6ms) select sqlite_version(*)
92
+  (1.3ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
93
+  (1.0ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
94
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
95
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
96
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
97
+  (0.1ms) SELECT version FROM "schema_migrations"
98
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116123958')
99
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
100
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
101
+ Connecting to database specified by database.yml
102
+  (1.2ms) select sqlite_version(*)
103
+  (1.3ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
104
+  (1.0ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
105
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
106
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
107
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
108
+  (0.1ms) SELECT version FROM "schema_migrations"
109
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116123958')
110
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
111
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
112
+ Connecting to database specified by database.yml
113
+  (1.5ms) select sqlite_version(*)
114
+  (1.2ms) DROP TABLE "marks_marks"
115
+  (1.2ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
116
+  (1.1ms) DROP TABLE "replies"
117
+  (1.0ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
118
+  (0.9ms) DROP TABLE "users"
119
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
120
+  (0.1ms) SELECT version FROM "schema_migrations"
121
+  (4.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
122
+ Connecting to database specified by database.yml
123
+ Connecting to database specified by database.yml
124
+  (0.2ms) select sqlite_version(*)
125
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
126
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
127
+ Connecting to database specified by database.yml
128
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
129
+ Migrating to CreateUsers (20121116121913)
130
+  (0.0ms) select sqlite_version(*)
131
+  (0.0ms) begin transaction
132
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
133
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')
134
+  (0.6ms) commit transaction
135
+ Migrating to CreateReplies (20121116121922)
136
+  (0.0ms) begin transaction
137
+  (0.5ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
138
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')
139
+  (0.7ms) commit transaction
140
+ Migrating to CreateMarksMarks (20121116121923)
141
+  (0.0ms) begin transaction
142
+  (0.4ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
143
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121116121923')
144
+  (0.6ms) commit transaction
145
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
146
+ Connecting to database specified by database.yml
147
+  (1.4ms) select sqlite_version(*)
148
+  (2.7ms) DROP TABLE "marks_marks"
149
+  (1.1ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
150
+  (1.0ms) DROP TABLE "replies"
151
+  (0.9ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
152
+  (1.0ms) DROP TABLE "users"
153
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
154
+  (0.1ms) SELECT version FROM "schema_migrations"
155
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
156
+ Connecting to database specified by database.yml
157
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
158
+  (0.2ms) select sqlite_version(*)
159
+  (3.1ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
160
+  (0.9ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
161
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
162
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
163
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
164
+  (0.1ms) SELECT version FROM "schema_migrations"
165
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121923')
166
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
167
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
168
+ Connecting to database specified by database.yml
169
+  (1.2ms) select sqlite_version(*)
170
+  (1.0ms) CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
171
+  (0.8ms) CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
172
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
173
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
174
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
175
+  (0.1ms) SELECT version FROM "schema_migrations"
176
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121923')
177
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
178
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
179
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
@@ -0,0 +1,1102 @@
1
+ Connecting to database specified by database.yml
2
+  (0.2ms) begin transaction
3
+  (0.0ms) rollback transaction
4
+ Connecting to database specified by database.yml
5
+  (0.3ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+ Connecting to database specified by database.yml
8
+  (0.3ms) begin transaction
9
+  (0.0ms) rollback transaction
10
+ Connecting to database specified by database.yml
11
+  (0.3ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+ Connecting to database specified by database.yml
14
+  (0.3ms) begin transaction
15
+  (0.0ms) rollback transaction
16
+ Connecting to database specified by database.yml
17
+  (0.4ms) begin transaction
18
+  (0.0ms) SAVEPOINT active_record_1
19
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00]]
20
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21
+  (0.0ms) SAVEPOINT active_record_1
22
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00]]
23
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24
+  (1.8ms) rollback transaction
25
+ Connecting to database specified by database.yml
26
+  (0.3ms) begin transaction
27
+  (0.0ms) SAVEPOINT active_record_1
28
+ SQL (7.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00]]
29
+  (0.1ms) RELEASE SAVEPOINT active_record_1
30
+  (0.1ms) SAVEPOINT active_record_1
31
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00]]
32
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33
+  (1.7ms) rollback transaction
34
+ Connecting to database specified by database.yml
35
+  (0.4ms) begin transaction
36
+  (0.0ms) SAVEPOINT active_record_1
37
+ SQL (7.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00]]
38
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39
+  (0.1ms) SAVEPOINT active_record_1
40
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00]]
41
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42
+  (1.7ms) rollback transaction
43
+ Connecting to database specified by database.yml
44
+  (0.3ms) begin transaction
45
+  (0.0ms) SAVEPOINT active_record_1
46
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00]]
47
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48
+  (0.1ms) SAVEPOINT active_record_1
49
+ SQL (0.7ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00]]
50
+  (0.0ms) RELEASE SAVEPOINT active_record_1
51
+  (1.6ms) rollback transaction
52
+ Connecting to database specified by database.yml
53
+  (0.3ms) begin transaction
54
+  (0.0ms) SAVEPOINT active_record_1
55
+ SQL (6.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00]]
56
+  (0.1ms) RELEASE SAVEPOINT active_record_1
57
+  (0.1ms) SAVEPOINT active_record_1
58
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00]]
59
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60
+  (1.9ms) rollback transaction
61
+ Connecting to database specified by database.yml
62
+  (0.4ms) begin transaction
63
+  (0.0ms) SAVEPOINT active_record_1
64
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00]]
65
+  (0.1ms) RELEASE SAVEPOINT active_record_1
66
+  (0.1ms) SAVEPOINT active_record_1
67
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00]]
68
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69
+  (1.8ms) rollback transaction
70
+ Connecting to database specified by database.yml
71
+  (0.3ms) begin transaction
72
+  (0.0ms) SAVEPOINT active_record_1
73
+ SQL (6.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00]]
74
+  (0.1ms) RELEASE SAVEPOINT active_record_1
75
+  (0.1ms) SAVEPOINT active_record_1
76
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00]]
77
+  (0.0ms) RELEASE SAVEPOINT active_record_1
78
+  (1.4ms) rollback transaction
79
+ Connecting to database specified by database.yml
80
+  (0.3ms) begin transaction
81
+  (0.0ms) SAVEPOINT active_record_1
82
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00]]
83
+  (0.1ms) RELEASE SAVEPOINT active_record_1
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00]]
86
+  (0.0ms) RELEASE SAVEPOINT active_record_1
87
+  (2.0ms) rollback transaction
88
+ Connecting to database specified by database.yml
89
+  (0.3ms) begin transaction
90
+  (0.0ms) SAVEPOINT active_record_1
91
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00]]
92
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93
+  (0.1ms) SAVEPOINT active_record_1
94
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00]]
95
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96
+  (0.3ms) rollback transaction
97
+ Connecting to database specified by database.yml
98
+  (0.3ms) begin transaction
99
+  (0.0ms) SAVEPOINT active_record_1
100
+ SQL (4.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00]]
101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
102
+  (0.1ms) SAVEPOINT active_record_1
103
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00]]
104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105
+  (0.3ms) rollback transaction
106
+ Connecting to database specified by database.yml
107
+  (0.4ms) begin transaction
108
+  (0.1ms) SAVEPOINT active_record_1
109
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00]]
110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111
+  (0.0ms) SAVEPOINT active_record_1
112
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00]]
113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
114
+  (0.5ms) rollback transaction
115
+ Connecting to database specified by database.yml
116
+  (0.3ms) begin transaction
117
+  (0.0ms) SAVEPOINT active_record_1
118
+ SQL (5.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:23 UTC +00:00]]
119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
120
+  (0.1ms) SAVEPOINT active_record_1
121
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:24 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:24 UTC +00:00]]
122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
123
+ Marks::Mark Exists (0.1ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
124
+  (0.4ms) rollback transaction
125
+ Connecting to database specified by database.yml
126
+  (0.4ms) begin transaction
127
+  (0.0ms) SAVEPOINT active_record_1
128
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
130
+  (0.1ms) SAVEPOINT active_record_1
131
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
133
+ Marks::Mark Exists (0.2ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
134
+  (0.1ms) SAVEPOINT active_record_1
135
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
136
+  (0.1ms) RELEASE SAVEPOINT active_record_1
137
+ Marks::Mark Exists (0.1ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
138
+  (0.5ms) rollback transaction
139
+ Connecting to database specified by database.yml
140
+  (0.3ms) begin transaction
141
+  (0.0ms) SAVEPOINT active_record_1
142
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
144
+  (0.0ms) SAVEPOINT active_record_1
145
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
147
+ Marks::Mark Exists (0.2ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Cheerup' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
148
+  (0.1ms) SAVEPOINT active_record_1
149
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Cheerup"], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
151
+ Marks::Mark Exists (0.1ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Cheerup' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
152
+  (0.4ms) rollback transaction
153
+  (0.1ms) begin transaction
154
+  (0.0ms) SAVEPOINT active_record_1
155
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
157
+  (0.0ms) SAVEPOINT active_record_1
158
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
160
+ Marks::Mark Exists (0.1ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
161
+  (0.0ms) SAVEPOINT active_record_1
162
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
164
+ Marks::Mark Exists (0.1ms) SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
165
+  (0.4ms) rollback transaction
166
+ Connecting to database specified by database.yml
167
+  (0.3ms) begin transaction
168
+  (0.0ms) SAVEPOINT active_record_1
169
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00]]
170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
171
+  (0.1ms) SAVEPOINT active_record_1
172
+ SQL (28.7ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00]]
173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
174
+  (0.5ms) rollback transaction
175
+ Connecting to database specified by database.yml
176
+  (0.4ms) begin transaction
177
+  (0.0ms) SAVEPOINT active_record_1
178
+ SQL (6.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00]]
179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
180
+  (0.1ms) SAVEPOINT active_record_1
181
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00]]
182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
183
+  (1.7ms) rollback transaction
184
+ Connecting to database specified by database.yml
185
+  (0.4ms) begin transaction
186
+  (0.0ms) SAVEPOINT active_record_1
187
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00]]
188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189
+  (0.1ms) SAVEPOINT active_record_1
190
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00]]
191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
192
+  (1.8ms) rollback transaction
193
+ Connecting to database specified by database.yml
194
+  (0.4ms) begin transaction
195
+  (0.0ms) SAVEPOINT active_record_1
196
+ SQL (6.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00]]
197
+  (0.1ms) RELEASE SAVEPOINT active_record_1
198
+  (0.1ms) SAVEPOINT active_record_1
199
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00]]
200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
201
+  (1.8ms) rollback transaction
202
+ Connecting to database specified by database.yml
203
+  (0.3ms) begin transaction
204
+  (0.0ms) SAVEPOINT active_record_1
205
+ SQL (6.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00]]
206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
207
+  (0.1ms) SAVEPOINT active_record_1
208
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00]]
209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
210
+  (1.7ms) rollback transaction
211
+ Connecting to database specified by database.yml
212
+  (0.4ms) begin transaction
213
+  (0.1ms) SAVEPOINT active_record_1
214
+ SQL (5.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00]]
215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
216
+  (0.1ms) SAVEPOINT active_record_1
217
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00]]
218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
219
+  (1.8ms) rollback transaction
220
+ Connecting to database specified by database.yml
221
+  (0.4ms) begin transaction
222
+  (0.0ms) SAVEPOINT active_record_1
223
+ SQL (4.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00]]
224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
225
+  (0.1ms) SAVEPOINT active_record_1
226
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00]]
227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
228
+  (1.9ms) rollback transaction
229
+ Connecting to database specified by database.yml
230
+  (0.3ms) begin transaction
231
+  (0.0ms) SAVEPOINT active_record_1
232
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00]]
233
+  (0.1ms) RELEASE SAVEPOINT active_record_1
234
+  (0.1ms) SAVEPOINT active_record_1
235
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00]]
236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237
+  (1.8ms) rollback transaction
238
+ Connecting to database specified by database.yml
239
+  (0.4ms) begin transaction
240
+  (0.0ms) SAVEPOINT active_record_1
241
+ SQL (4.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00]]
242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
243
+  (0.0ms) SAVEPOINT active_record_1
244
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00]]
245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
246
+  (1.7ms) rollback transaction
247
+ Connecting to database specified by database.yml
248
+  (0.3ms) begin transaction
249
+  (0.0ms) SAVEPOINT active_record_1
250
+ SQL (4.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00]]
251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
252
+  (0.0ms) SAVEPOINT active_record_1
253
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00]]
254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
255
+  (1.9ms) rollback transaction
256
+ Connecting to database specified by database.yml
257
+  (0.3ms) begin transaction
258
+  (0.0ms) SAVEPOINT active_record_1
259
+ SQL (5.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00]]
260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
261
+  (0.0ms) SAVEPOINT active_record_1
262
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00]]
263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
264
+  (0.7ms) rollback transaction
265
+ Connecting to database specified by database.yml
266
+  (0.4ms) begin transaction
267
+  (0.0ms) SAVEPOINT active_record_1
268
+ SQL (4.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00]]
269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
270
+  (0.0ms) SAVEPOINT active_record_1
271
+ SQL (0.7ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00]]
272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
273
+  (1.7ms) rollback transaction
274
+ Connecting to database specified by database.yml
275
+  (0.3ms) begin transaction
276
+  (0.0ms) SAVEPOINT active_record_1
277
+ SQL (5.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00]]
278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279
+  (0.0ms) SAVEPOINT active_record_1
280
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00]]
281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282
+  (1.7ms) rollback transaction
283
+ Connecting to database specified by database.yml
284
+  (0.3ms) begin transaction
285
+  (0.1ms) SAVEPOINT active_record_1
286
+ SQL (5.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00]]
287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
288
+  (0.1ms) SAVEPOINT active_record_1
289
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00]]
290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
291
+  (0.5ms) rollback transaction
292
+ Connecting to database specified by database.yml
293
+  (0.3ms) begin transaction
294
+  (0.0ms) SAVEPOINT active_record_1
295
+ SQL (7.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00]]
296
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297
+  (0.1ms) SAVEPOINT active_record_1
298
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00]]
299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
300
+  (1.7ms) rollback transaction
301
+ Connecting to database specified by database.yml
302
+  (0.3ms) begin transaction
303
+  (0.0ms) SAVEPOINT active_record_1
304
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00]]
305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306
+  (0.1ms) SAVEPOINT active_record_1
307
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00]]
308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
309
+  (1.8ms) rollback transaction
310
+ Connecting to database specified by database.yml
311
+  (0.4ms) begin transaction
312
+  (0.0ms) SAVEPOINT active_record_1
313
+ SQL (6.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00]]
314
+  (0.1ms) RELEASE SAVEPOINT active_record_1
315
+  (0.1ms) SAVEPOINT active_record_1
316
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00]]
317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
318
+  (1.5ms) rollback transaction
319
+ Connecting to database specified by database.yml
320
+  (0.5ms) begin transaction
321
+  (0.0ms) SAVEPOINT active_record_1
322
+ SQL (6.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00]]
323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
324
+  (0.1ms) SAVEPOINT active_record_1
325
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00]]
326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
327
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
328
+  (1.7ms) rollback transaction
329
+ Connecting to database specified by database.yml
330
+  (0.3ms) begin transaction
331
+  (0.0ms) SAVEPOINT active_record_1
332
+ SQL (6.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
334
+  (0.1ms) SAVEPOINT active_record_1
335
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
337
+  (0.1ms) SAVEPOINT active_record_1
338
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
340
+  (0.2ms) rollback transaction
341
+ Connecting to database specified by database.yml
342
+  (0.3ms) begin transaction
343
+  (0.0ms) SAVEPOINT active_record_1
344
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00]]
345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
346
+  (0.1ms) SAVEPOINT active_record_1
347
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00]]
348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
349
+  (1.8ms) rollback transaction
350
+ Connecting to database specified by database.yml
351
+  (0.3ms) begin transaction
352
+  (0.1ms) SAVEPOINT active_record_1
353
+ SQL (6.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00]]
354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
355
+  (0.1ms) SAVEPOINT active_record_1
356
+ SQL (0.7ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00]]
357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
358
+  (0.4ms) rollback transaction
359
+ Connecting to database specified by database.yml
360
+  (0.4ms) begin transaction
361
+  (0.0ms) SAVEPOINT active_record_1
362
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00]]
363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
364
+  (0.1ms) SAVEPOINT active_record_1
365
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00]]
366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
367
+  (1.8ms) rollback transaction
368
+ Connecting to database specified by database.yml
369
+  (0.3ms) begin transaction
370
+  (0.0ms) SAVEPOINT active_record_1
371
+ SQL (5.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
373
+  (0.0ms) SAVEPOINT active_record_1
374
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
376
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
377
+  (0.5ms) rollback transaction
378
+  (0.2ms) begin transaction
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
382
+  (0.0ms) SAVEPOINT active_record_1
383
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
385
+  (0.2ms) rollback transaction
386
+ Connecting to database specified by database.yml
387
+  (0.3ms) begin transaction
388
+  (0.0ms) SAVEPOINT active_record_1
389
+ SQL (4.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
391
+  (0.1ms) SAVEPOINT active_record_1
392
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
394
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
395
+  (1.5ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+  (0.0ms) SAVEPOINT active_record_1
398
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
400
+  (0.0ms) SAVEPOINT active_record_1
401
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
403
+  (0.4ms) rollback transaction
404
+ Connecting to database specified by database.yml
405
+  (0.4ms) begin transaction
406
+  (0.0ms) SAVEPOINT active_record_1
407
+ SQL (5.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00]]
408
+  (0.1ms) RELEASE SAVEPOINT active_record_1
409
+  (0.1ms) SAVEPOINT active_record_1
410
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00]]
411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
412
+  (1.8ms) rollback transaction
413
+ Connecting to database specified by database.yml
414
+  (0.5ms) begin transaction
415
+  (0.1ms) SAVEPOINT active_record_1
416
+ SQL (6.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
418
+  (0.1ms) SAVEPOINT active_record_1
419
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
421
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
422
+  (0.3ms) rollback transaction
423
+  (0.1ms) begin transaction
424
+  (0.0ms) SAVEPOINT active_record_1
425
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
427
+  (0.0ms) SAVEPOINT active_record_1
428
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
430
+  (0.4ms) rollback transaction
431
+ Connecting to database specified by database.yml
432
+  (0.3ms) begin transaction
433
+  (0.0ms) SAVEPOINT active_record_1
434
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
436
+  (0.1ms) SAVEPOINT active_record_1
437
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
439
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
440
+  (1.8ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+  (0.0ms) SAVEPOINT active_record_1
443
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
445
+  (0.0ms) SAVEPOINT active_record_1
446
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
448
+  (0.3ms) rollback transaction
449
+ Connecting to database specified by database.yml
450
+  (0.3ms) begin transaction
451
+  (0.0ms) SAVEPOINT active_record_1
452
+ SQL (6.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
454
+  (0.1ms) SAVEPOINT active_record_1
455
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
457
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
458
+  (0.3ms) rollback transaction
459
+  (0.1ms) begin transaction
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
463
+  (0.0ms) SAVEPOINT active_record_1
464
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
466
+  (1.4ms) rollback transaction
467
+ Connecting to database specified by database.yml
468
+  (0.3ms) begin transaction
469
+  (0.0ms) SAVEPOINT active_record_1
470
+ SQL (6.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
472
+  (0.1ms) SAVEPOINT active_record_1
473
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
475
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
476
+  (0.2ms) rollback transaction
477
+  (0.1ms) begin transaction
478
+  (0.0ms) SAVEPOINT active_record_1
479
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
481
+  (0.0ms) SAVEPOINT active_record_1
482
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
484
+  (0.4ms) rollback transaction
485
+ Connecting to database specified by database.yml
486
+  (0.4ms) begin transaction
487
+  (0.1ms) SAVEPOINT active_record_1
488
+ SQL (7.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
490
+  (0.1ms) SAVEPOINT active_record_1
491
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
493
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
494
+  (0.3ms) rollback transaction
495
+  (0.1ms) begin transaction
496
+  (0.0ms) SAVEPOINT active_record_1
497
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
499
+  (0.0ms) SAVEPOINT active_record_1
500
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
502
+  (0.5ms) rollback transaction
503
+ Connecting to database specified by database.yml
504
+  (0.3ms) begin transaction
505
+  (0.0ms) SAVEPOINT active_record_1
506
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
508
+  (0.1ms) SAVEPOINT active_record_1
509
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
511
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
512
+  (1.7ms) rollback transaction
513
+  (0.1ms) begin transaction
514
+  (0.0ms) SAVEPOINT active_record_1
515
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
516
+  (0.1ms) RELEASE SAVEPOINT active_record_1
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
520
+  (0.4ms) rollback transaction
521
+ Connecting to database specified by database.yml
522
+  (0.3ms) begin transaction
523
+  (0.0ms) SAVEPOINT active_record_1
524
+ SQL (6.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
526
+  (0.1ms) SAVEPOINT active_record_1
527
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
530
+  (1.8ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+  (0.0ms) SAVEPOINT active_record_1
533
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
535
+  (0.0ms) SAVEPOINT active_record_1
536
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
538
+  (0.4ms) rollback transaction
539
+ Connecting to database specified by database.yml
540
+  (0.3ms) begin transaction
541
+  (0.0ms) SAVEPOINT active_record_1
542
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
544
+  (0.1ms) SAVEPOINT active_record_1
545
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
547
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
548
+  (1.7ms) rollback transaction
549
+  (0.1ms) begin transaction
550
+  (0.0ms) SAVEPOINT active_record_1
551
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
553
+  (0.0ms) SAVEPOINT active_record_1
554
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
556
+  (0.4ms) rollback transaction
557
+ Connecting to database specified by database.yml
558
+  (0.3ms) begin transaction
559
+  (0.0ms) SAVEPOINT active_record_1
560
+ SQL (5.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
562
+  (0.1ms) SAVEPOINT active_record_1
563
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
565
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
566
+  (0.2ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+  (0.0ms) SAVEPOINT active_record_1
569
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
571
+  (0.0ms) SAVEPOINT active_record_1
572
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
574
+  (0.4ms) rollback transaction
575
+ Connecting to database specified by database.yml
576
+  (0.3ms) begin transaction
577
+  (0.1ms) SAVEPOINT active_record_1
578
+ SQL (10.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
580
+  (0.0ms) SAVEPOINT active_record_1
581
+ SQL (0.9ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
583
+  (0.4ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
584
+  (0.3ms) rollback transaction
585
+  (0.1ms) begin transaction
586
+  (0.0ms) SAVEPOINT active_record_1
587
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
589
+  (0.0ms) SAVEPOINT active_record_1
590
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
592
+  (0.4ms) rollback transaction
593
+ Connecting to database specified by database.yml
594
+  (0.4ms) begin transaction
595
+  (0.0ms) SAVEPOINT active_record_1
596
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
598
+  (0.1ms) SAVEPOINT active_record_1
599
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
601
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
602
+  (1.4ms) rollback transaction
603
+  (0.1ms) begin transaction
604
+  (0.0ms) SAVEPOINT active_record_1
605
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
607
+  (0.0ms) SAVEPOINT active_record_1
608
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
610
+  (0.4ms) rollback transaction
611
+ Connecting to database specified by database.yml
612
+  (0.3ms) begin transaction
613
+  (0.0ms) SAVEPOINT active_record_1
614
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
616
+  (0.1ms) SAVEPOINT active_record_1
617
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
619
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
620
+  (1.8ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+  (0.0ms) SAVEPOINT active_record_1
623
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
625
+  (0.0ms) SAVEPOINT active_record_1
626
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
628
+  (0.4ms) rollback transaction
629
+ Connecting to database specified by database.yml
630
+  (0.3ms) begin transaction
631
+  (0.0ms) SAVEPOINT active_record_1
632
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
634
+  (0.1ms) SAVEPOINT active_record_1
635
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
637
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
638
+  (1.7ms) rollback transaction
639
+  (0.1ms) begin transaction
640
+  (0.0ms) SAVEPOINT active_record_1
641
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
643
+  (0.0ms) SAVEPOINT active_record_1
644
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
646
+  (0.4ms) rollback transaction
647
+ Connecting to database specified by database.yml
648
+  (0.3ms) begin transaction
649
+  (0.0ms) SAVEPOINT active_record_1
650
+ SQL (6.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
652
+  (0.1ms) SAVEPOINT active_record_1
653
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
655
+  (1.8ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+  (0.0ms) SAVEPOINT active_record_1
658
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
660
+  (0.0ms) SAVEPOINT active_record_1
661
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
663
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
664
+  (0.5ms) rollback transaction
665
+ Connecting to database specified by database.yml
666
+  (0.4ms) begin transaction
667
+  (0.0ms) SAVEPOINT active_record_1
668
+ SQL (4.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
669
+  (0.1ms) RELEASE SAVEPOINT active_record_1
670
+  (0.1ms) SAVEPOINT active_record_1
671
+ SQL (0.7ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
673
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
674
+  (0.2ms) rollback transaction
675
+  (0.1ms) begin transaction
676
+  (0.0ms) SAVEPOINT active_record_1
677
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
679
+  (0.0ms) SAVEPOINT active_record_1
680
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
682
+  (0.4ms) rollback transaction
683
+ Connecting to database specified by database.yml
684
+  (0.3ms) begin transaction
685
+  (0.0ms) SAVEPOINT active_record_1
686
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
688
+  (0.1ms) SAVEPOINT active_record_1
689
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
691
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
692
+  (1.7ms) rollback transaction
693
+  (0.1ms) begin transaction
694
+  (0.0ms) SAVEPOINT active_record_1
695
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
696
+  (0.1ms) RELEASE SAVEPOINT active_record_1
697
+  (0.0ms) SAVEPOINT active_record_1
698
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
700
+  (0.4ms) rollback transaction
701
+ Connecting to database specified by database.yml
702
+  (0.3ms) begin transaction
703
+  (0.0ms) SAVEPOINT active_record_1
704
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
706
+  (0.1ms) SAVEPOINT active_record_1
707
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
709
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
710
+  (1.8ms) rollback transaction
711
+  (0.1ms) begin transaction
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
715
+  (0.0ms) SAVEPOINT active_record_1
716
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
718
+  (0.4ms) rollback transaction
719
+ Connecting to database specified by database.yml
720
+  (0.8ms) begin transaction
721
+  (0.0ms) SAVEPOINT active_record_1
722
+ SQL (5.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
723
+  (0.1ms) RELEASE SAVEPOINT active_record_1
724
+  (0.0ms) SAVEPOINT active_record_1
725
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
727
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
728
+  (0.5ms) rollback transaction
729
+  (0.1ms) begin transaction
730
+  (0.0ms) SAVEPOINT active_record_1
731
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
733
+  (0.0ms) SAVEPOINT active_record_1
734
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
736
+  (0.4ms) rollback transaction
737
+ Connecting to database specified by database.yml
738
+  (0.3ms) begin transaction
739
+  (0.0ms) SAVEPOINT active_record_1
740
+ SQL (7.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:18 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:18 UTC +00:00]]
741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
742
+  (0.1ms) SAVEPOINT active_record_1
743
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
745
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
746
+  (0.2ms) rollback transaction
747
+  (0.1ms) begin transaction
748
+  (0.0ms) SAVEPOINT active_record_1
749
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
751
+  (0.0ms) SAVEPOINT active_record_1
752
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
754
+  (0.4ms) rollback transaction
755
+ Connecting to database specified by database.yml
756
+  (0.3ms) begin transaction
757
+  (0.0ms) SAVEPOINT active_record_1
758
+ SQL (6.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
760
+  (0.1ms) SAVEPOINT active_record_1
761
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
763
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
764
+  (0.2ms) rollback transaction
765
+  (0.1ms) begin transaction
766
+  (0.0ms) SAVEPOINT active_record_1
767
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
769
+  (0.0ms) SAVEPOINT active_record_1
770
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
772
+  (0.4ms) rollback transaction
773
+ Connecting to database specified by database.yml
774
+  (0.3ms) begin transaction
775
+  (0.0ms) SAVEPOINT active_record_1
776
+ SQL (4.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
778
+  (0.1ms) SAVEPOINT active_record_1
779
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (1.5ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+  (0.0ms) SAVEPOINT active_record_1
784
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
786
+  (0.0ms) SAVEPOINT active_record_1
787
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
789
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
790
+  (1.3ms) rollback transaction
791
+ Connecting to database specified by database.yml
792
+  (0.3ms) begin transaction
793
+  (0.0ms) SAVEPOINT active_record_1
794
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
796
+  (0.0ms) SAVEPOINT active_record_1
797
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
799
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
800
+  (1.7ms) rollback transaction
801
+  (0.1ms) begin transaction
802
+  (0.0ms) SAVEPOINT active_record_1
803
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
805
+  (0.0ms) SAVEPOINT active_record_1
806
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
808
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
809
+  (0.4ms) rollback transaction
810
+ Connecting to database specified by database.yml
811
+  (0.3ms) begin transaction
812
+  (0.1ms) SAVEPOINT active_record_1
813
+ SQL (7.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
815
+  (0.1ms) SAVEPOINT active_record_1
816
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
818
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
819
+  (0.2ms) rollback transaction
820
+  (0.0ms) begin transaction
821
+  (0.0ms) SAVEPOINT active_record_1
822
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
824
+  (0.0ms) SAVEPOINT active_record_1
825
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
827
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
828
+  (0.5ms) rollback transaction
829
+ Connecting to database specified by database.yml
830
+  (0.4ms) begin transaction
831
+  (0.0ms) SAVEPOINT active_record_1
832
+ SQL (6.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
834
+  (0.1ms) SAVEPOINT active_record_1
835
+ SQL (0.6ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
836
+  (0.1ms) RELEASE SAVEPOINT active_record_1
837
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
838
+  (0.4ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+  (0.0ms) SAVEPOINT active_record_1
841
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
843
+  (0.0ms) SAVEPOINT active_record_1
844
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
846
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
847
+  (0.5ms) rollback transaction
848
+ Connecting to database specified by database.yml
849
+  (0.4ms) begin transaction
850
+  (0.0ms) SAVEPOINT active_record_1
851
+ SQL (5.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
853
+  (0.1ms) SAVEPOINT active_record_1
854
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
856
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
857
+  (1.4ms) rollback transaction
858
+  (0.1ms) begin transaction
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
862
+  (0.0ms) SAVEPOINT active_record_1
863
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
865
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
866
+  (0.5ms) rollback transaction
867
+ Connecting to database specified by database.yml
868
+  (0.4ms) begin transaction
869
+  (0.0ms) SAVEPOINT active_record_1
870
+ SQL (4.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
872
+  (0.1ms) SAVEPOINT active_record_1
873
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
875
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
876
+  (1.8ms) rollback transaction
877
+  (0.1ms) begin transaction
878
+  (0.0ms) SAVEPOINT active_record_1
879
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
884
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
885
+  (0.1ms) SAVEPOINT active_record_1
886
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
888
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
889
+  (0.4ms) rollback transaction
890
+ Connecting to database specified by database.yml
891
+  (0.4ms) begin transaction
892
+  (0.1ms) SAVEPOINT active_record_1
893
+ SQL (5.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
895
+  (0.1ms) SAVEPOINT active_record_1
896
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
898
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
899
+  (0.2ms) rollback transaction
900
+  (0.1ms) begin transaction
901
+  (0.0ms) SAVEPOINT active_record_1
902
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
904
+  (0.0ms) SAVEPOINT active_record_1
905
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
907
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
908
+  (0.1ms) SAVEPOINT active_record_1
909
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
911
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
912
+  (0.2ms) rollback transaction
913
+ Connecting to database specified by database.yml
914
+  (0.3ms) begin transaction
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ SQL (6.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
918
+  (0.1ms) SAVEPOINT active_record_1
919
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
921
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
922
+  (0.1ms) SAVEPOINT active_record_1
923
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
925
+ User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
926
+  (0.5ms) rollback transaction
927
+  (0.1ms) begin transaction
928
+  (0.0ms) SAVEPOINT active_record_1
929
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
931
+  (0.0ms) SAVEPOINT active_record_1
932
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
934
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
935
+  (0.1ms) SAVEPOINT active_record_1
936
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
938
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
939
+  (0.4ms) rollback transaction
940
+ Connecting to database specified by database.yml
941
+  (0.3ms) begin transaction
942
+  (0.0ms) SAVEPOINT active_record_1
943
+ SQL (6.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
945
+  (0.1ms) SAVEPOINT active_record_1
946
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
948
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
949
+  (0.1ms) SAVEPOINT active_record_1
950
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
952
+ User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
953
+  (0.5ms) rollback transaction
954
+  (0.1ms) begin transaction
955
+  (0.0ms) SAVEPOINT active_record_1
956
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
958
+  (0.0ms) SAVEPOINT active_record_1
959
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
961
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
962
+  (0.1ms) SAVEPOINT active_record_1
963
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
965
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
966
+  (0.5ms) rollback transaction
967
+ Connecting to database specified by database.yml
968
+  (0.3ms) begin transaction
969
+  (0.0ms) SAVEPOINT active_record_1
970
+ SQL (4.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
972
+  (0.1ms) SAVEPOINT active_record_1
973
+ SQL (0.5ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
975
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
976
+  (0.1ms) SAVEPOINT active_record_1
977
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
979
+ User Load (0.1ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
980
+  (0.5ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+  (0.0ms) SAVEPOINT active_record_1
983
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
985
+  (0.0ms) SAVEPOINT active_record_1
986
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
988
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
989
+  (0.1ms) SAVEPOINT active_record_1
990
+ SQL (0.4ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
992
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
993
+  (0.5ms) rollback transaction
994
+ Connecting to database specified by database.yml
995
+  (0.3ms) begin transaction
996
+  (0.0ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+  (0.0ms) rollback transaction
999
+ Connecting to database specified by database.yml
1000
+  (0.3ms) begin transaction
1001
+  (0.0ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+  (0.0ms) rollback transaction
1004
+ Connecting to database specified by database.yml
1005
+  (0.3ms) begin transaction
1006
+  (0.0ms) rollback transaction
1007
+  (0.0ms) begin transaction
1008
+  (0.0ms) rollback transaction
1009
+ Connecting to database specified by database.yml
1010
+  (0.4ms) begin transaction
1011
+  (0.1ms) SAVEPOINT active_record_1
1012
+ SQL (7.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+ SQL (1.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1017
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1018
+  (0.1ms) SAVEPOINT active_record_1
1019
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1021
+ User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1022
+  (0.5ms) rollback transaction
1023
+  (0.1ms) begin transaction
1024
+  (0.0ms) SAVEPOINT active_record_1
1025
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.0ms) SAVEPOINT active_record_1
1028
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1030
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1031
+  (0.1ms) SAVEPOINT active_record_1
1032
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
1033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034
+  (0.2ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1035
+  (0.4ms) rollback transaction
1036
+ Connecting to database specified by database.yml
1037
+  (0.3ms) begin transaction
1038
+  (0.1ms) SAVEPOINT active_record_1
1039
+ SQL (10.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1041
+  (0.1ms) SAVEPOINT active_record_1
1042
+ SQL (0.9ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1044
+  (0.5ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1045
+  (0.1ms) SAVEPOINT active_record_1
1046
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1048
+  (0.0ms) SAVEPOINT active_record_1
1049
+ SQL (0.2ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1051
+  (0.1ms) SAVEPOINT active_record_1
1052
+ SQL (0.1ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1054
+ User Load (0.1ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1055
+  (0.5ms) rollback transaction
1056
+  (0.1ms) begin transaction
1057
+  (0.0ms) SAVEPOINT active_record_1
1058
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1060
+  (0.0ms) SAVEPOINT active_record_1
1061
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1063
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1064
+  (0.0ms) SAVEPOINT active_record_1
1065
+ SQL (0.2ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
1066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1067
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1068
+  (0.5ms) rollback transaction
1069
+ Connecting to database specified by database.yml
1070
+  (0.4ms) begin transaction
1071
+  (0.0ms) SAVEPOINT active_record_1
1072
+ SQL (5.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.0ms) SAVEPOINT active_record_1
1075
+ SQL (0.4ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077
+  (0.2ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1078
+  (0.1ms) SAVEPOINT active_record_1
1079
+ SQL (0.5ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1081
+  (0.0ms) SAVEPOINT active_record_1
1082
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1084
+  (0.0ms) SAVEPOINT active_record_1
1085
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1087
+ User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1088
+  (0.1ms) SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
1089
+  (0.5ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+  (0.0ms) SAVEPOINT active_record_1
1092
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1094
+  (0.0ms) SAVEPOINT active_record_1
1095
+ SQL (0.3ms) INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1097
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1098
+  (0.1ms) SAVEPOINT active_record_1
1099
+ SQL (0.3ms) INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
1100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1101
+  (0.1ms) SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
1102
+  (0.2ms) rollback transaction