csv_rails 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +45 -0
  3. data/Rakefile +38 -0
  4. data/lib/active_record/acts/csv.rb +37 -0
  5. data/lib/csv_rails/array.rb +29 -0
  6. data/lib/csv_rails/version.rb +3 -0
  7. data/lib/csv_rails.rb +10 -0
  8. data/lib/tasks/csv_rails_tasks.rake +4 -0
  9. data/test/csv_rails_test.rb +7 -0
  10. data/test/dummy/README.rdoc +261 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +15 -0
  13. data/test/dummy/app/assets/javascripts/users.js +2 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/controllers/users_controller.rb +17 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/helpers/users_helper.rb +2 -0
  20. data/test/dummy/app/models/user.rb +9 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/app/views/users/index.html.erb +2 -0
  23. data/test/dummy/config/application.rb +56 -0
  24. data/test/dummy/config/boot.rb +10 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +67 -0
  29. data/test/dummy/config/environments/test.rb +37 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/inflections.rb +15 -0
  32. data/test/dummy/config/initializers/mime_types.rb +5 -0
  33. data/test/dummy/config/initializers/secret_token.rb +7 -0
  34. data/test/dummy/config/initializers/session_store.rb +8 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/test/dummy/config/locales/en.yml +5 -0
  37. data/test/dummy/config/locales/ja.yml +7 -0
  38. data/test/dummy/config/routes.rb +62 -0
  39. data/test/dummy/config.ru +4 -0
  40. data/test/dummy/db/development.sqlite3 +0 -0
  41. data/test/dummy/db/migrate/20120323112247_create_users.rb +11 -0
  42. data/test/dummy/db/schema.rb +24 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/doc/README_FOR_APP +2 -0
  45. data/test/dummy/log/development.log +81 -0
  46. data/test/dummy/log/production.log +0 -0
  47. data/test/dummy/log/server.log +0 -0
  48. data/test/dummy/log/test.log +1599 -0
  49. data/test/dummy/public/404.html +26 -0
  50. data/test/dummy/public/422.html +26 -0
  51. data/test/dummy/public/500.html +25 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/script/rails +6 -0
  54. data/test/dummy/test/fixtures/users.yml +11 -0
  55. data/test/dummy/test/functional/users_controller_test.rb +22 -0
  56. data/test/dummy/test/unit/helpers/users_helper_test.rb +4 -0
  57. data/test/dummy/test/unit/user_test.rb +71 -0
  58. data/test/test_helper.rb +10 -0
  59. metadata +176 -0
@@ -0,0 +1,1599 @@
1
+ SQL (0.3ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.814576', '2012-03-25 01:31:56.814576')
6
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 01:31:56.852509', '2012-03-25 01:31:56.852509')
7
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.854273', '2012-03-25 01:31:56.854273')
8
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.855837', '2012-03-25 01:31:56.855837')
9
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.857267', '2012-03-25 01:31:56.857267')
10
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.858754', '2012-03-25 01:31:56.858754')
11
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.860215', '2012-03-25 01:31:56.860215')
12
+ SQL (0.2ms)  SELECT name
13
+ FROM sqlite_master
14
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
+ 
16
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.862516', '2012-03-25 01:31:56.862516')
17
+ SQL (0.1ms)  SELECT name
18
+ FROM sqlite_master
19
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
20
+ 
21
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.864308', '2012-03-25 01:31:56.864308')
22
+ SQL (0.1ms)  SELECT name
23
+ FROM sqlite_master
24
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
25
+ 
26
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.865823', '2012-03-25 01:31:56.865823')
27
+ SQL (0.1ms)  SELECT name
28
+ FROM sqlite_master
29
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
30
+ 
31
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.867274', '2012-03-25 01:31:56.867274')
32
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 01:31:56.868173', '2012-03-25 01:31:56.868173')
33
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
34
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:31:56.870151', '2012-03-25 01:31:56.870151')
35
+ SQL (0.1ms) SELECT name
36
+ FROM sqlite_master
37
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
38
+ SQL (0.3ms)  SELECT name
39
+ FROM sqlite_master
40
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
41
+ 
42
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 01:31:58.711985', '2012-03-25 01:31:58.711985')
43
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 01:31:58.750966', '2012-03-25 01:31:58.750966')
44
+ SQL (0.5ms)  SELECT name
45
+ FROM sqlite_master
46
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
47
+ 
48
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.256384', '2012-03-25 01:32:41.256384')
49
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('よしだ', NULL, NULL, '2012-03-25 01:32:41.295691', '2012-03-25 01:32:41.295691')
50
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.297357', '2012-03-25 01:32:41.297357')
51
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.298860', '2012-03-25 01:32:41.298860')
52
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.300270', '2012-03-25 01:32:41.300270')
53
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.301756', '2012-03-25 01:32:41.301756')
54
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.303086', '2012-03-25 01:32:41.303086')
55
+ SQL (0.2ms)  SELECT name
56
+ FROM sqlite_master
57
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
58
+ 
59
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.305306', '2012-03-25 01:32:41.305306')
60
+ SQL (0.1ms)  SELECT name
61
+ FROM sqlite_master
62
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
63
+ 
64
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.307039', '2012-03-25 01:32:41.307039')
65
+ SQL (0.1ms)  SELECT name
66
+ FROM sqlite_master
67
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
68
+ 
69
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.308481', '2012-03-25 01:32:41.308481')
70
+ SQL (0.1ms)  SELECT name
71
+ FROM sqlite_master
72
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
73
+ 
74
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.310027', '2012-03-25 01:32:41.310027')
75
+ AREL (0.1ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('atsushi', 45, 'none', '2012-03-25 01:32:41.310928', '2012-03-25 01:32:41.310928')
76
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (id > 1)
77
+ AREL (0.2ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 29, 'password', '2012-03-25 01:32:41.313014', '2012-03-25 01:32:41.313014')
78
+ SQL (0.1ms) SELECT name
79
+ FROM sqlite_master
80
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
81
+ SQL (0.3ms)  SELECT name
82
+ FROM sqlite_master
83
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
84
+ 
85
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 01:32:43.230864', '2012-03-25 01:32:43.230864')
86
+ Processing by UsersController#index as CSV
87
+ Completed 500 Internal Server Error in 25ms
88
+ AREL (0.3ms) INSERT INTO "users" ("name", "age", "secret", "created_at", "updated_at") VALUES ('yalab', 4, 'secret', '2012-03-25 01:32:43.306901', '2012-03-25 01:32:43.306901')
89
+  (0.1ms) begin transaction
90
+  (0.0ms) rollback transaction
91
+  (0.0ms) begin transaction
92
+  (0.1ms) SAVEPOINT active_record_1
93
+ SQL (24.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:18 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:18 UTC +00:00]]
94
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95
+  (0.0ms) SAVEPOINT active_record_1
96
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:35:18 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:35:18 UTC +00:00]]
97
+  (0.0ms) RELEASE SAVEPOINT active_record_1
98
+  (0.2ms) rollback transaction
99
+  (0.0ms) begin transaction
100
+  (0.0ms) SAVEPOINT active_record_1
101
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103
+  (0.1ms) rollback transaction
104
+  (0.0ms) begin transaction
105
+  (0.0ms) SAVEPOINT active_record_1
106
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108
+  (0.2ms) rollback transaction
109
+  (0.1ms) begin transaction
110
+  (0.0ms) SAVEPOINT active_record_1
111
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
113
+  (0.2ms) rollback transaction
114
+  (0.0ms) begin transaction
115
+  (0.0ms) SAVEPOINT active_record_1
116
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
118
+  (0.2ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+  (0.0ms) SAVEPOINT active_record_1
121
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
123
+ User Load (0.2ms) SELECT "users".* FROM "users" 
124
+  (0.2ms) rollback transaction
125
+  (0.0ms) begin transaction
126
+  (0.0ms) SAVEPOINT active_record_1
127
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
129
+ User Load (0.1ms) SELECT "users".* FROM "users" 
130
+  (0.2ms) rollback transaction
131
+  (0.0ms) begin transaction
132
+  (0.0ms) SAVEPOINT active_record_1
133
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
135
+ User Load (0.2ms) SELECT "users".* FROM "users" 
136
+  (0.3ms) rollback transaction
137
+  (0.1ms) begin transaction
138
+  (0.0ms) SAVEPOINT active_record_1
139
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
140
+  (0.1ms) RELEASE SAVEPOINT active_record_1
141
+ User Load (0.2ms) SELECT "users".* FROM "users" 
142
+  (0.3ms) rollback transaction
143
+  (0.1ms) begin transaction
144
+  (0.1ms) SAVEPOINT active_record_1
145
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
147
+  (0.0ms) SAVEPOINT active_record_1
148
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
150
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
151
+  (0.2ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+  (0.0ms) SAVEPOINT active_record_1
154
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156
+ User Load (0.2ms) SELECT "users".* FROM "users"
157
+  (0.2ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+  (0.1ms) SAVEPOINT active_record_1
160
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
162
+ Processing by UsersController#index as CSV
163
+ User Load (0.2ms) SELECT "users".* FROM "users"
164
+ Rendered text template (0.0ms)
165
+ Sent data (31.4ms)
166
+ Completed 200 OK in 33ms (Views: 33.0ms | ActiveRecord: 0.0ms)
167
+  (0.3ms) rollback transaction
168
+  (0.1ms) begin transaction
169
+  (0.1ms) SAVEPOINT active_record_1
170
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:35:19 UTC +00:00]]
171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
172
+ Processing by UsersController#sjis as CSV
173
+ User Load (0.2ms) SELECT "users".* FROM "users"
174
+ Sent data (0.3ms)
175
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
176
+  (0.2ms) rollback transaction
177
+  (0.1ms) begin transaction
178
+  (0.1ms) rollback transaction
179
+  (0.0ms) begin transaction
180
+  (0.1ms) SAVEPOINT active_record_1
181
+ SQL (24.1ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
183
+  (0.0ms) SAVEPOINT active_record_1
184
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
186
+  (0.2ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+  (0.0ms) SAVEPOINT active_record_1
189
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
191
+  (0.1ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+  (0.0ms) SAVEPOINT active_record_1
194
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
196
+  (0.1ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+  (0.0ms) SAVEPOINT active_record_1
199
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
201
+  (0.1ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+  (0.0ms) SAVEPOINT active_record_1
204
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
206
+  (0.1ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+  (0.0ms) SAVEPOINT active_record_1
209
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
211
+ User Load (0.1ms) SELECT "users".* FROM "users" 
212
+  (0.2ms) rollback transaction
213
+  (0.0ms) begin transaction
214
+  (0.0ms) SAVEPOINT active_record_1
215
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
217
+ User Load (0.1ms) SELECT "users".* FROM "users" 
218
+  (0.2ms) rollback transaction
219
+  (0.0ms) begin transaction
220
+  (0.0ms) SAVEPOINT active_record_1
221
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
223
+ User Load (0.1ms) SELECT "users".* FROM "users" 
224
+  (0.2ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+  (0.0ms) SAVEPOINT active_record_1
227
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
229
+ User Load (0.1ms) SELECT "users".* FROM "users" 
230
+  (0.3ms) rollback transaction
231
+  (0.0ms) begin transaction
232
+  (0.0ms) SAVEPOINT active_record_1
233
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (id > 1)
239
+  (0.2ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+  (0.0ms) SAVEPOINT active_record_1
242
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
244
+ User Load (0.2ms) SELECT "users".* FROM "users"
245
+  (0.2ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+  (0.0ms) SAVEPOINT active_record_1
248
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
250
+ Processing by UsersController#index as CSV
251
+ User Load (0.2ms) SELECT "users".* FROM "users"
252
+ Rendered text template (0.0ms)
253
+ Sent data (30.3ms)
254
+ Completed 200 OK in 32ms (Views: 32.0ms | ActiveRecord: 0.0ms)
255
+  (0.2ms) rollback transaction
256
+  (0.0ms) begin transaction
257
+  (0.0ms) SAVEPOINT active_record_1
258
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:36:45 UTC +00:00]]
259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
260
+ Processing by UsersController#sjis as CSV
261
+ User Load (0.1ms) SELECT "users".* FROM "users"
262
+ Sent data (0.3ms)
263
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
264
+  (0.2ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+  (0.0ms) rollback transaction
267
+  (0.0ms) begin transaction
268
+  (0.1ms) SAVEPOINT active_record_1
269
+ SQL (24.9ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
270
+  (0.1ms) RELEASE SAVEPOINT active_record_1
271
+  (0.0ms) SAVEPOINT active_record_1
272
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
274
+  (0.2ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+  (0.0ms) SAVEPOINT active_record_1
277
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279
+  (0.2ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+  (0.1ms) SAVEPOINT active_record_1
282
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
284
+  (0.2ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+  (0.0ms) SAVEPOINT active_record_1
287
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
289
+  (0.1ms) rollback transaction
290
+  (0.0ms) begin transaction
291
+  (0.0ms) SAVEPOINT active_record_1
292
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
294
+  (0.1ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+  (0.0ms) SAVEPOINT active_record_1
297
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
299
+ User Load (0.1ms) SELECT "users".* FROM "users" 
300
+  (0.2ms) rollback transaction
301
+  (0.0ms) begin transaction
302
+  (0.1ms) SAVEPOINT active_record_1
303
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305
+ User Load (0.1ms) SELECT "users".* FROM "users" 
306
+  (0.2ms) rollback transaction
307
+  (0.1ms) begin transaction
308
+  (0.0ms) SAVEPOINT active_record_1
309
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
311
+ User Load (0.1ms) SELECT "users".* FROM "users" 
312
+  (0.2ms) rollback transaction
313
+  (0.0ms) begin transaction
314
+  (0.0ms) SAVEPOINT active_record_1
315
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+ User Load (0.1ms) SELECT "users".* FROM "users" 
318
+  (0.2ms) rollback transaction
319
+  (0.0ms) begin transaction
320
+  (0.0ms) SAVEPOINT active_record_1
321
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
323
+  (0.0ms) SAVEPOINT active_record_1
324
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
326
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE (id > 1)
327
+  (0.3ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+  (0.0ms) SAVEPOINT active_record_1
330
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
332
+ User Load (0.2ms) SELECT "users".* FROM "users"
333
+  (0.2ms) rollback transaction
334
+  (0.0ms) begin transaction
335
+  (0.0ms) SAVEPOINT active_record_1
336
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
338
+ Processing by UsersController#index as CSV
339
+ User Load (0.2ms) SELECT "users".* FROM "users"
340
+ Rendered text template (0.0ms)
341
+ Sent data (31.6ms)
342
+ Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.0ms)
343
+  (0.3ms) rollback transaction
344
+  (0.0ms) begin transaction
345
+  (0.0ms) SAVEPOINT active_record_1
346
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:37:49 UTC +00:00]]
347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
348
+ Processing by UsersController#sjis as CSV
349
+ User Load (0.2ms) SELECT "users".* FROM "users"
350
+ Sent data (0.3ms)
351
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
352
+  (0.2ms) rollback transaction
353
+  (0.1ms) begin transaction
354
+  (0.1ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+  (0.1ms) SAVEPOINT active_record_1
357
+ SQL (24.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
359
+  (0.0ms) SAVEPOINT active_record_1
360
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
362
+  (0.2ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+  (0.0ms) SAVEPOINT active_record_1
365
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
367
+  (0.1ms) rollback transaction
368
+  (0.0ms) begin transaction
369
+  (0.0ms) SAVEPOINT active_record_1
370
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
372
+  (0.1ms) rollback transaction
373
+  (0.1ms) begin transaction
374
+  (0.0ms) SAVEPOINT active_record_1
375
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
377
+  (0.1ms) rollback transaction
378
+  (0.0ms) begin transaction
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
382
+  (0.3ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+  (0.1ms) SAVEPOINT active_record_1
385
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
387
+ User Load (0.1ms) SELECT "users".* FROM "users" 
388
+  (0.2ms) rollback transaction
389
+  (0.0ms) begin transaction
390
+  (0.0ms) SAVEPOINT active_record_1
391
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
393
+ User Load (0.1ms) SELECT "users".* FROM "users" 
394
+  (0.2ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+  (0.0ms) SAVEPOINT active_record_1
397
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
399
+ User Load (0.1ms) SELECT "users".* FROM "users" 
400
+  (0.2ms) rollback transaction
401
+  (0.0ms) begin transaction
402
+  (0.0ms) SAVEPOINT active_record_1
403
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
405
+ User Load (0.1ms) SELECT "users".* FROM "users" 
406
+ User Load (0.1ms) SELECT "users".* FROM "users"
407
+  (0.2ms) rollback transaction
408
+  (0.0ms) begin transaction
409
+  (0.0ms) SAVEPOINT active_record_1
410
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
412
+  (0.0ms) SAVEPOINT active_record_1
413
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
415
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
416
+  (0.3ms) rollback transaction
417
+  (0.0ms) begin transaction
418
+  (0.0ms) SAVEPOINT active_record_1
419
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
421
+ User Load (0.1ms) SELECT "users".* FROM "users" 
422
+  (0.2ms) rollback transaction
423
+  (0.1ms) begin transaction
424
+  (0.0ms) SAVEPOINT active_record_1
425
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
427
+ Processing by UsersController#index as CSV
428
+ User Load (0.2ms) SELECT "users".* FROM "users" 
429
+ Rendered text template (0.0ms)
430
+ Sent data (31.2ms)
431
+ Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
432
+  (0.3ms) rollback transaction
433
+  (0.0ms) begin transaction
434
+  (0.0ms) SAVEPOINT active_record_1
435
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:40:39 UTC +00:00]]
436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
437
+ Processing by UsersController#sjis as CSV
438
+ User Load (0.2ms) SELECT "users".* FROM "users" 
439
+ Sent data (0.3ms)
440
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
441
+  (0.2ms) rollback transaction
442
+  (0.1ms) begin transaction
443
+  (0.0ms) rollback transaction
444
+  (0.0ms) begin transaction
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ SQL (24.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
448
+  (0.0ms) SAVEPOINT active_record_1
449
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
451
+  (0.2ms) rollback transaction
452
+  (0.0ms) begin transaction
453
+  (0.0ms) SAVEPOINT active_record_1
454
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
456
+  (0.1ms) rollback transaction
457
+  (0.0ms) begin transaction
458
+  (0.0ms) SAVEPOINT active_record_1
459
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
461
+  (0.2ms) rollback transaction
462
+  (0.1ms) begin transaction
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
466
+  (0.2ms) rollback transaction
467
+  (0.0ms) begin transaction
468
+  (0.0ms) SAVEPOINT active_record_1
469
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
471
+  (0.2ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+  (0.1ms) SAVEPOINT active_record_1
474
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
476
+ User Load (0.2ms) SELECT "users".* FROM "users" 
477
+  (0.2ms) rollback transaction
478
+  (0.0ms) begin transaction
479
+  (0.0ms) SAVEPOINT active_record_1
480
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
482
+ User Load (0.1ms) SELECT "users".* FROM "users" 
483
+  (0.2ms) rollback transaction
484
+  (0.0ms) begin transaction
485
+  (0.0ms) SAVEPOINT active_record_1
486
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
488
+ User Load (0.2ms) SELECT "users".* FROM "users" 
489
+  (0.2ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+  (0.0ms) SAVEPOINT active_record_1
492
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
494
+ User Load (0.2ms) SELECT "users".* FROM "users" 
495
+ User Load (0.2ms) SELECT "users".* FROM "users"
496
+  (0.2ms) rollback transaction
497
+  (0.0ms) begin transaction
498
+  (0.0ms) SAVEPOINT active_record_1
499
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
501
+  (0.0ms) SAVEPOINT active_record_1
502
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
504
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (id > 1)
505
+  (0.2ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+  (0.0ms) SAVEPOINT active_record_1
508
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
510
+ User Load (0.1ms) SELECT "users".* FROM "users" 
511
+  (0.2ms) rollback transaction
512
+  (0.1ms) begin transaction
513
+  (0.0ms) SAVEPOINT active_record_1
514
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
516
+ Processing by UsersController#index as CSV
517
+ User Load (0.3ms) SELECT "users".* FROM "users" 
518
+ Rendered text template (0.0ms)
519
+ Sent data (30.7ms)
520
+ Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.0ms)
521
+  (0.3ms) rollback transaction
522
+  (0.0ms) begin transaction
523
+  (0.0ms) SAVEPOINT active_record_1
524
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:41:10 UTC +00:00]]
525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
526
+ Processing by UsersController#sjis as CSV
527
+ User Load (0.2ms) SELECT "users".* FROM "users" 
528
+ Sent data (0.3ms)
529
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
530
+  (0.4ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+  (0.0ms) rollback transaction
533
+  (0.0ms) begin transaction
534
+  (0.1ms) SAVEPOINT active_record_1
535
+ SQL (23.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
537
+  (0.0ms) SAVEPOINT active_record_1
538
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
540
+  (0.2ms) rollback transaction
541
+  (0.0ms) begin transaction
542
+  (0.0ms) SAVEPOINT active_record_1
543
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
545
+  (0.1ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+  (0.0ms) SAVEPOINT active_record_1
548
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
550
+  (0.1ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+  (0.0ms) SAVEPOINT active_record_1
553
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
555
+  (0.1ms) rollback transaction
556
+  (0.0ms) begin transaction
557
+  (0.0ms) SAVEPOINT active_record_1
558
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
560
+  (0.1ms) rollback transaction
561
+  (0.0ms) begin transaction
562
+  (0.0ms) SAVEPOINT active_record_1
563
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
565
+ User Load (0.2ms) SELECT "users".* FROM "users" 
566
+  (0.2ms) rollback transaction
567
+  (0.0ms) begin transaction
568
+  (0.0ms) SAVEPOINT active_record_1
569
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
571
+ User Load (0.1ms) SELECT "users".* FROM "users" 
572
+  (0.2ms) rollback transaction
573
+  (0.1ms) begin transaction
574
+  (0.1ms) SAVEPOINT active_record_1
575
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
577
+ User Load (0.1ms) SELECT "users".* FROM "users" 
578
+  (0.2ms) rollback transaction
579
+  (0.0ms) begin transaction
580
+  (0.0ms) SAVEPOINT active_record_1
581
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
583
+ User Load (0.1ms) SELECT "users".* FROM "users" 
584
+ User Load (0.1ms) SELECT "users".* FROM "users"
585
+  (0.2ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+  (0.0ms) SAVEPOINT active_record_1
588
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
590
+  (0.1ms) SAVEPOINT active_record_1
591
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
593
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE (id > 1)
594
+  (0.4ms) rollback transaction
595
+  (0.1ms) begin transaction
596
+  (0.1ms) SAVEPOINT active_record_1
597
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
599
+ User Load (0.2ms) SELECT "users".* FROM "users" 
600
+  (0.3ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+  (0.0ms) SAVEPOINT active_record_1
603
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
605
+ Processing by UsersController#index as CSV
606
+ User Load (0.2ms) SELECT "users".* FROM "users" 
607
+ Rendered text template (0.0ms)
608
+ Sent data (30.3ms)
609
+ Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
610
+  (0.3ms) rollback transaction
611
+  (0.0ms) begin transaction
612
+  (0.0ms) SAVEPOINT active_record_1
613
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:41:26 UTC +00:00]]
614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
615
+ Processing by UsersController#sjis as CSV
616
+ User Load (0.2ms) SELECT "users".* FROM "users" 
617
+ Sent data (0.3ms)
618
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
619
+  (0.2ms) rollback transaction
620
+  (0.1ms) begin transaction
621
+  (0.0ms) rollback transaction
622
+  (0.1ms) begin transaction
623
+  (0.1ms) SAVEPOINT active_record_1
624
+ SQL (24.8ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
625
+  (0.1ms) RELEASE SAVEPOINT active_record_1
626
+  (0.0ms) SAVEPOINT active_record_1
627
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
629
+  (0.3ms) rollback transaction
630
+  (0.1ms) begin transaction
631
+  (0.1ms) SAVEPOINT active_record_1
632
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
633
+  (0.1ms) RELEASE SAVEPOINT active_record_1
634
+  (0.2ms) rollback transaction
635
+  (0.0ms) begin transaction
636
+  (0.0ms) SAVEPOINT active_record_1
637
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
639
+  (0.2ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+  (0.0ms) SAVEPOINT active_record_1
642
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
644
+  (0.2ms) rollback transaction
645
+  (0.1ms) begin transaction
646
+  (0.0ms) SAVEPOINT active_record_1
647
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
649
+  (0.2ms) rollback transaction
650
+  (0.1ms) begin transaction
651
+  (0.0ms) SAVEPOINT active_record_1
652
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
654
+ User Load (0.1ms) SELECT "users".* FROM "users" 
655
+  (0.2ms) rollback transaction
656
+  (0.0ms) begin transaction
657
+  (0.0ms) SAVEPOINT active_record_1
658
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:17 UTC +00:00]]
659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
660
+ User Load (0.1ms) SELECT "users".* FROM "users" 
661
+  (0.2ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+  (0.0ms) SAVEPOINT active_record_1
664
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
666
+ User Load (0.1ms) SELECT "users".* FROM "users" 
667
+  (0.1ms) rollback transaction
668
+  (0.0ms) begin transaction
669
+  (0.1ms) SAVEPOINT active_record_1
670
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
672
+ User Load (0.1ms) SELECT "users".* FROM "users" 
673
+  (0.1ms) rollback transaction
674
+  (0.0ms) begin transaction
675
+  (0.0ms) SAVEPOINT active_record_1
676
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
678
+  (0.0ms) SAVEPOINT active_record_1
679
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
681
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
682
+  (0.3ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+  (0.0ms) SAVEPOINT active_record_1
685
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
687
+ User Load (0.1ms) SELECT "users".* FROM "users"
688
+  (0.2ms) rollback transaction
689
+  (0.1ms) begin transaction
690
+  (0.0ms) SAVEPOINT active_record_1
691
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
693
+ Processing by UsersController#index as CSV
694
+ User Load (0.2ms) SELECT "users".* FROM "users"
695
+ Rendered text template (0.0ms)
696
+ Sent data (31.9ms)
697
+ Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.0ms)
698
+  (0.3ms) rollback transaction
699
+  (0.0ms) begin transaction
700
+  (0.0ms) SAVEPOINT active_record_1
701
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:42:18 UTC +00:00]]
702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
703
+ Processing by UsersController#sjis as CSV
704
+ User Load (0.2ms) SELECT "users".* FROM "users"
705
+ Sent data (0.4ms)
706
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms)
707
+  (0.3ms) rollback transaction
708
+  (0.1ms) begin transaction
709
+  (0.1ms) rollback transaction
710
+  (0.0ms) begin transaction
711
+  (0.1ms) SAVEPOINT active_record_1
712
+ SQL (26.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
714
+  (0.0ms) SAVEPOINT active_record_1
715
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
717
+  (0.2ms) rollback transaction
718
+  (0.0ms) begin transaction
719
+  (0.0ms) SAVEPOINT active_record_1
720
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
722
+  (0.1ms) rollback transaction
723
+  (0.0ms) begin transaction
724
+  (0.0ms) SAVEPOINT active_record_1
725
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
727
+  (0.2ms) rollback transaction
728
+  (0.0ms) begin transaction
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+  (0.2ms) rollback transaction
733
+  (0.1ms) begin transaction
734
+  (0.1ms) SAVEPOINT active_record_1
735
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
737
+  (0.2ms) rollback transaction
738
+  (0.1ms) begin transaction
739
+  (0.0ms) SAVEPOINT active_record_1
740
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
742
+ User Load (0.1ms) SELECT "users".* FROM "users" 
743
+  (0.2ms) rollback transaction
744
+  (0.0ms) begin transaction
745
+  (0.0ms) SAVEPOINT active_record_1
746
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
748
+ User Load (0.1ms) SELECT "users".* FROM "users" 
749
+  (0.2ms) rollback transaction
750
+  (0.0ms) begin transaction
751
+  (0.0ms) SAVEPOINT active_record_1
752
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
754
+ User Load (0.1ms) SELECT "users".* FROM "users" 
755
+  (0.2ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+  (0.0ms) SAVEPOINT active_record_1
758
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:24 UTC +00:00]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+ User Load (0.1ms) SELECT "users".* FROM "users" 
761
+  (0.1ms) rollback transaction
762
+  (0.0ms) begin transaction
763
+  (0.0ms) SAVEPOINT active_record_1
764
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00]]
765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
766
+  (0.0ms) SAVEPOINT active_record_1
767
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00]]
768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
769
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
770
+  (0.3ms) rollback transaction
771
+  (0.0ms) begin transaction
772
+  (0.0ms) SAVEPOINT active_record_1
773
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00]]
774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
775
+ User Load (0.1ms) SELECT "users".* FROM "users"
776
+  (0.3ms) rollback transaction
777
+  (0.1ms) begin transaction
778
+  (0.0ms) SAVEPOINT active_record_1
779
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+ Processing by UsersController#index as CSV
782
+ User Load (0.2ms) SELECT "users".* FROM "users"
783
+ Rendered text template (0.0ms)
784
+ Sent data (33.3ms)
785
+ Completed 200 OK in 35ms (Views: 35.0ms | ActiveRecord: 0.0ms)
786
+  (0.3ms) rollback transaction
787
+  (0.0ms) begin transaction
788
+  (0.0ms) SAVEPOINT active_record_1
789
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:42:25 UTC +00:00]]
790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
791
+ Processing by UsersController#sjis as CSV
792
+ User Load (0.2ms) SELECT "users".* FROM "users"
793
+ Sent data (0.3ms)
794
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
795
+  (0.2ms) rollback transaction
796
+  (0.1ms) begin transaction
797
+  (0.1ms) rollback transaction
798
+  (0.1ms) begin transaction
799
+  (0.1ms) SAVEPOINT active_record_1
800
+ SQL (26.0ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
801
+  (0.1ms) RELEASE SAVEPOINT active_record_1
802
+  (0.1ms) SAVEPOINT active_record_1
803
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
805
+  (0.2ms) rollback transaction
806
+  (0.0ms) begin transaction
807
+  (0.0ms) SAVEPOINT active_record_1
808
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
810
+  (0.2ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+  (0.0ms) SAVEPOINT active_record_1
813
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
815
+  (0.2ms) rollback transaction
816
+  (0.0ms) begin transaction
817
+  (0.0ms) SAVEPOINT active_record_1
818
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
819
+  (0.1ms) RELEASE SAVEPOINT active_record_1
820
+  (0.2ms) rollback transaction
821
+  (0.1ms) begin transaction
822
+  (0.1ms) SAVEPOINT active_record_1
823
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
825
+  (0.2ms) rollback transaction
826
+  (0.1ms) begin transaction
827
+  (0.0ms) SAVEPOINT active_record_1
828
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
830
+ User Load (0.2ms) SELECT "users".* FROM "users" 
831
+  (0.3ms) rollback transaction
832
+  (0.1ms) begin transaction
833
+  (0.1ms) SAVEPOINT active_record_1
834
+ SQL (0.8ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
836
+ User Load (0.2ms) SELECT "users".* FROM "users" 
837
+  (0.2ms) rollback transaction
838
+  (0.1ms) begin transaction
839
+  (0.0ms) SAVEPOINT active_record_1
840
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
841
+  (0.1ms) RELEASE SAVEPOINT active_record_1
842
+ User Load (0.1ms) SELECT "users".* FROM "users" 
843
+  (0.3ms) rollback transaction
844
+  (0.1ms) begin transaction
845
+  (0.0ms) SAVEPOINT active_record_1
846
+ SQL (0.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
848
+ User Load (0.1ms) SELECT "users".* FROM "users" 
849
+  (0.2ms) rollback transaction
850
+  (0.0ms) begin transaction
851
+  (0.0ms) SAVEPOINT active_record_1
852
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
853
+  (0.1ms) RELEASE SAVEPOINT active_record_1
854
+  (0.1ms) SAVEPOINT active_record_1
855
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
857
+  (0.2ms) rollback transaction
858
+  (0.1ms) begin transaction
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
862
+ User Load (0.1ms) SELECT "users".* FROM "users" 
863
+  (0.2ms) rollback transaction
864
+  (0.1ms) begin transaction
865
+  (0.0ms) SAVEPOINT active_record_1
866
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
868
+ Processing by UsersController#index as CSV
869
+ User Load (0.2ms) SELECT "users".* FROM "users" 
870
+ Rendered text template (0.0ms)
871
+ Sent data (32.2ms)
872
+ Completed 200 OK in 34ms (Views: 33.8ms | ActiveRecord: 0.0ms)
873
+  (0.2ms) rollback transaction
874
+  (0.0ms) begin transaction
875
+  (0.0ms) SAVEPOINT active_record_1
876
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:43:21 UTC +00:00]]
877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
878
+ Processing by UsersController#sjis as CSV
879
+ User Load (0.2ms) SELECT "users".* FROM "users" 
880
+ Sent data (0.3ms)
881
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
882
+  (0.2ms) rollback transaction
883
+  (0.1ms) begin transaction
884
+  (0.0ms) rollback transaction
885
+  (0.0ms) begin transaction
886
+  (0.1ms) SAVEPOINT active_record_1
887
+ SQL (24.8ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
889
+  (0.1ms) SAVEPOINT active_record_1
890
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
892
+  (0.3ms) rollback transaction
893
+  (0.0ms) begin transaction
894
+  (0.0ms) SAVEPOINT active_record_1
895
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
897
+  (0.1ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+  (0.0ms) SAVEPOINT active_record_1
900
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
902
+  (0.1ms) rollback transaction
903
+  (0.0ms) begin transaction
904
+  (0.0ms) SAVEPOINT active_record_1
905
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
907
+  (0.2ms) rollback transaction
908
+  (0.0ms) begin transaction
909
+  (0.0ms) SAVEPOINT active_record_1
910
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
912
+  (0.2ms) rollback transaction
913
+  (0.0ms) begin transaction
914
+  (0.0ms) SAVEPOINT active_record_1
915
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
917
+ User Load (0.1ms) SELECT "users".* FROM "users" 
918
+  (0.2ms) rollback transaction
919
+  (0.0ms) begin transaction
920
+  (0.0ms) SAVEPOINT active_record_1
921
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
923
+ User Load (0.1ms) SELECT "users".* FROM "users" 
924
+  (0.2ms) rollback transaction
925
+  (0.0ms) begin transaction
926
+  (0.0ms) SAVEPOINT active_record_1
927
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
929
+ User Load (0.1ms) SELECT "users".* FROM "users" 
930
+  (0.2ms) rollback transaction
931
+  (0.0ms) begin transaction
932
+  (0.0ms) SAVEPOINT active_record_1
933
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
935
+ User Load (0.1ms) SELECT "users".* FROM "users" 
936
+  (0.1ms) rollback transaction
937
+  (0.0ms) begin transaction
938
+  (0.0ms) SAVEPOINT active_record_1
939
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
941
+  (0.0ms) SAVEPOINT active_record_1
942
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
944
+  (0.1ms) SELECT COUNT(*) FROM "users"
945
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (id > 1)
946
+  (0.3ms) rollback transaction
947
+  (0.0ms) begin transaction
948
+  (0.0ms) SAVEPOINT active_record_1
949
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
951
+ User Load (0.1ms) SELECT "users".* FROM "users" 
952
+  (0.2ms) rollback transaction
953
+  (0.1ms) begin transaction
954
+  (0.0ms) SAVEPOINT active_record_1
955
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
957
+ Processing by UsersController#index as CSV
958
+ User Load (0.2ms) SELECT "users".* FROM "users" 
959
+ Rendered text template (0.0ms)
960
+ Sent data (30.3ms)
961
+ Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
962
+  (0.3ms) rollback transaction
963
+  (0.1ms) begin transaction
964
+  (0.1ms) SAVEPOINT active_record_1
965
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:43:32 UTC +00:00]]
966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
967
+ Processing by UsersController#sjis as CSV
968
+ User Load (0.2ms) SELECT "users".* FROM "users" 
969
+ Sent data (0.3ms)
970
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
971
+  (0.4ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+  (0.0ms) rollback transaction
974
+  (0.0ms) begin transaction
975
+  (0.1ms) SAVEPOINT active_record_1
976
+ SQL (23.9ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
977
+  (0.1ms) RELEASE SAVEPOINT active_record_1
978
+  (0.0ms) SAVEPOINT active_record_1
979
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
981
+  (0.2ms) rollback transaction
982
+  (0.0ms) begin transaction
983
+  (0.0ms) SAVEPOINT active_record_1
984
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
985
+  (0.1ms) RELEASE SAVEPOINT active_record_1
986
+  (0.2ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+  (0.0ms) SAVEPOINT active_record_1
989
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
991
+  (0.1ms) rollback transaction
992
+  (0.0ms) begin transaction
993
+  (0.0ms) SAVEPOINT active_record_1
994
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
996
+  (0.1ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+  (0.0ms) SAVEPOINT active_record_1
999
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.2ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+  (0.0ms) SAVEPOINT active_record_1
1004
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1006
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1007
+  (0.2ms) rollback transaction
1008
+  (0.0ms) begin transaction
1009
+  (0.0ms) SAVEPOINT active_record_1
1010
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1012
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1013
+  (0.2ms) rollback transaction
1014
+  (0.0ms) begin transaction
1015
+  (0.0ms) SAVEPOINT active_record_1
1016
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1018
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1019
+  (0.2ms) rollback transaction
1020
+  (0.1ms) begin transaction
1021
+  (0.0ms) SAVEPOINT active_record_1
1022
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1024
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1025
+  (0.1ms) rollback transaction
1026
+  (0.0ms) begin transaction
1027
+  (0.0ms) SAVEPOINT active_record_1
1028
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1030
+  (0.0ms) SAVEPOINT active_record_1
1031
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033
+ User Load (0.1ms) SELECT "users".* FROM "users"
1034
+  (0.1ms) SELECT COUNT(*) FROM "users" 
1035
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (id > 1)
1036
+  (0.2ms) rollback transaction
1037
+  (0.0ms) begin transaction
1038
+  (0.0ms) SAVEPOINT active_record_1
1039
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1041
+ User Load (0.1ms) SELECT "users".* FROM "users"
1042
+  (0.2ms) rollback transaction
1043
+  (0.1ms) begin transaction
1044
+  (0.0ms) SAVEPOINT active_record_1
1045
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1047
+ Processing by UsersController#index as CSV
1048
+ User Load (0.2ms) SELECT "users".* FROM "users"
1049
+ Rendered text template (0.0ms)
1050
+ Sent data (30.8ms)
1051
+ Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms)
1052
+  (0.3ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+  (0.1ms) SAVEPOINT active_record_1
1055
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:13 UTC +00:00]]
1056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1057
+ Processing by UsersController#sjis as CSV
1058
+ User Load (0.2ms) SELECT "users".* FROM "users"
1059
+ Sent data (0.3ms)
1060
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
1061
+  (0.2ms) rollback transaction
1062
+  (0.1ms) begin transaction
1063
+  (0.0ms) rollback transaction
1064
+  (0.0ms) begin transaction
1065
+  (0.1ms) SAVEPOINT active_record_1
1066
+ SQL (24.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1068
+  (0.1ms) SAVEPOINT active_record_1
1069
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1071
+  (0.2ms) rollback transaction
1072
+  (0.0ms) begin transaction
1073
+  (0.1ms) SAVEPOINT active_record_1
1074
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1076
+  (0.1ms) rollback transaction
1077
+  (0.0ms) begin transaction
1078
+  (0.0ms) SAVEPOINT active_record_1
1079
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1081
+  (0.1ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1086
+  (0.1ms) rollback transaction
1087
+  (0.0ms) begin transaction
1088
+  (0.0ms) SAVEPOINT active_record_1
1089
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1091
+  (0.1ms) rollback transaction
1092
+  (0.0ms) begin transaction
1093
+  (0.0ms) SAVEPOINT active_record_1
1094
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1096
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1097
+  (0.3ms) rollback transaction
1098
+  (0.1ms) begin transaction
1099
+  (0.1ms) SAVEPOINT active_record_1
1100
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1102
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1103
+  (0.2ms) rollback transaction
1104
+  (0.1ms) begin transaction
1105
+  (0.0ms) SAVEPOINT active_record_1
1106
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1108
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1109
+  (0.1ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+  (0.0ms) SAVEPOINT active_record_1
1112
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1114
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1115
+  (0.2ms) rollback transaction
1116
+  (0.0ms) begin transaction
1117
+  (0.0ms) SAVEPOINT active_record_1
1118
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1120
+  (0.0ms) SAVEPOINT active_record_1
1121
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1123
+ User Load (0.1ms) SELECT "users".* FROM "users"
1124
+  (0.2ms) SELECT COUNT(*) FROM "users" 
1125
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (id > 1)
1126
+  (0.2ms) rollback transaction
1127
+  (0.0ms) begin transaction
1128
+  (0.0ms) SAVEPOINT active_record_1
1129
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:25 UTC +00:00]]
1130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1131
+ User Load (0.1ms) SELECT "users".* FROM "users"
1132
+  (0.2ms) rollback transaction
1133
+  (0.1ms) begin transaction
1134
+  (0.0ms) SAVEPOINT active_record_1
1135
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:26 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:26 UTC +00:00]]
1136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1137
+ Processing by UsersController#index as CSV
1138
+ User Load (0.2ms) SELECT "users".* FROM "users"
1139
+ Rendered text template (0.0ms)
1140
+ Sent data (32.2ms)
1141
+ Completed 200 OK in 34ms (Views: 34.0ms | ActiveRecord: 0.0ms)
1142
+  (0.3ms) rollback transaction
1143
+  (0.0ms) begin transaction
1144
+  (0.0ms) SAVEPOINT active_record_1
1145
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:26 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:26 UTC +00:00]]
1146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1147
+ Processing by UsersController#sjis as CSV
1148
+ User Load (0.1ms) SELECT "users".* FROM "users"
1149
+ Sent data (0.3ms)
1150
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
1151
+  (0.2ms) rollback transaction
1152
+  (0.1ms) begin transaction
1153
+  (0.0ms) rollback transaction
1154
+  (0.0ms) begin transaction
1155
+  (0.1ms) SAVEPOINT active_record_1
1156
+ SQL (25.1ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1157
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1158
+  (0.0ms) SAVEPOINT active_record_1
1159
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1161
+  (0.2ms) rollback transaction
1162
+  (0.0ms) begin transaction
1163
+  (0.0ms) SAVEPOINT active_record_1
1164
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1166
+  (0.2ms) rollback transaction
1167
+  (0.0ms) begin transaction
1168
+  (0.0ms) SAVEPOINT active_record_1
1169
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1171
+  (0.2ms) rollback transaction
1172
+  (0.0ms) begin transaction
1173
+  (0.0ms) SAVEPOINT active_record_1
1174
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1176
+  (0.3ms) rollback transaction
1177
+  (0.1ms) begin transaction
1178
+  (0.0ms) SAVEPOINT active_record_1
1179
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1181
+  (0.2ms) rollback transaction
1182
+  (0.0ms) begin transaction
1183
+  (0.0ms) SAVEPOINT active_record_1
1184
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1186
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1187
+  (0.2ms) rollback transaction
1188
+  (0.0ms) begin transaction
1189
+  (0.0ms) SAVEPOINT active_record_1
1190
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1192
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1193
+  (0.1ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+  (0.0ms) SAVEPOINT active_record_1
1196
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1198
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1199
+  (0.3ms) rollback transaction
1200
+  (0.1ms) begin transaction
1201
+  (0.0ms) SAVEPOINT active_record_1
1202
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1204
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1205
+  (0.2ms) rollback transaction
1206
+  (0.0ms) begin transaction
1207
+  (0.0ms) SAVEPOINT active_record_1
1208
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1210
+  (0.0ms) SAVEPOINT active_record_1
1211
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1213
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (age > 39)
1214
+  (0.2ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+  (0.0ms) SAVEPOINT active_record_1
1217
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1219
+ User Load (0.1ms) SELECT "users".* FROM "users"
1220
+  (0.2ms) rollback transaction
1221
+  (0.1ms) begin transaction
1222
+  (0.0ms) SAVEPOINT active_record_1
1223
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1225
+ Processing by UsersController#index as CSV
1226
+ User Load (0.2ms) SELECT "users".* FROM "users"
1227
+ Rendered text template (0.0ms)
1228
+ Sent data (31.0ms)
1229
+ Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms)
1230
+  (0.2ms) rollback transaction
1231
+  (0.0ms) begin transaction
1232
+  (0.0ms) SAVEPOINT active_record_1
1233
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:44:54 UTC +00:00]]
1234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1235
+ Processing by UsersController#sjis as CSV
1236
+ User Load (0.1ms) SELECT "users".* FROM "users"
1237
+ Sent data (0.3ms)
1238
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
1239
+  (0.2ms) rollback transaction
1240
+  (0.1ms) begin transaction
1241
+  (0.0ms) rollback transaction
1242
+  (0.0ms) begin transaction
1243
+  (0.1ms) SAVEPOINT active_record_1
1244
+ SQL (24.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1246
+  (0.1ms) SAVEPOINT active_record_1
1247
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1248
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1249
+  (0.3ms) rollback transaction
1250
+  (0.0ms) begin transaction
1251
+  (0.0ms) SAVEPOINT active_record_1
1252
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1254
+  (0.2ms) rollback transaction
1255
+  (0.0ms) begin transaction
1256
+  (0.0ms) SAVEPOINT active_record_1
1257
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1259
+  (0.1ms) rollback transaction
1260
+  (0.0ms) begin transaction
1261
+  (0.0ms) SAVEPOINT active_record_1
1262
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1264
+  (0.1ms) rollback transaction
1265
+  (0.0ms) begin transaction
1266
+  (0.0ms) SAVEPOINT active_record_1
1267
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1269
+  (0.2ms) rollback transaction
1270
+  (0.0ms) begin transaction
1271
+  (0.0ms) SAVEPOINT active_record_1
1272
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1274
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1275
+  (0.2ms) rollback transaction
1276
+  (0.0ms) begin transaction
1277
+  (0.0ms) SAVEPOINT active_record_1
1278
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1280
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1281
+  (0.2ms) rollback transaction
1282
+  (0.0ms) begin transaction
1283
+  (0.0ms) SAVEPOINT active_record_1
1284
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1285
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1286
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1287
+  (0.2ms) rollback transaction
1288
+  (0.0ms) begin transaction
1289
+  (0.0ms) SAVEPOINT active_record_1
1290
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1292
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1293
+  (0.1ms) rollback transaction
1294
+  (0.0ms) begin transaction
1295
+  (0.0ms) SAVEPOINT active_record_1
1296
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1298
+  (0.0ms) SAVEPOINT active_record_1
1299
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1301
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1302
+  (0.2ms) rollback transaction
1303
+  (0.0ms) begin transaction
1304
+  (0.0ms) SAVEPOINT active_record_1
1305
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1307
+ User Load (0.1ms) SELECT "users".* FROM "users"
1308
+  (0.2ms) rollback transaction
1309
+  (0.1ms) begin transaction
1310
+  (0.0ms) SAVEPOINT active_record_1
1311
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1313
+ User Load (0.1ms) SELECT "users".* FROM "users"
1314
+ Processing by UsersController#index as CSV
1315
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1316
+ Rendered text template (0.0ms)
1317
+ Sent data (31.5ms)
1318
+ Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.0ms)
1319
+  (0.3ms) rollback transaction
1320
+  (0.1ms) begin transaction
1321
+  (0.1ms) SAVEPOINT active_record_1
1322
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:46:30 UTC +00:00]]
1323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1324
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1325
+ Processing by UsersController#sjis as CSV
1326
+ User Load (0.2ms) SELECT "users".* FROM "users"
1327
+ Sent data (0.3ms)
1328
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
1329
+  (0.2ms) rollback transaction
1330
+  (0.1ms) begin transaction
1331
+  (0.0ms) rollback transaction
1332
+  (0.0ms) begin transaction
1333
+  (0.1ms) SAVEPOINT active_record_1
1334
+ SQL (24.8ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1336
+  (0.1ms) SAVEPOINT active_record_1
1337
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1338
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1339
+  (0.2ms) rollback transaction
1340
+  (0.0ms) begin transaction
1341
+  (0.0ms) SAVEPOINT active_record_1
1342
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1344
+  (0.2ms) rollback transaction
1345
+  (0.1ms) begin transaction
1346
+  (0.0ms) SAVEPOINT active_record_1
1347
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1348
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1349
+  (0.2ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+  (0.0ms) SAVEPOINT active_record_1
1352
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1354
+  (0.2ms) rollback transaction
1355
+  (0.0ms) begin transaction
1356
+  (0.0ms) SAVEPOINT active_record_1
1357
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1359
+  (0.1ms) rollback transaction
1360
+  (0.0ms) begin transaction
1361
+  (0.0ms) SAVEPOINT active_record_1
1362
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1364
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1365
+  (0.2ms) rollback transaction
1366
+  (0.1ms) begin transaction
1367
+  (0.0ms) SAVEPOINT active_record_1
1368
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1370
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1371
+  (0.3ms) rollback transaction
1372
+  (0.1ms) begin transaction
1373
+  (0.0ms) SAVEPOINT active_record_1
1374
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1376
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1377
+  (0.2ms) rollback transaction
1378
+  (0.0ms) begin transaction
1379
+  (0.0ms) SAVEPOINT active_record_1
1380
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1382
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1383
+  (0.2ms) rollback transaction
1384
+  (0.0ms) begin transaction
1385
+  (0.0ms) SAVEPOINT active_record_1
1386
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1388
+  (0.0ms) SAVEPOINT active_record_1
1389
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1391
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1392
+  (0.2ms) rollback transaction
1393
+  (0.0ms) begin transaction
1394
+  (0.0ms) SAVEPOINT active_record_1
1395
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1397
+ User Load (0.1ms) SELECT "users".* FROM "users"
1398
+  (0.2ms) rollback transaction
1399
+  (0.1ms) begin transaction
1400
+  (0.0ms) SAVEPOINT active_record_1
1401
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1403
+ User Load (0.1ms) SELECT "users".* FROM "users"
1404
+ Processing by UsersController#index as CSV
1405
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1406
+ Rendered text template (0.0ms)
1407
+ Sent data (30.2ms)
1408
+ Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
1409
+  (0.3ms) rollback transaction
1410
+  (0.0ms) begin transaction
1411
+  (0.0ms) SAVEPOINT active_record_1
1412
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:46:50 UTC +00:00]]
1413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1414
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1415
+ Processing by UsersController#sjis as CSV
1416
+ User Load (0.2ms) SELECT "users".* FROM "users"
1417
+ Sent data (0.3ms)
1418
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
1419
+  (0.2ms) rollback transaction
1420
+  (0.1ms) begin transaction
1421
+  (0.0ms) rollback transaction
1422
+  (0.1ms) begin transaction
1423
+  (0.1ms) SAVEPOINT active_record_1
1424
+ SQL (27.7ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1426
+  (0.0ms) SAVEPOINT active_record_1
1427
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1429
+  (0.2ms) rollback transaction
1430
+  (0.0ms) begin transaction
1431
+  (0.0ms) SAVEPOINT active_record_1
1432
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1434
+  (0.1ms) rollback transaction
1435
+  (0.0ms) begin transaction
1436
+  (0.0ms) SAVEPOINT active_record_1
1437
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1439
+  (0.1ms) rollback transaction
1440
+  (0.0ms) begin transaction
1441
+  (0.0ms) SAVEPOINT active_record_1
1442
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1444
+  (0.2ms) rollback transaction
1445
+  (0.0ms) begin transaction
1446
+  (0.0ms) SAVEPOINT active_record_1
1447
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1449
+  (0.1ms) rollback transaction
1450
+  (0.0ms) begin transaction
1451
+  (0.0ms) SAVEPOINT active_record_1
1452
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1454
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1455
+  (0.2ms) rollback transaction
1456
+  (0.0ms) begin transaction
1457
+  (0.0ms) SAVEPOINT active_record_1
1458
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1460
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1461
+  (0.2ms) rollback transaction
1462
+  (0.0ms) begin transaction
1463
+  (0.0ms) SAVEPOINT active_record_1
1464
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1466
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1467
+  (0.2ms) rollback transaction
1468
+  (0.0ms) begin transaction
1469
+  (0.0ms) SAVEPOINT active_record_1
1470
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1472
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1473
+  (0.2ms) rollback transaction
1474
+  (0.0ms) begin transaction
1475
+  (0.0ms) SAVEPOINT active_record_1
1476
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1478
+  (0.0ms) SAVEPOINT active_record_1
1479
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1481
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (age > 39)
1482
+  (0.2ms) rollback transaction
1483
+  (0.0ms) begin transaction
1484
+  (0.0ms) SAVEPOINT active_record_1
1485
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1487
+ User Load (0.1ms) SELECT "users".* FROM "users"
1488
+  (0.2ms) rollback transaction
1489
+  (0.1ms) begin transaction
1490
+  (0.1ms) SAVEPOINT active_record_1
1491
+ SQL (0.5ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1493
+ User Load (0.1ms) SELECT "users".* FROM "users"
1494
+ Processing by UsersController#index as CSV
1495
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1496
+ Rendered text template (0.0ms)
1497
+ Sent data (33.8ms)
1498
+ Completed 200 OK in 36ms (Views: 35.4ms | ActiveRecord: 0.0ms)
1499
+  (0.4ms) rollback transaction
1500
+  (0.1ms) begin transaction
1501
+  (0.1ms) SAVEPOINT active_record_1
1502
+ SQL (0.6ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:47:15 UTC +00:00]]
1503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1504
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1505
+ Processing by UsersController#sjis as CSV
1506
+ User Load (0.2ms) SELECT "users".* FROM "users"
1507
+ Sent data (0.5ms)
1508
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
1509
+  (0.2ms) rollback transaction
1510
+  (0.1ms) begin transaction
1511
+  (0.0ms) rollback transaction
1512
+  (0.1ms) begin transaction
1513
+  (0.1ms) SAVEPOINT active_record_1
1514
+ SQL (27.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1515
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1516
+  (0.0ms) SAVEPOINT active_record_1
1517
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", nil], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "よしだ"], ["secret", nil], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1519
+  (0.2ms) rollback transaction
1520
+  (0.0ms) begin transaction
1521
+  (0.0ms) SAVEPOINT active_record_1
1522
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1524
+  (0.1ms) rollback transaction
1525
+  (0.0ms) begin transaction
1526
+  (0.0ms) SAVEPOINT active_record_1
1527
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1529
+  (0.1ms) rollback transaction
1530
+  (0.0ms) begin transaction
1531
+  (0.0ms) SAVEPOINT active_record_1
1532
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1534
+  (0.1ms) rollback transaction
1535
+  (0.0ms) begin transaction
1536
+  (0.0ms) SAVEPOINT active_record_1
1537
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1539
+  (0.1ms) rollback transaction
1540
+  (0.0ms) begin transaction
1541
+  (0.0ms) SAVEPOINT active_record_1
1542
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1544
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1545
+  (0.2ms) rollback transaction
1546
+  (0.0ms) begin transaction
1547
+  (0.0ms) SAVEPOINT active_record_1
1548
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1550
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1551
+  (0.2ms) rollback transaction
1552
+  (0.1ms) begin transaction
1553
+  (0.0ms) SAVEPOINT active_record_1
1554
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1556
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1557
+  (0.2ms) rollback transaction
1558
+  (0.0ms) begin transaction
1559
+  (0.0ms) SAVEPOINT active_record_1
1560
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1562
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1563
+  (0.2ms) rollback transaction
1564
+  (0.0ms) begin transaction
1565
+  (0.0ms) SAVEPOINT active_record_1
1566
+ SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1568
+  (0.0ms) SAVEPOINT active_record_1
1569
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 45], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "atsushi"], ["secret", "none"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1571
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (age > 39)
1572
+  (0.2ms) rollback transaction
1573
+  (0.0ms) begin transaction
1574
+  (0.0ms) SAVEPOINT active_record_1
1575
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 29], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "password"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1577
+ User Load (0.1ms) SELECT "users".* FROM "users"
1578
+  (0.2ms) rollback transaction
1579
+  (0.1ms) begin transaction
1580
+  (0.0ms) SAVEPOINT active_record_1
1581
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1583
+ User Load (0.1ms) SELECT "users".* FROM "users"
1584
+ Processing by UsersController#index as CSV
1585
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1586
+ Rendered text template (0.0ms)
1587
+ Sent data (31.3ms)
1588
+ Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
1589
+  (0.3ms) rollback transaction
1590
+  (0.0ms) begin transaction
1591
+  (0.0ms) SAVEPOINT active_record_1
1592
+ SQL (0.4ms) INSERT INTO "users" ("age", "created_at", "name", "secret", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 4], ["created_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00], ["name", "yalab"], ["secret", "secret"], ["updated_at", Sun, 25 Mar 2012 01:47:53 UTC +00:00]]
1593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1594
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1595
+ Processing by UsersController#sjis as CSV
1596
+ User Load (0.2ms) SELECT "users".* FROM "users"
1597
+ Sent data (0.4ms)
1598
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms)
1599
+  (0.3ms) rollback transaction