cachers 4.1.0.2 → 5.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +1 -1
  3. data/README.md +114 -0
  4. data/Rakefile +1 -3
  5. data/lib/cachers.rb +2 -2
  6. data/lib/cachers/concern.rb +3 -2
  7. data/lib/cachers/dsl.rb +1 -1
  8. data/lib/cachers/extensions/active_record/base.rb +1 -1
  9. data/lib/cachers/railtie.rb +0 -6
  10. data/lib/cachers/version.rb +1 -1
  11. data/lib/generators/cachers/install/install_generator.rb +1 -1
  12. data/{test/dummy/config → lib/generators/cachers/install/templates}/redis.yml +0 -0
  13. metadata +17 -114
  14. data/lib/generators/cachers/install/templates/configuration.yml +0 -15
  15. data/test/dummy/Rakefile +0 -5
  16. data/test/dummy/app/assets/javascripts/application.js +0 -13
  17. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  18. data/test/dummy/app/cachers/user_cacher.rb +0 -24
  19. data/test/dummy/app/controllers/application_controller.rb +0 -5
  20. data/test/dummy/app/helpers/application_helper.rb +0 -2
  21. data/test/dummy/app/models/user.rb +0 -2
  22. data/test/dummy/app/views/layouts/application.html.erb +0 -12
  23. data/test/dummy/bin/bundle +0 -4
  24. data/test/dummy/bin/rails +0 -5
  25. data/test/dummy/bin/rake +0 -5
  26. data/test/dummy/bin/setup +0 -30
  27. data/test/dummy/config.ru +0 -4
  28. data/test/dummy/config/application.rb +0 -25
  29. data/test/dummy/config/boot.rb +0 -5
  30. data/test/dummy/config/database.yml +0 -10
  31. data/test/dummy/config/database.yml.travis +0 -3
  32. data/test/dummy/config/environment.rb +0 -5
  33. data/test/dummy/config/environments/development.rb +0 -41
  34. data/test/dummy/config/environments/production.rb +0 -79
  35. data/test/dummy/config/environments/test.rb +0 -42
  36. data/test/dummy/config/initializers/assets.rb +0 -11
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  38. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  39. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  40. data/test/dummy/config/initializers/inflections.rb +0 -16
  41. data/test/dummy/config/initializers/mime_types.rb +0 -4
  42. data/test/dummy/config/initializers/session_store.rb +0 -3
  43. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  44. data/test/dummy/config/locales/en.yml +0 -23
  45. data/test/dummy/config/routes.rb +0 -56
  46. data/test/dummy/config/secrets.yml +0 -22
  47. data/test/dummy/db/migrate/20160918232127_create_users.rb +0 -9
  48. data/test/dummy/db/schema.rb +0 -25
  49. data/test/dummy/log/development.log +0 -21
  50. data/test/dummy/log/test.log +0 -2007
  51. data/test/dummy/public/404.html +0 -61
  52. data/test/dummy/public/422.html +0 -61
  53. data/test/dummy/public/500.html +0 -60
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/generator_test.rb +0 -25
  56. data/test/model_test.rb +0 -27
  57. data/test/record_test.rb +0 -29
  58. data/test/task_test.rb +0 -35
  59. data/test/test_helper.rb +0 -20
@@ -1,4 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new mime types for use in respond_to blocks:
4
- # Mime::Type.register 'text/richtext', :rtf
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,14 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # This file contains settings for ActionController::ParamsWrapper which
4
- # is enabled by default.
5
-
6
- # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
- ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
- end
10
-
11
- # To enable root element in JSON for ActiveRecord objects.
12
- # ActiveSupport.on_load(:active_record) do
13
- # self.include_root_in_json = true
14
- # end
@@ -1,23 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
- en:
23
- hello: "Hello world"
@@ -1,56 +0,0 @@
1
- Rails.application.routes.draw do
2
- # The priority is based upon order of creation: first created -> highest priority.
3
- # See how all your routes lay out with "rake routes".
4
-
5
- # You can have the root of your site routed with "root"
6
- # root 'welcome#index'
7
-
8
- # Example of regular route:
9
- # get 'products/:id' => 'catalog#view'
10
-
11
- # Example of named route that can be invoked with purchase_url(id: product.id)
12
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
-
14
- # Example resource route (maps HTTP verbs to controller actions automatically):
15
- # resources :products
16
-
17
- # Example resource route with options:
18
- # resources :products do
19
- # member do
20
- # get 'short'
21
- # post 'toggle'
22
- # end
23
- #
24
- # collection do
25
- # get 'sold'
26
- # end
27
- # end
28
-
29
- # Example resource route with sub-resources:
30
- # resources :products do
31
- # resources :comments, :sales
32
- # resource :seller
33
- # end
34
-
35
- # Example resource route with more complex sub-resources:
36
- # resources :products do
37
- # resources :comments
38
- # resources :sales do
39
- # get 'recent', on: :collection
40
- # end
41
- # end
42
-
43
- # Example resource route with concerns:
44
- # concern :toggleable do
45
- # post 'toggle'
46
- # end
47
- # resources :posts, concerns: :toggleable
48
- # resources :photos, concerns: :toggleable
49
-
50
- # Example resource route within a namespace:
51
- # namespace :admin do
52
- # # Directs /admin/products/* to Admin::ProductsController
53
- # # (app/controllers/admin/products_controller.rb)
54
- # resources :products
55
- # end
56
- end
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: 2c1c8d4cbaa726b21aa6483b7d556125f4897508e2b94f8b3ddaec675168382c9b3b6eb5a9359d2fade03f539c16ac1ef905891c2410f2fd00b83b76c1666feb
15
-
16
- test:
17
- secret_key_base: 9dd531171128e7c3d11dd2c5c18c84ba43d29b677043002634a6f4d58bf2687a283b7b6dc6af741d63c3824f11fa1f858010d7c2509a932023f2ece0d3bfe6cf
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV['SECRET_KEY_BASE'] %>
@@ -1,9 +0,0 @@
1
- class CreateUsers < ActiveRecord::Migration
2
- def change
3
- create_table :users do |t|
4
- t.string :name
5
-
6
- t.timestamps null: false
7
- end
8
- end
9
- end
@@ -1,25 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended that you check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(version: 20160918232127) do
15
-
16
- # These are extensions that must be enabled in order to support this database
17
- enable_extension "plpgsql"
18
-
19
- create_table "users", force: :cascade do |t|
20
- t.string "name"
21
- t.datetime "created_at", null: false
22
- t.datetime "updated_at", null: false
23
- end
24
-
25
- end
@@ -1,21 +0,0 @@
1
-  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
-  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreateUsers (20160918232127)
5
-  (0.1ms) BEGIN
6
-  (26.6ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
- SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160918232127"]]
8
-  (0.5ms) COMMIT
9
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
11
- FROM pg_constraint c
12
- JOIN pg_class t1 ON c.conrelid = t1.oid
13
- JOIN pg_class t2 ON c.confrelid = t2.oid
14
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
15
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
16
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
17
- WHERE c.contype = 'f'
18
- AND t1.relname = 'users'
19
- AND t3.nspname = ANY (current_schemas(false))
20
- ORDER BY c.conname
21
- 
@@ -1,2007 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (26.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3
-  (0.3ms) BEGIN
4
- ---------------------------
5
- GeneratorsTest: test_cacher
6
- ---------------------------
7
-  (0.2ms) ROLLBACK
8
-  (0.1ms) BEGIN
9
- -------------------
10
- TasksTest: test_all
11
- -------------------
12
-  (0.2ms) SAVEPOINT active_record_1
13
- SQL (24.6ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:37:45.305099"], ["updated_at", "2016-11-21 23:37:45.305099"]]
14
-  (0.2ms) RELEASE SAVEPOINT active_record_1
15
-  (0.1ms) SAVEPOINT active_record_1
16
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-21 23:37:45.333154"], ["updated_at", "2016-11-21 23:37:45.333154"]]
17
-  (0.1ms) RELEASE SAVEPOINT active_record_1
18
- User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
19
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
20
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
21
-  (0.2ms) ROLLBACK
22
-  (0.1ms) BEGIN
23
- --------------------------
24
- RecordTest: test_callbacks
25
- --------------------------
26
-  (0.2ms) SAVEPOINT active_record_1
27
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:37:45.379367"], ["updated_at", "2016-11-21 23:37:45.379367"]]
28
-  (0.1ms) RELEASE SAVEPOINT active_record_1
29
-  (0.1ms) SAVEPOINT active_record_1
30
- SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:37:45.381498"], ["id", 129]]
31
-  (0.1ms) RELEASE SAVEPOINT active_record_1
32
-  (0.1ms) SAVEPOINT active_record_1
33
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 129]]
34
-  (0.1ms) RELEASE SAVEPOINT active_record_1
35
-  (0.1ms) ROLLBACK
36
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
37
-  (0.3ms) BEGIN
38
- --------------------------
39
- RecordTest: test_callbacks
40
- --------------------------
41
-  (0.2ms) SAVEPOINT active_record_1
42
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:39:38.343738"], ["updated_at", "2016-11-21 23:39:38.343738"]]
43
-  (0.2ms) RELEASE SAVEPOINT active_record_1
44
-  (0.2ms) SAVEPOINT active_record_1
45
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:39:38.349483"], ["id", 130]]
46
-  (0.1ms) RELEASE SAVEPOINT active_record_1
47
-  (0.1ms) SAVEPOINT active_record_1
48
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 130]]
49
-  (0.1ms) RELEASE SAVEPOINT active_record_1
50
-  (0.1ms) ROLLBACK
51
-  (0.1ms) BEGIN
52
- ---------------------------
53
- GeneratorsTest: test_cacher
54
- ---------------------------
55
-  (0.2ms) ROLLBACK
56
-  (0.1ms) BEGIN
57
- -------------------
58
- TasksTest: test_all
59
- -------------------
60
-  (0.1ms) SAVEPOINT active_record_1
61
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:39:38.361035"], ["updated_at", "2016-11-21 23:39:38.361035"]]
62
-  (0.1ms) RELEASE SAVEPOINT active_record_1
63
-  (0.1ms) SAVEPOINT active_record_1
64
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-21 23:39:38.362245"], ["updated_at", "2016-11-21 23:39:38.362245"]]
65
-  (0.1ms) RELEASE SAVEPOINT active_record_1
66
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
67
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
68
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
69
-  (0.1ms) ROLLBACK
70
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
71
-  (0.3ms) BEGIN
72
- --------------------------
73
- RecordTest: test_callbacks
74
- --------------------------
75
-  (0.1ms) SAVEPOINT active_record_1
76
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:40:59.697877"], ["updated_at", "2016-11-21 23:40:59.697877"]]
77
-  (0.2ms) RELEASE SAVEPOINT active_record_1
78
-  (0.2ms) SAVEPOINT active_record_1
79
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:40:59.703733"], ["id", 133]]
80
-  (0.1ms) RELEASE SAVEPOINT active_record_1
81
-  (0.1ms) SAVEPOINT active_record_1
82
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 133]]
83
-  (0.1ms) RELEASE SAVEPOINT active_record_1
84
-  (0.3ms) ROLLBACK
85
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
86
-  (0.3ms) BEGIN
87
- --------------------------
88
- RecordTest: test_callbacks
89
- --------------------------
90
-  (0.2ms) SAVEPOINT active_record_1
91
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:41:12.579170"], ["updated_at", "2016-11-21 23:41:12.579170"]]
92
-  (0.2ms) RELEASE SAVEPOINT active_record_1
93
-  (0.1ms) SAVEPOINT active_record_1
94
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:41:12.584483"], ["id", 134]]
95
-  (0.1ms) RELEASE SAVEPOINT active_record_1
96
-  (0.1ms) SAVEPOINT active_record_1
97
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 134]]
98
-  (0.1ms) RELEASE SAVEPOINT active_record_1
99
-  (0.4ms) ROLLBACK
100
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
101
-  (0.3ms) BEGIN
102
- --------------------------
103
- RecordTest: test_callbacks
104
- --------------------------
105
-  (0.2ms) SAVEPOINT active_record_1
106
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:46:12.926685"], ["updated_at", "2016-11-21 23:46:12.926685"]]
107
-  (0.2ms) RELEASE SAVEPOINT active_record_1
108
-  (0.2ms) SAVEPOINT active_record_1
109
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:46:12.933083"], ["id", 135]]
110
-  (0.1ms) RELEASE SAVEPOINT active_record_1
111
-  (0.1ms) SAVEPOINT active_record_1
112
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 135]]
113
-  (0.1ms) RELEASE SAVEPOINT active_record_1
114
-  (0.3ms) ROLLBACK
115
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
116
-  (0.3ms) BEGIN
117
- --------------------------
118
- RecordTest: test_callbacks
119
- --------------------------
120
-  (0.2ms) SAVEPOINT active_record_1
121
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:47:02.820026"], ["updated_at", "2016-11-21 23:47:02.820026"]]
122
-  (0.2ms) RELEASE SAVEPOINT active_record_1
123
-  (0.1ms) SAVEPOINT active_record_1
124
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:47:02.825878"], ["id", 136]]
125
-  (0.1ms) RELEASE SAVEPOINT active_record_1
126
-  (0.2ms) SAVEPOINT active_record_1
127
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 136]]
128
-  (0.1ms) RELEASE SAVEPOINT active_record_1
129
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
130
-  (0.3ms) BEGIN
131
- --------------------------
132
- RecordTest: test_callbacks
133
- --------------------------
134
-  (0.2ms) SAVEPOINT active_record_1
135
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:49:48.460181"], ["updated_at", "2016-11-21 23:49:48.460181"]]
136
-  (0.2ms) RELEASE SAVEPOINT active_record_1
137
-  (0.2ms) SAVEPOINT active_record_1
138
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:49:48.465952"], ["id", 137]]
139
-  (0.1ms) RELEASE SAVEPOINT active_record_1
140
-  (0.1ms) SAVEPOINT active_record_1
141
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 137]]
142
-  (0.1ms) RELEASE SAVEPOINT active_record_1
143
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
144
-  (0.3ms) BEGIN
145
- --------------------------
146
- RecordTest: test_callbacks
147
- --------------------------
148
-  (0.2ms) SAVEPOINT active_record_1
149
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:50:18.893466"], ["updated_at", "2016-11-21 23:50:18.893466"]]
150
-  (0.1ms) RELEASE SAVEPOINT active_record_1
151
-  (0.1ms) SAVEPOINT active_record_1
152
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:50:18.898622"], ["id", 138]]
153
-  (0.1ms) RELEASE SAVEPOINT active_record_1
154
-  (0.1ms) SAVEPOINT active_record_1
155
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 138]]
156
-  (0.1ms) RELEASE SAVEPOINT active_record_1
157
-  (0.3ms) ROLLBACK
158
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
-  (0.3ms) BEGIN
160
- --------------------------
161
- RecordTest: test_callbacks
162
- --------------------------
163
-  (0.2ms) SAVEPOINT active_record_1
164
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:51:12.408206"], ["updated_at", "2016-11-21 23:51:12.408206"]]
165
-  (0.2ms) RELEASE SAVEPOINT active_record_1
166
-  (0.1ms) SAVEPOINT active_record_1
167
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:51:12.418440"], ["id", 139]]
168
-  (0.1ms) RELEASE SAVEPOINT active_record_1
169
-  (0.1ms) SAVEPOINT active_record_1
170
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 139]]
171
-  (0.1ms) RELEASE SAVEPOINT active_record_1
172
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
-  (0.3ms) BEGIN
174
- --------------------------
175
- RecordTest: test_callbacks
176
- --------------------------
177
-  (0.2ms) SAVEPOINT active_record_1
178
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:51:59.372065"], ["updated_at", "2016-11-21 23:51:59.372065"]]
179
-  (0.2ms) RELEASE SAVEPOINT active_record_1
180
-  (0.1ms) SAVEPOINT active_record_1
181
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:51:59.377410"], ["id", 140]]
182
-  (0.1ms) RELEASE SAVEPOINT active_record_1
183
-  (0.1ms) SAVEPOINT active_record_1
184
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 140]]
185
-  (0.1ms) RELEASE SAVEPOINT active_record_1
186
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
187
-  (0.2ms) BEGIN
188
- --------------------------
189
- RecordTest: test_callbacks
190
- --------------------------
191
-  (0.2ms) SAVEPOINT active_record_1
192
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:52:45.648517"], ["updated_at", "2016-11-21 23:52:45.648517"]]
193
-  (0.2ms) RELEASE SAVEPOINT active_record_1
194
-  (0.2ms) SAVEPOINT active_record_1
195
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:52:48.089139"], ["id", 141]]
196
-  (0.1ms) RELEASE SAVEPOINT active_record_1
197
-  (0.1ms) SAVEPOINT active_record_1
198
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 141]]
199
-  (0.1ms) RELEASE SAVEPOINT active_record_1
200
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
201
-  (0.3ms) BEGIN
202
- --------------------------
203
- RecordTest: test_callbacks
204
- --------------------------
205
-  (0.2ms) SAVEPOINT active_record_1
206
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:53:39.062956"], ["updated_at", "2016-11-21 23:53:39.062956"]]
207
-  (0.2ms) RELEASE SAVEPOINT active_record_1
208
-  (0.2ms) SAVEPOINT active_record_1
209
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:53:41.025901"], ["id", 142]]
210
-  (0.1ms) RELEASE SAVEPOINT active_record_1
211
-  (0.1ms) SAVEPOINT active_record_1
212
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 142]]
213
-  (0.1ms) RELEASE SAVEPOINT active_record_1
214
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
215
-  (0.3ms) BEGIN
216
- --------------------------
217
- RecordTest: test_callbacks
218
- --------------------------
219
-  (0.2ms) SAVEPOINT active_record_1
220
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:57:28.969082"], ["updated_at", "2016-11-21 23:57:28.969082"]]
221
-  (0.1ms) RELEASE SAVEPOINT active_record_1
222
-  (0.4ms) ROLLBACK
223
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
-  (0.2ms) BEGIN
225
- --------------------------
226
- RecordTest: test_callbacks
227
- --------------------------
228
-  (0.2ms) SAVEPOINT active_record_1
229
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:57:47.446870"], ["updated_at", "2016-11-21 23:57:47.446870"]]
230
-  (0.1ms) RELEASE SAVEPOINT active_record_1
231
-  (0.3ms) ROLLBACK
232
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
233
-  (0.3ms) BEGIN
234
- --------------------------
235
- RecordTest: test_callbacks
236
- --------------------------
237
-  (0.2ms) SAVEPOINT active_record_1
238
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:59:07.003959"], ["updated_at", "2016-11-21 23:59:07.003959"]]
239
-  (0.1ms) RELEASE SAVEPOINT active_record_1
240
-  (0.3ms) ROLLBACK
241
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
242
-  (0.2ms) BEGIN
243
- --------------------------
244
- RecordTest: test_callbacks
245
- --------------------------
246
-  (0.2ms) SAVEPOINT active_record_1
247
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-21 23:59:24.044279"], ["updated_at", "2016-11-21 23:59:24.044279"]]
248
-  (0.2ms) RELEASE SAVEPOINT active_record_1
249
-  (0.2ms) SAVEPOINT active_record_1
250
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-21 23:59:31.276528"], ["id", 146]]
251
-  (0.1ms) RELEASE SAVEPOINT active_record_1
252
-  (0.2ms) SAVEPOINT active_record_1
253
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 146]]
254
-  (0.1ms) RELEASE SAVEPOINT active_record_1
255
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
256
-  (0.3ms) BEGIN
257
- --------------------------
258
- RecordTest: test_callbacks
259
- --------------------------
260
-  (0.2ms) SAVEPOINT active_record_1
261
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:02:01.530432"], ["updated_at", "2016-11-22 00:02:01.530432"]]
262
-  (0.2ms) RELEASE SAVEPOINT active_record_1
263
-  (0.1ms) SAVEPOINT active_record_1
264
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:02:01.535954"], ["id", 147]]
265
-  (0.1ms) RELEASE SAVEPOINT active_record_1
266
-  (0.1ms) SAVEPOINT active_record_1
267
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 147]]
268
-  (0.1ms) RELEASE SAVEPOINT active_record_1
269
-  (0.1ms) ROLLBACK
270
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
271
-  (0.2ms) BEGIN
272
- --------------------------
273
- RecordTest: test_callbacks
274
- --------------------------
275
-  (0.2ms) SAVEPOINT active_record_1
276
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:02:19.314031"], ["updated_at", "2016-11-22 00:02:19.314031"]]
277
-  (0.2ms) RELEASE SAVEPOINT active_record_1
278
-  (0.2ms) SAVEPOINT active_record_1
279
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:02:27.698301"], ["id", 148]]
280
-  (0.1ms) RELEASE SAVEPOINT active_record_1
281
-  (0.1ms) SAVEPOINT active_record_1
282
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 148]]
283
-  (0.1ms) RELEASE SAVEPOINT active_record_1
284
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
285
-  (0.2ms) BEGIN
286
- --------------------------
287
- RecordTest: test_callbacks
288
- --------------------------
289
-  (0.2ms) SAVEPOINT active_record_1
290
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:03:42.543762"], ["updated_at", "2016-11-22 00:03:42.543762"]]
291
-  (0.1ms) RELEASE SAVEPOINT active_record_1
292
-  (0.2ms) SAVEPOINT active_record_1
293
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:03:46.560535"], ["id", 149]]
294
-  (0.1ms) RELEASE SAVEPOINT active_record_1
295
-  (0.2ms) SAVEPOINT active_record_1
296
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 149]]
297
-  (0.1ms) RELEASE SAVEPOINT active_record_1
298
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
299
-  (0.2ms) BEGIN
300
- --------------------------
301
- RecordTest: test_callbacks
302
- --------------------------
303
-  (0.2ms) SAVEPOINT active_record_1
304
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:06:58.988468"], ["updated_at", "2016-11-22 00:06:58.988468"]]
305
-  (0.2ms) RELEASE SAVEPOINT active_record_1
306
-  (0.2ms) SAVEPOINT active_record_1
307
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:07:07.677416"], ["id", 150]]
308
-  (0.1ms) RELEASE SAVEPOINT active_record_1
309
-  (0.2ms) SAVEPOINT active_record_1
310
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 150]]
311
-  (0.1ms) RELEASE SAVEPOINT active_record_1
312
-  (0.3ms) ROLLBACK
313
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
314
-  (0.3ms) BEGIN
315
- --------------------------
316
- RecordTest: test_callbacks
317
- --------------------------
318
-  (0.2ms) SAVEPOINT active_record_1
319
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:09:29.868739"], ["updated_at", "2016-11-22 00:09:29.868739"]]
320
-  (0.1ms) RELEASE SAVEPOINT active_record_1
321
-  (0.2ms) SAVEPOINT active_record_1
322
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:09:33.803445"], ["id", 151]]
323
-  (0.1ms) RELEASE SAVEPOINT active_record_1
324
-  (0.2ms) SAVEPOINT active_record_1
325
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 151]]
326
-  (0.1ms) RELEASE SAVEPOINT active_record_1
327
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
328
-  (0.3ms) BEGIN
329
- --------------------------
330
- RecordTest: test_callbacks
331
- --------------------------
332
-  (0.2ms) SAVEPOINT active_record_1
333
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:09:56.312834"], ["updated_at", "2016-11-22 00:09:56.312834"]]
334
-  (0.2ms) RELEASE SAVEPOINT active_record_1
335
-  (0.2ms) SAVEPOINT active_record_1
336
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:09:59.881428"], ["id", 152]]
337
-  (0.1ms) RELEASE SAVEPOINT active_record_1
338
-  (0.2ms) SAVEPOINT active_record_1
339
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 152]]
340
-  (0.1ms) RELEASE SAVEPOINT active_record_1
341
-  (0.3ms) ROLLBACK
342
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
343
-  (0.3ms) BEGIN
344
- --------------------------
345
- RecordTest: test_callbacks
346
- --------------------------
347
-  (0.1ms) SAVEPOINT active_record_1
348
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:10:37.784068"], ["updated_at", "2016-11-22 00:10:37.784068"]]
349
-  (0.1ms) RELEASE SAVEPOINT active_record_1
350
-  (0.2ms) SAVEPOINT active_record_1
351
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:10:43.891252"], ["id", 153]]
352
-  (0.1ms) RELEASE SAVEPOINT active_record_1
353
-  (0.1ms) SAVEPOINT active_record_1
354
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 153]]
355
-  (0.1ms) RELEASE SAVEPOINT active_record_1
356
-  (0.3ms) ROLLBACK
357
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
358
-  (0.2ms) BEGIN
359
- --------------------------
360
- RecordTest: test_callbacks
361
- --------------------------
362
-  (0.2ms) SAVEPOINT active_record_1
363
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:11:44.523662"], ["updated_at", "2016-11-22 00:11:44.523662"]]
364
-  (0.2ms) RELEASE SAVEPOINT active_record_1
365
-  (0.2ms) SAVEPOINT active_record_1
366
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:11:47.802533"], ["id", 154]]
367
-  (0.2ms) RELEASE SAVEPOINT active_record_1
368
-  (0.1ms) SAVEPOINT active_record_1
369
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 154]]
370
-  (0.1ms) RELEASE SAVEPOINT active_record_1
371
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
372
-  (0.3ms) BEGIN
373
- --------------------------
374
- RecordTest: test_callbacks
375
- --------------------------
376
-  (0.1ms) SAVEPOINT active_record_1
377
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:14:35.685174"], ["updated_at", "2016-11-22 00:14:35.685174"]]
378
-  (0.2ms) RELEASE SAVEPOINT active_record_1
379
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
380
-  (0.3ms) BEGIN
381
- --------------------------
382
- RecordTest: test_callbacks
383
- --------------------------
384
-  (0.1ms) SAVEPOINT active_record_1
385
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:15:15.077225"], ["updated_at", "2016-11-22 00:15:15.077225"]]
386
-  (0.2ms) RELEASE SAVEPOINT active_record_1
387
-  (0.2ms) SAVEPOINT active_record_1
388
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:15:17.648443"], ["id", 156]]
389
-  (0.1ms) RELEASE SAVEPOINT active_record_1
390
-  (0.2ms) SAVEPOINT active_record_1
391
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 156]]
392
-  (0.1ms) RELEASE SAVEPOINT active_record_1
393
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
394
-  (0.3ms) BEGIN
395
- --------------------------
396
- RecordTest: test_callbacks
397
- --------------------------
398
-  (0.2ms) SAVEPOINT active_record_1
399
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:15:35.278143"], ["updated_at", "2016-11-22 00:15:35.278143"]]
400
-  (0.2ms) RELEASE SAVEPOINT active_record_1
401
-  (0.2ms) SAVEPOINT active_record_1
402
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:15:37.898495"], ["id", 157]]
403
-  (0.1ms) RELEASE SAVEPOINT active_record_1
404
-  (0.1ms) SAVEPOINT active_record_1
405
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 157]]
406
-  (0.1ms) RELEASE SAVEPOINT active_record_1
407
-  (0.3ms) ROLLBACK
408
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
409
-  (0.3ms) BEGIN
410
- --------------------------
411
- RecordTest: test_callbacks
412
- --------------------------
413
-  (0.2ms) SAVEPOINT active_record_1
414
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:17:39.185655"], ["updated_at", "2016-11-22 00:17:39.185655"]]
415
-  (0.2ms) RELEASE SAVEPOINT active_record_1
416
-  (0.1ms) SAVEPOINT active_record_1
417
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:17:42.706545"], ["id", 158]]
418
-  (0.1ms) RELEASE SAVEPOINT active_record_1
419
-  (0.2ms) SAVEPOINT active_record_1
420
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 158]]
421
-  (0.1ms) RELEASE SAVEPOINT active_record_1
422
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
423
-  (0.2ms) BEGIN
424
- --------------------------
425
- RecordTest: test_callbacks
426
- --------------------------
427
-  (0.2ms) SAVEPOINT active_record_1
428
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:20:53.185113"], ["updated_at", "2016-11-22 00:20:53.185113"]]
429
-  (0.2ms) RELEASE SAVEPOINT active_record_1
430
-  (0.1ms) SAVEPOINT active_record_1
431
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:21:08.379630"], ["id", 159]]
432
-  (0.1ms) RELEASE SAVEPOINT active_record_1
433
-  (0.2ms) SAVEPOINT active_record_1
434
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 159]]
435
-  (0.1ms) RELEASE SAVEPOINT active_record_1
436
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
437
-  (0.3ms) BEGIN
438
- --------------------------
439
- RecordTest: test_callbacks
440
- --------------------------
441
-  (0.2ms) SAVEPOINT active_record_1
442
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:22:54.718145"], ["updated_at", "2016-11-22 00:22:54.718145"]]
443
-  (0.2ms) RELEASE SAVEPOINT active_record_1
444
-  (0.2ms) SAVEPOINT active_record_1
445
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:22:58.652088"], ["id", 160]]
446
-  (0.1ms) RELEASE SAVEPOINT active_record_1
447
-  (0.2ms) SAVEPOINT active_record_1
448
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 160]]
449
-  (0.1ms) RELEASE SAVEPOINT active_record_1
450
-  (0.1ms) SAVEPOINT active_record_1
451
-  (0.1ms) RELEASE SAVEPOINT active_record_1
452
-  (0.3ms) ROLLBACK
453
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
-  (0.3ms) BEGIN
455
- --------------------------
456
- RecordTest: test_callbacks
457
- --------------------------
458
-  (0.2ms) SAVEPOINT active_record_1
459
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:25:12.646356"], ["updated_at", "2016-11-22 00:25:12.646356"]]
460
-  (0.2ms) RELEASE SAVEPOINT active_record_1
461
-  (0.2ms) ROLLBACK
462
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
463
-  (0.3ms) BEGIN
464
- --------------------------
465
- RecordTest: test_callbacks
466
- --------------------------
467
-  (0.2ms) SAVEPOINT active_record_1
468
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:28:17.710759"], ["updated_at", "2016-11-22 00:28:17.710759"]]
469
-  (0.2ms) RELEASE SAVEPOINT active_record_1
470
-  (0.2ms) ROLLBACK
471
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
472
-  (0.3ms) BEGIN
473
- --------------------------
474
- RecordTest: test_callbacks
475
- --------------------------
476
-  (0.2ms) SAVEPOINT active_record_1
477
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:30:52.366841"], ["updated_at", "2016-11-22 00:30:52.366841"]]
478
-  (0.2ms) RELEASE SAVEPOINT active_record_1
479
-  (0.1ms) SAVEPOINT active_record_1
480
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:30:58.139785"], ["id", 163]]
481
-  (0.2ms) RELEASE SAVEPOINT active_record_1
482
-  (0.1ms) SAVEPOINT active_record_1
483
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 163]]
484
-  (0.2ms) RELEASE SAVEPOINT active_record_1
485
-  (0.2ms) ROLLBACK
486
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
-  (0.3ms) BEGIN
488
- -------------------
489
- TasksTest: test_all
490
- -------------------
491
-  (0.2ms) SAVEPOINT active_record_1
492
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:32:37.989284"], ["updated_at", "2016-11-22 00:32:37.989284"]]
493
-  (0.1ms) RELEASE SAVEPOINT active_record_1
494
-  (0.1ms) SAVEPOINT active_record_1
495
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 00:32:37.993727"], ["updated_at", "2016-11-22 00:32:37.993727"]]
496
-  (0.1ms) RELEASE SAVEPOINT active_record_1
497
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
498
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
499
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
500
-  (0.2ms) ROLLBACK
501
-  (0.2ms) BEGIN
502
- ---------------------------
503
- GeneratorsTest: test_cacher
504
- ---------------------------
505
-  (0.2ms) ROLLBACK
506
-  (0.1ms) BEGIN
507
- --------------------------
508
- RecordTest: test_callbacks
509
- --------------------------
510
-  (0.1ms) SAVEPOINT active_record_1
511
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:32:38.021371"], ["updated_at", "2016-11-22 00:32:38.021371"]]
512
-  (0.1ms) RELEASE SAVEPOINT active_record_1
513
-  (0.1ms) SAVEPOINT active_record_1
514
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:32:38.023126"], ["id", 166]]
515
-  (0.1ms) RELEASE SAVEPOINT active_record_1
516
-  (0.1ms) SAVEPOINT active_record_1
517
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 166]]
518
-  (0.1ms) RELEASE SAVEPOINT active_record_1
519
-  (0.1ms) ROLLBACK
520
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
521
-  (0.2ms) BEGIN
522
- -------------------
523
- TasksTest: test_all
524
- -------------------
525
-  (0.2ms) SAVEPOINT active_record_1
526
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:47:44.753877"], ["updated_at", "2016-11-22 00:47:44.753877"]]
527
-  (0.2ms) RELEASE SAVEPOINT active_record_1
528
-  (0.2ms) SAVEPOINT active_record_1
529
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 00:47:44.757357"], ["updated_at", "2016-11-22 00:47:44.757357"]]
530
-  (0.1ms) RELEASE SAVEPOINT active_record_1
531
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
532
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
533
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
534
-  (0.1ms) ROLLBACK
535
-  (0.1ms) BEGIN
536
- --------------------------
537
- RecordTest: test_callbacks
538
- --------------------------
539
-  (0.2ms) SAVEPOINT active_record_1
540
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:47:44.779257"], ["updated_at", "2016-11-22 00:47:44.779257"]]
541
-  (0.1ms) RELEASE SAVEPOINT active_record_1
542
-  (0.1ms) SAVEPOINT active_record_1
543
- SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:47:44.780860"], ["id", 169]]
544
-  (0.1ms) RELEASE SAVEPOINT active_record_1
545
-  (0.1ms) SAVEPOINT active_record_1
546
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 169]]
547
-  (0.1ms) RELEASE SAVEPOINT active_record_1
548
-  (0.1ms) ROLLBACK
549
-  (0.2ms) BEGIN
550
- ---------------------------
551
- GeneratorsTest: test_cacher
552
- ---------------------------
553
-  (0.1ms) ROLLBACK
554
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
555
-  (0.2ms) BEGIN
556
- --------------------------
557
- RecordTest: test_callbacks
558
- --------------------------
559
-  (0.2ms) SAVEPOINT active_record_1
560
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:49:07.788022"], ["updated_at", "2016-11-22 00:49:07.788022"]]
561
-  (0.2ms) RELEASE SAVEPOINT active_record_1
562
-  (0.2ms) SAVEPOINT active_record_1
563
- SQL (0.4ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:49:07.793619"], ["id", 170]]
564
-  (0.1ms) RELEASE SAVEPOINT active_record_1
565
-  (0.1ms) SAVEPOINT active_record_1
566
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 170]]
567
-  (0.1ms) RELEASE SAVEPOINT active_record_1
568
-  (0.1ms) ROLLBACK
569
-  (0.1ms) BEGIN
570
- ---------------------------
571
- GeneratorsTest: test_cacher
572
- ---------------------------
573
-  (0.2ms) ROLLBACK
574
-  (0.1ms) BEGIN
575
- -------------------
576
- TasksTest: test_all
577
- -------------------
578
-  (0.1ms) SAVEPOINT active_record_1
579
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:49:07.805710"], ["updated_at", "2016-11-22 00:49:07.805710"]]
580
-  (0.1ms) RELEASE SAVEPOINT active_record_1
581
-  (0.1ms) SAVEPOINT active_record_1
582
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 00:49:07.807063"], ["updated_at", "2016-11-22 00:49:07.807063"]]
583
-  (0.1ms) RELEASE SAVEPOINT active_record_1
584
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
585
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
586
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
587
-  (0.1ms) ROLLBACK
588
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
589
-  (0.3ms) BEGIN
590
- --------------------------
591
- RecordTest: test_callbacks
592
- --------------------------
593
-  (0.2ms) SAVEPOINT active_record_1
594
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:49:18.583623"], ["updated_at", "2016-11-22 00:49:18.583623"]]
595
-  (0.2ms) RELEASE SAVEPOINT active_record_1
596
-  (0.1ms) SAVEPOINT active_record_1
597
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:49:18.589113"], ["id", 173]]
598
-  (0.1ms) RELEASE SAVEPOINT active_record_1
599
-  (0.1ms) SAVEPOINT active_record_1
600
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 173]]
601
-  (0.1ms) RELEASE SAVEPOINT active_record_1
602
-  (0.1ms) ROLLBACK
603
-  (0.2ms) BEGIN
604
- ---------------------------
605
- GeneratorsTest: test_cacher
606
- ---------------------------
607
-  (0.2ms) ROLLBACK
608
-  (0.1ms) BEGIN
609
- -------------------
610
- TasksTest: test_all
611
- -------------------
612
-  (0.1ms) SAVEPOINT active_record_1
613
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:49:18.600385"], ["updated_at", "2016-11-22 00:49:18.600385"]]
614
-  (0.2ms) RELEASE SAVEPOINT active_record_1
615
-  (0.1ms) SAVEPOINT active_record_1
616
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 00:49:18.601767"], ["updated_at", "2016-11-22 00:49:18.601767"]]
617
-  (0.1ms) RELEASE SAVEPOINT active_record_1
618
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
619
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
620
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
621
-  (0.1ms) ROLLBACK
622
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
623
-  (0.2ms) BEGIN
624
- --------------------------
625
- RecordTest: test_callbacks
626
- --------------------------
627
-  (0.2ms) SAVEPOINT active_record_1
628
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:50:33.197146"], ["updated_at", "2016-11-22 00:50:33.197146"]]
629
-  (0.2ms) RELEASE SAVEPOINT active_record_1
630
-  (0.1ms) SAVEPOINT active_record_1
631
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 00:50:33.202556"], ["id", 176]]
632
-  (0.1ms) RELEASE SAVEPOINT active_record_1
633
-  (0.1ms) SAVEPOINT active_record_1
634
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 176]]
635
-  (0.1ms) RELEASE SAVEPOINT active_record_1
636
-  (0.1ms) ROLLBACK
637
-  (0.2ms) BEGIN
638
- -------------------
639
- TasksTest: test_all
640
- -------------------
641
-  (0.1ms) SAVEPOINT active_record_1
642
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 00:50:33.209231"], ["updated_at", "2016-11-22 00:50:33.209231"]]
643
-  (0.2ms) RELEASE SAVEPOINT active_record_1
644
-  (0.1ms) SAVEPOINT active_record_1
645
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 00:50:33.210491"], ["updated_at", "2016-11-22 00:50:33.210491"]]
646
-  (0.1ms) RELEASE SAVEPOINT active_record_1
647
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
648
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
649
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
650
-  (0.1ms) ROLLBACK
651
-  (0.1ms) BEGIN
652
- ---------------------------
653
- GeneratorsTest: test_cacher
654
- ---------------------------
655
-  (0.1ms) ROLLBACK
656
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
657
-  (0.3ms) BEGIN
658
- -------------------
659
- TasksTest: test_all
660
- -------------------
661
-  (0.2ms) SAVEPOINT active_record_1
662
- SQL (6.8ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:34:36.183600"], ["updated_at", "2016-11-22 13:34:36.183600"]]
663
-  (0.2ms) RELEASE SAVEPOINT active_record_1
664
-  (0.1ms) SAVEPOINT active_record_1
665
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:34:36.194048"], ["updated_at", "2016-11-22 13:34:36.194048"]]
666
-  (0.1ms) RELEASE SAVEPOINT active_record_1
667
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
668
-  (0.2ms) ROLLBACK
669
-  (0.1ms) BEGIN
670
- --------------------------
671
- RecordTest: test_callbacks
672
- --------------------------
673
-  (0.1ms) SAVEPOINT active_record_1
674
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:34:36.201722"], ["updated_at", "2016-11-22 13:34:36.201722"]]
675
-  (0.1ms) RELEASE SAVEPOINT active_record_1
676
-  (0.2ms) ROLLBACK
677
-  (0.1ms) BEGIN
678
- ---------------------------
679
- GeneratorsTest: test_cacher
680
- ---------------------------
681
-  (0.2ms) ROLLBACK
682
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
683
-  (0.2ms) BEGIN
684
- --------------------------
685
- RecordTest: test_callbacks
686
- --------------------------
687
-  (0.2ms) SAVEPOINT active_record_1
688
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:34:44.591790"], ["updated_at", "2016-11-22 13:34:44.591790"]]
689
-  (0.1ms) RELEASE SAVEPOINT active_record_1
690
-  (0.2ms) ROLLBACK
691
-  (0.1ms) BEGIN
692
- ---------------------------
693
- GeneratorsTest: test_cacher
694
- ---------------------------
695
-  (0.1ms) ROLLBACK
696
-  (0.1ms) BEGIN
697
- -------------------
698
- TasksTest: test_all
699
- -------------------
700
-  (0.1ms) SAVEPOINT active_record_1
701
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:34:44.603483"], ["updated_at", "2016-11-22 13:34:44.603483"]]
702
-  (0.1ms) RELEASE SAVEPOINT active_record_1
703
-  (0.1ms) SAVEPOINT active_record_1
704
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:34:44.605281"], ["updated_at", "2016-11-22 13:34:44.605281"]]
705
-  (0.1ms) RELEASE SAVEPOINT active_record_1
706
- User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
707
-  (0.1ms) ROLLBACK
708
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
709
-  (0.3ms) BEGIN
710
- -------------------
711
- TasksTest: test_all
712
- -------------------
713
-  (0.2ms) SAVEPOINT active_record_1
714
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:35:02.394624"], ["updated_at", "2016-11-22 13:35:02.394624"]]
715
-  (0.2ms) RELEASE SAVEPOINT active_record_1
716
-  (0.1ms) SAVEPOINT active_record_1
717
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:35:02.398032"], ["updated_at", "2016-11-22 13:35:02.398032"]]
718
-  (0.1ms) RELEASE SAVEPOINT active_record_1
719
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
720
-  (0.2ms) ROLLBACK
721
-  (0.1ms) BEGIN
722
- ---------------------------
723
- GeneratorsTest: test_cacher
724
- ---------------------------
725
-  (0.2ms) ROLLBACK
726
-  (0.1ms) BEGIN
727
- --------------------------
728
- RecordTest: test_callbacks
729
- --------------------------
730
-  (0.1ms) SAVEPOINT active_record_1
731
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:35:02.408869"], ["updated_at", "2016-11-22 13:35:02.408869"]]
732
-  (0.1ms) RELEASE SAVEPOINT active_record_1
733
-  (0.1ms) SAVEPOINT active_record_1
734
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:35:02.410795"], ["id", 187]]
735
-  (0.1ms) RELEASE SAVEPOINT active_record_1
736
-  (0.1ms) ROLLBACK
737
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
738
-  (0.3ms) BEGIN
739
- -------------------
740
- TasksTest: test_all
741
- -------------------
742
-  (0.2ms) SAVEPOINT active_record_1
743
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:36:29.701855"], ["updated_at", "2016-11-22 13:36:29.701855"]]
744
-  (0.2ms) RELEASE SAVEPOINT active_record_1
745
-  (0.1ms) SAVEPOINT active_record_1
746
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:36:29.705407"], ["updated_at", "2016-11-22 13:36:29.705407"]]
747
-  (0.1ms) RELEASE SAVEPOINT active_record_1
748
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
749
-  (0.2ms) ROLLBACK
750
-  (0.1ms) BEGIN
751
- ---------------------------
752
- GeneratorsTest: test_cacher
753
- ---------------------------
754
-  (0.2ms) ROLLBACK
755
-  (0.1ms) BEGIN
756
- --------------------------
757
- RecordTest: test_callbacks
758
- --------------------------
759
-  (0.1ms) SAVEPOINT active_record_1
760
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:36:29.716471"], ["updated_at", "2016-11-22 13:36:29.716471"]]
761
-  (0.1ms) RELEASE SAVEPOINT active_record_1
762
-  (0.1ms) SAVEPOINT active_record_1
763
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:36:29.718171"], ["id", 190]]
764
-  (0.1ms) RELEASE SAVEPOINT active_record_1
765
-  (0.1ms) SAVEPOINT active_record_1
766
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 190]]
767
-  (0.1ms) RELEASE SAVEPOINT active_record_1
768
-  (0.1ms) ROLLBACK
769
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
770
-  (0.3ms) BEGIN
771
- --------------------------
772
- RecordTest: test_callbacks
773
- --------------------------
774
-  (0.2ms) SAVEPOINT active_record_1
775
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:36:36.399524"], ["updated_at", "2016-11-22 13:36:36.399524"]]
776
-  (0.1ms) RELEASE SAVEPOINT active_record_1
777
-  (0.2ms) SAVEPOINT active_record_1
778
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:36:36.404863"], ["id", 191]]
779
-  (0.1ms) RELEASE SAVEPOINT active_record_1
780
-  (0.2ms) SAVEPOINT active_record_1
781
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 191]]
782
-  (0.1ms) RELEASE SAVEPOINT active_record_1
783
-  (0.1ms) ROLLBACK
784
-  (0.2ms) BEGIN
785
- -------------------
786
- TasksTest: test_all
787
- -------------------
788
-  (0.1ms) SAVEPOINT active_record_1
789
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:36:36.412203"], ["updated_at", "2016-11-22 13:36:36.412203"]]
790
-  (0.2ms) RELEASE SAVEPOINT active_record_1
791
-  (0.1ms) SAVEPOINT active_record_1
792
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:36:36.413453"], ["updated_at", "2016-11-22 13:36:36.413453"]]
793
-  (0.1ms) RELEASE SAVEPOINT active_record_1
794
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
795
-  (0.1ms) ROLLBACK
796
-  (0.1ms) BEGIN
797
- ---------------------------
798
- GeneratorsTest: test_cacher
799
- ---------------------------
800
-  (0.2ms) ROLLBACK
801
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
802
-  (0.3ms) BEGIN
803
- -------------------
804
- TasksTest: test_all
805
- -------------------
806
-  (0.2ms) SAVEPOINT active_record_1
807
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:37:34.042772"], ["updated_at", "2016-11-22 13:37:34.042772"]]
808
-  (0.2ms) RELEASE SAVEPOINT active_record_1
809
-  (0.1ms) SAVEPOINT active_record_1
810
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:37:34.046186"], ["updated_at", "2016-11-22 13:37:34.046186"]]
811
-  (0.1ms) RELEASE SAVEPOINT active_record_1
812
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
813
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
814
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
815
-  (0.1ms) ROLLBACK
816
-  (0.1ms) BEGIN
817
- ---------------------------
818
- GeneratorsTest: test_cacher
819
- ---------------------------
820
-  (0.1ms) ROLLBACK
821
-  (0.1ms) BEGIN
822
- --------------------------
823
- RecordTest: test_callbacks
824
- --------------------------
825
-  (0.1ms) SAVEPOINT active_record_1
826
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:37:34.059321"], ["updated_at", "2016-11-22 13:37:34.059321"]]
827
-  (0.1ms) RELEASE SAVEPOINT active_record_1
828
-  (0.1ms) SAVEPOINT active_record_1
829
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:37:34.061114"], ["id", 196]]
830
-  (0.1ms) RELEASE SAVEPOINT active_record_1
831
-  (0.1ms) SAVEPOINT active_record_1
832
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 196]]
833
-  (0.1ms) RELEASE SAVEPOINT active_record_1
834
-  (0.1ms) ROLLBACK
835
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
836
-  (0.2ms) BEGIN
837
- --------------------------
838
- RecordTest: test_callbacks
839
- --------------------------
840
-  (0.2ms) SAVEPOINT active_record_1
841
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:37:57.076860"], ["updated_at", "2016-11-22 13:37:57.076860"]]
842
-  (0.2ms) RELEASE SAVEPOINT active_record_1
843
-  (0.1ms) SAVEPOINT active_record_1
844
- SQL (0.4ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:37:57.081994"], ["id", 197]]
845
-  (0.1ms) RELEASE SAVEPOINT active_record_1
846
-  (0.2ms) ROLLBACK
847
-  (0.1ms) BEGIN
848
- ---------------------------
849
- GeneratorsTest: test_cacher
850
- ---------------------------
851
-  (0.2ms) ROLLBACK
852
-  (0.1ms) BEGIN
853
- -------------------
854
- TasksTest: test_all
855
- -------------------
856
-  (0.1ms) SAVEPOINT active_record_1
857
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:37:57.091345"], ["updated_at", "2016-11-22 13:37:57.091345"]]
858
-  (0.1ms) RELEASE SAVEPOINT active_record_1
859
-  (0.1ms) SAVEPOINT active_record_1
860
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:37:57.092642"], ["updated_at", "2016-11-22 13:37:57.092642"]]
861
-  (0.1ms) RELEASE SAVEPOINT active_record_1
862
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
863
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
864
- User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
865
-  (0.1ms) ROLLBACK
866
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
867
-  (0.3ms) BEGIN
868
- --------------------------
869
- RecordTest: test_callbacks
870
- --------------------------
871
-  (0.1ms) SAVEPOINT active_record_1
872
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:38:12.866885"], ["updated_at", "2016-11-22 13:38:12.866885"]]
873
-  (0.2ms) RELEASE SAVEPOINT active_record_1
874
-  (0.2ms) SAVEPOINT active_record_1
875
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-11-22 13:38:12.871768"], ["id", 200]]
876
-  (0.1ms) RELEASE SAVEPOINT active_record_1
877
-  (0.1ms) SAVEPOINT active_record_1
878
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 200]]
879
-  (0.1ms) RELEASE SAVEPOINT active_record_1
880
-  (0.1ms) ROLLBACK
881
-  (0.2ms) BEGIN
882
- ---------------------------
883
- GeneratorsTest: test_cacher
884
- ---------------------------
885
-  (0.2ms) ROLLBACK
886
-  (0.1ms) BEGIN
887
- -------------------
888
- TasksTest: test_all
889
- -------------------
890
-  (0.1ms) SAVEPOINT active_record_1
891
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-11-22 13:38:12.883070"], ["updated_at", "2016-11-22 13:38:12.883070"]]
892
-  (0.1ms) RELEASE SAVEPOINT active_record_1
893
-  (0.1ms) SAVEPOINT active_record_1
894
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-11-22 13:38:12.884350"], ["updated_at", "2016-11-22 13:38:12.884350"]]
895
-  (0.1ms) RELEASE SAVEPOINT active_record_1
896
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
897
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
898
- User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
899
-  (0.1ms) ROLLBACK
900
- ActiveRecord::SchemaMigration Load (26.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
901
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
902
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
903
-  (0.2ms) BEGIN
904
- --------------------------
905
- RecordTest: test_callbacks
906
- --------------------------
907
-  (0.3ms) SAVEPOINT active_record_1
908
- SQL (32.0ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:33:17.780838"], ["updated_at", "2016-12-12 23:33:17.780838"]]
909
-  (0.2ms) RELEASE SAVEPOINT active_record_1
910
-  (0.2ms) ROLLBACK
911
-  (0.2ms) BEGIN
912
- ------------------
913
- TaskTest: test_all
914
- ------------------
915
-  (0.1ms) SAVEPOINT active_record_1
916
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:33:17.820306"], ["updated_at", "2016-12-12 23:33:17.820306"]]
917
-  (0.1ms) RELEASE SAVEPOINT active_record_1
918
-  (0.1ms) SAVEPOINT active_record_1
919
- SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:33:17.821367"], ["updated_at", "2016-12-12 23:33:17.821367"]]
920
-  (0.1ms) RELEASE SAVEPOINT active_record_1
921
-  (0.1ms) ROLLBACK
922
-  (0.1ms) BEGIN
923
- ---------------------------
924
- GeneratorsTest: test_cacher
925
- ---------------------------
926
-  (0.1ms) ROLLBACK
927
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
928
-  (0.2ms) BEGIN
929
- ---------------------------
930
- GeneratorsTest: test_cacher
931
- ---------------------------
932
-  (0.2ms) ROLLBACK
933
-  (0.1ms) BEGIN
934
- ------------------
935
- TaskTest: test_all
936
- ------------------
937
-  (0.3ms) SAVEPOINT active_record_1
938
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:34:21.435223"], ["updated_at", "2016-12-12 23:34:21.435223"]]
939
-  (0.2ms) RELEASE SAVEPOINT active_record_1
940
-  (0.1ms) SAVEPOINT active_record_1
941
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:34:21.439441"], ["updated_at", "2016-12-12 23:34:21.439441"]]
942
-  (0.1ms) RELEASE SAVEPOINT active_record_1
943
-  (0.2ms) ROLLBACK
944
-  (0.1ms) BEGIN
945
- --------------------------
946
- RecordTest: test_callbacks
947
- --------------------------
948
-  (0.1ms) SAVEPOINT active_record_1
949
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:34:21.442125"], ["updated_at", "2016-12-12 23:34:21.442125"]]
950
-  (0.1ms) RELEASE SAVEPOINT active_record_1
951
-  (0.1ms) ROLLBACK
952
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
953
-  (0.2ms) BEGIN
954
- ------------------
955
- TaskTest: test_all
956
- ------------------
957
-  (0.2ms) SAVEPOINT active_record_1
958
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:36:01.338429"], ["updated_at", "2016-12-12 23:36:01.338429"]]
959
-  (0.1ms) RELEASE SAVEPOINT active_record_1
960
-  (0.1ms) SAVEPOINT active_record_1
961
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:36:01.341708"], ["updated_at", "2016-12-12 23:36:01.341708"]]
962
-  (0.1ms) RELEASE SAVEPOINT active_record_1
963
-  (0.2ms) ROLLBACK
964
-  (0.1ms) BEGIN
965
- ---------------------------
966
- GeneratorsTest: test_cacher
967
- ---------------------------
968
-  (0.2ms) ROLLBACK
969
-  (0.1ms) BEGIN
970
- --------------------------
971
- RecordTest: test_callbacks
972
- --------------------------
973
-  (0.1ms) SAVEPOINT active_record_1
974
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:36:01.348945"], ["updated_at", "2016-12-12 23:36:01.348945"]]
975
-  (0.1ms) RELEASE SAVEPOINT active_record_1
976
-  (0.2ms) ROLLBACK
977
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
978
-  (0.3ms) BEGIN
979
- --------------------------
980
- RecordTest: test_callbacks
981
- --------------------------
982
-  (0.2ms) SAVEPOINT active_record_1
983
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:37:48.638640"], ["updated_at", "2016-12-12 23:37:48.638640"]]
984
-  (0.1ms) RELEASE SAVEPOINT active_record_1
985
-  (0.2ms) ROLLBACK
986
-  (0.1ms) BEGIN
987
- ---------------------------
988
- GeneratorsTest: test_cacher
989
- ---------------------------
990
-  (0.2ms) ROLLBACK
991
-  (0.1ms) BEGIN
992
- ------------------
993
- TaskTest: test_all
994
- ------------------
995
-  (0.1ms) SAVEPOINT active_record_1
996
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:37:48.647824"], ["updated_at", "2016-12-12 23:37:48.647824"]]
997
-  (0.2ms) RELEASE SAVEPOINT active_record_1
998
-  (0.2ms) SAVEPOINT active_record_1
999
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:37:48.649440"], ["updated_at", "2016-12-12 23:37:48.649440"]]
1000
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1001
-  (0.2ms) ROLLBACK
1002
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1003
-  (0.3ms) BEGIN
1004
- ---------------------------
1005
- GeneratorsTest: test_cacher
1006
- ---------------------------
1007
-  (0.2ms) ROLLBACK
1008
-  (0.2ms) BEGIN
1009
- ------------------
1010
- TaskTest: test_all
1011
- ------------------
1012
-  (0.2ms) SAVEPOINT active_record_1
1013
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:47:36.634003"], ["updated_at", "2016-12-12 23:47:36.634003"]]
1014
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1015
-  (0.1ms) SAVEPOINT active_record_1
1016
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:47:36.638308"], ["updated_at", "2016-12-12 23:47:36.638308"]]
1017
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1018
-  (0.2ms) ROLLBACK
1019
-  (0.1ms) BEGIN
1020
- --------------------------
1021
- RecordTest: test_callbacks
1022
- --------------------------
1023
-  (0.1ms) SAVEPOINT active_record_1
1024
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:47:36.641010"], ["updated_at", "2016-12-12 23:47:36.641010"]]
1025
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1026
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1027
-  (0.2ms) BEGIN
1028
- --------------------------
1029
- RecordTest: test_callbacks
1030
- --------------------------
1031
-  (0.1ms) SAVEPOINT active_record_1
1032
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:48:47.109338"], ["updated_at", "2016-12-12 23:48:47.109338"]]
1033
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1034
-  (0.2ms) ROLLBACK
1035
-  (0.1ms) BEGIN
1036
- ------------------
1037
- TaskTest: test_all
1038
- ------------------
1039
-  (0.1ms) SAVEPOINT active_record_1
1040
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:48:47.113766"], ["updated_at", "2016-12-12 23:48:47.113766"]]
1041
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1042
-  (0.1ms) SAVEPOINT active_record_1
1043
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:48:47.114824"], ["updated_at", "2016-12-12 23:48:47.114824"]]
1044
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1045
-  (0.2ms) ROLLBACK
1046
-  (0.1ms) BEGIN
1047
- ---------------------------
1048
- GeneratorsTest: test_cacher
1049
- ---------------------------
1050
-  (0.2ms) ROLLBACK
1051
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1052
-  (0.2ms) BEGIN
1053
- ------------------
1054
- TaskTest: test_all
1055
- ------------------
1056
-  (0.1ms) SAVEPOINT active_record_1
1057
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:49:32.766206"], ["updated_at", "2016-12-12 23:49:32.766206"]]
1058
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
-  (0.1ms) SAVEPOINT active_record_1
1060
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:49:32.769265"], ["updated_at", "2016-12-12 23:49:32.769265"]]
1061
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
-  (0.2ms) ROLLBACK
1063
-  (0.1ms) BEGIN
1064
- ---------------------------
1065
- GeneratorsTest: test_cacher
1066
- ---------------------------
1067
-  (0.2ms) ROLLBACK
1068
-  (0.1ms) BEGIN
1069
- --------------------------
1070
- RecordTest: test_callbacks
1071
- --------------------------
1072
-  (0.1ms) SAVEPOINT active_record_1
1073
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:49:32.776394"], ["updated_at", "2016-12-12 23:49:32.776394"]]
1074
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1075
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1076
-  (0.2ms) BEGIN
1077
- ---------------------------
1078
- GeneratorsTest: test_cacher
1079
- ---------------------------
1080
-  (0.2ms) ROLLBACK
1081
-  (0.1ms) BEGIN
1082
- --------------------------
1083
- RecordTest: test_callbacks
1084
- --------------------------
1085
-  (0.1ms) SAVEPOINT active_record_1
1086
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:49:57.597451"], ["updated_at", "2016-12-12 23:49:57.597451"]]
1087
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1088
-  (0.3ms) ROLLBACK
1089
-  (0.1ms) BEGIN
1090
- ------------------
1091
- TaskTest: test_all
1092
- ------------------
1093
-  (0.1ms) SAVEPOINT active_record_1
1094
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:49:57.622004"], ["updated_at", "2016-12-12 23:49:57.622004"]]
1095
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1096
-  (0.1ms) SAVEPOINT active_record_1
1097
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:49:57.623239"], ["updated_at", "2016-12-12 23:49:57.623239"]]
1098
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1099
-  (0.1ms) ROLLBACK
1100
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1101
-  (0.2ms) BEGIN
1102
- ---------------------------
1103
- GeneratorsTest: test_cacher
1104
- ---------------------------
1105
-  (0.3ms) ROLLBACK
1106
-  (0.1ms) BEGIN
1107
- --------------------------
1108
- RecordTest: test_callbacks
1109
- --------------------------
1110
-  (0.2ms) SAVEPOINT active_record_1
1111
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:50:32.527586"], ["updated_at", "2016-12-12 23:50:32.527586"]]
1112
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
-  (0.4ms) ROLLBACK
1114
-  (0.1ms) BEGIN
1115
- ------------------
1116
- TaskTest: test_all
1117
- ------------------
1118
-  (0.1ms) SAVEPOINT active_record_1
1119
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-12 23:50:32.548549"], ["updated_at", "2016-12-12 23:50:32.548549"]]
1120
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1121
-  (0.1ms) SAVEPOINT active_record_1
1122
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-12 23:50:32.549792"], ["updated_at", "2016-12-12 23:50:32.549792"]]
1123
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1124
-  (0.1ms) ROLLBACK
1125
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1126
-  (0.2ms) BEGIN
1127
- ---------------------------
1128
- GeneratorsTest: test_cacher
1129
- ---------------------------
1130
-  (0.2ms) ROLLBACK
1131
-  (0.1ms) BEGIN
1132
- ------------------
1133
- TaskTest: test_all
1134
- ------------------
1135
-  (0.2ms) SAVEPOINT active_record_1
1136
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:06.302722"], ["updated_at", "2016-12-13 00:08:06.302722"]]
1137
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1138
-  (0.1ms) SAVEPOINT active_record_1
1139
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:08:06.307774"], ["updated_at", "2016-12-13 00:08:06.307774"]]
1140
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1141
-  (0.2ms) ROLLBACK
1142
-  (0.1ms) BEGIN
1143
- --------------------------
1144
- RecordTest: test_callbacks
1145
- --------------------------
1146
-  (0.1ms) SAVEPOINT active_record_1
1147
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:06.328401"], ["updated_at", "2016-12-13 00:08:06.328401"]]
1148
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1149
-  (0.1ms) SAVEPOINT active_record_1
1150
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:08:06.329961"], ["id", 232]]
1151
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1152
-  (0.1ms) SAVEPOINT active_record_1
1153
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 232]]
1154
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1155
-  (0.1ms) ROLLBACK
1156
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1157
-  (0.2ms) BEGIN
1158
- --------------------------
1159
- RecordTest: test_callbacks
1160
- --------------------------
1161
-  (0.1ms) SAVEPOINT active_record_1
1162
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:11.840136"], ["updated_at", "2016-12-13 00:08:11.840136"]]
1163
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1164
-  (0.1ms) SAVEPOINT active_record_1
1165
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:08:11.856174"], ["id", 233]]
1166
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1167
-  (0.1ms) SAVEPOINT active_record_1
1168
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 233]]
1169
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1170
-  (0.1ms) ROLLBACK
1171
-  (0.1ms) BEGIN
1172
- ---------------------------
1173
- GeneratorsTest: test_cacher
1174
- ---------------------------
1175
-  (0.2ms) ROLLBACK
1176
-  (0.1ms) BEGIN
1177
- ------------------
1178
- TaskTest: test_all
1179
- ------------------
1180
-  (0.1ms) SAVEPOINT active_record_1
1181
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:11.870451"], ["updated_at", "2016-12-13 00:08:11.870451"]]
1182
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1183
-  (0.1ms) SAVEPOINT active_record_1
1184
- SQL (1.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:08:11.871970"], ["updated_at", "2016-12-13 00:08:11.871970"]]
1185
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1186
-  (0.1ms) ROLLBACK
1187
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1188
-  (0.2ms) BEGIN
1189
- --------------------------
1190
- RecordTest: test_callbacks
1191
- --------------------------
1192
-  (0.1ms) SAVEPOINT active_record_1
1193
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:15.513040"], ["updated_at", "2016-12-13 00:08:15.513040"]]
1194
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1195
-  (0.2ms) SAVEPOINT active_record_1
1196
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:08:15.529318"], ["id", 236]]
1197
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1198
-  (0.1ms) SAVEPOINT active_record_1
1199
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 236]]
1200
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1201
-  (0.1ms) ROLLBACK
1202
-  (0.1ms) BEGIN
1203
- ------------------
1204
- TaskTest: test_all
1205
- ------------------
1206
-  (0.1ms) SAVEPOINT active_record_1
1207
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:15.536164"], ["updated_at", "2016-12-13 00:08:15.536164"]]
1208
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1209
-  (0.1ms) SAVEPOINT active_record_1
1210
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:08:15.537215"], ["updated_at", "2016-12-13 00:08:15.537215"]]
1211
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1212
-  (0.1ms) ROLLBACK
1213
-  (0.2ms) BEGIN
1214
- ---------------------------
1215
- GeneratorsTest: test_cacher
1216
- ---------------------------
1217
-  (0.2ms) ROLLBACK
1218
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1219
-  (0.2ms) BEGIN
1220
- --------------------------
1221
- RecordTest: test_callbacks
1222
- --------------------------
1223
-  (0.1ms) SAVEPOINT active_record_1
1224
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:18.120875"], ["updated_at", "2016-12-13 00:08:18.120875"]]
1225
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1226
-  (0.1ms) SAVEPOINT active_record_1
1227
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:08:18.137117"], ["id", 239]]
1228
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1229
-  (0.1ms) SAVEPOINT active_record_1
1230
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 239]]
1231
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1232
-  (0.1ms) ROLLBACK
1233
-  (0.1ms) BEGIN
1234
- ------------------
1235
- TaskTest: test_all
1236
- ------------------
1237
-  (0.1ms) SAVEPOINT active_record_1
1238
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:08:18.143855"], ["updated_at", "2016-12-13 00:08:18.143855"]]
1239
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1240
-  (0.1ms) SAVEPOINT active_record_1
1241
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:08:18.144909"], ["updated_at", "2016-12-13 00:08:18.144909"]]
1242
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1243
-  (0.1ms) ROLLBACK
1244
-  (0.1ms) BEGIN
1245
- ---------------------------
1246
- GeneratorsTest: test_cacher
1247
- ---------------------------
1248
-  (0.2ms) ROLLBACK
1249
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1250
-  (0.2ms) BEGIN
1251
- ---------------------------
1252
- GeneratorsTest: test_cacher
1253
- ---------------------------
1254
-  (0.2ms) ROLLBACK
1255
-  (0.1ms) BEGIN
1256
- ------------------
1257
- TaskTest: test_all
1258
- ------------------
1259
-  (0.2ms) SAVEPOINT active_record_1
1260
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:10:00.510127"], ["updated_at", "2016-12-13 00:10:00.510127"]]
1261
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1262
-  (0.1ms) SAVEPOINT active_record_1
1263
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:10:00.513953"], ["updated_at", "2016-12-13 00:10:00.513953"]]
1264
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1265
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1266
-  (0.2ms) BEGIN
1267
- ---------------------------
1268
- GeneratorsTest: test_cacher
1269
- ---------------------------
1270
-  (0.2ms) ROLLBACK
1271
-  (0.1ms) BEGIN
1272
- --------------------------
1273
- RecordTest: test_callbacks
1274
- --------------------------
1275
-  (0.2ms) ROLLBACK
1276
-  (0.1ms) BEGIN
1277
- ------------------
1278
- TaskTest: test_all
1279
- ------------------
1280
-  (0.3ms) SAVEPOINT active_record_1
1281
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:12:10.972983"], ["updated_at", "2016-12-13 00:12:10.972983"]]
1282
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1283
-  (0.1ms) SAVEPOINT active_record_1
1284
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:12:10.977733"], ["updated_at", "2016-12-13 00:12:10.977733"]]
1285
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1286
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1287
-  (0.2ms) BEGIN
1288
- --------------------------
1289
- RecordTest: test_callbacks
1290
- --------------------------
1291
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1292
-  (0.2ms) BEGIN
1293
- ---------------------------
1294
- GeneratorsTest: test_cacher
1295
- ---------------------------
1296
-  (0.3ms) ROLLBACK
1297
-  (0.1ms) BEGIN
1298
- --------------------------
1299
- RecordTest: test_callbacks
1300
- --------------------------
1301
-  (0.2ms) ROLLBACK
1302
-  (0.1ms) BEGIN
1303
- ------------------
1304
- TaskTest: test_all
1305
- ------------------
1306
-  (0.2ms) SAVEPOINT active_record_1
1307
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:15:36.639669"], ["updated_at", "2016-12-13 00:15:36.639669"]]
1308
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1309
-  (0.1ms) SAVEPOINT active_record_1
1310
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:15:36.643384"], ["updated_at", "2016-12-13 00:15:36.643384"]]
1311
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1312
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1313
-  (0.2ms) BEGIN
1314
- ---------------------------
1315
- GeneratorsTest: test_cacher
1316
- ---------------------------
1317
-  (0.2ms) ROLLBACK
1318
-  (0.1ms) BEGIN
1319
- --------------------------
1320
- RecordTest: test_callbacks
1321
- --------------------------
1322
-  (0.2ms) SAVEPOINT active_record_1
1323
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:16:36.346285"], ["updated_at", "2016-12-13 00:16:36.346285"]]
1324
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1325
-  (0.2ms) SAVEPOINT active_record_1
1326
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:16:36.365120"], ["id", 248]]
1327
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1328
-  (0.1ms) SAVEPOINT active_record_1
1329
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 248]]
1330
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1331
-  (0.1ms) ROLLBACK
1332
-  (0.1ms) BEGIN
1333
- ------------------
1334
- TaskTest: test_all
1335
- ------------------
1336
-  (0.1ms) SAVEPOINT active_record_1
1337
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:16:36.373755"], ["updated_at", "2016-12-13 00:16:36.373755"]]
1338
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1339
-  (0.1ms) SAVEPOINT active_record_1
1340
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:16:36.374877"], ["updated_at", "2016-12-13 00:16:36.374877"]]
1341
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1342
- User Load (1.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1343
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1344
-  (0.2ms) BEGIN
1345
- ------------------
1346
- TaskTest: test_all
1347
- ------------------
1348
-  (0.1ms) SAVEPOINT active_record_1
1349
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:18:41.471328"], ["updated_at", "2016-12-13 00:18:41.471328"]]
1350
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1351
-  (0.1ms) SAVEPOINT active_record_1
1352
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:18:41.474703"], ["updated_at", "2016-12-13 00:18:41.474703"]]
1353
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1354
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1355
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1356
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1357
-  (0.2ms) ROLLBACK
1358
-  (0.1ms) BEGIN
1359
- ---------------------------
1360
- GeneratorsTest: test_cacher
1361
- ---------------------------
1362
-  (0.2ms) ROLLBACK
1363
-  (0.1ms) BEGIN
1364
- --------------------------
1365
- RecordTest: test_callbacks
1366
- --------------------------
1367
-  (0.1ms) SAVEPOINT active_record_1
1368
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:18:41.501263"], ["updated_at", "2016-12-13 00:18:41.501263"]]
1369
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1370
-  (0.1ms) SAVEPOINT active_record_1
1371
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:18:41.503272"], ["id", 253]]
1372
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1373
-  (0.1ms) SAVEPOINT active_record_1
1374
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 253]]
1375
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1376
-  (0.1ms) ROLLBACK
1377
- ActiveRecord::SchemaMigration Load (11.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
1378
-  (0.2ms) BEGIN
1379
- --------------------------
1380
- RecordTest: test_callbacks
1381
- --------------------------
1382
-  (0.1ms) SAVEPOINT active_record_1
1383
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:44:07.323233"], ["updated_at", "2016-12-13 00:44:07.323233"]]
1384
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1385
-  (0.2ms) ROLLBACK
1386
-  (0.1ms) BEGIN
1387
- ---------------------------
1388
- GeneratorsTest: test_cacher
1389
- ---------------------------
1390
-  (0.2ms) ROLLBACK
1391
-  (0.1ms) BEGIN
1392
- ------------------
1393
- TaskTest: test_all
1394
- ------------------
1395
-  (0.2ms) SAVEPOINT active_record_1
1396
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:44:07.333421"], ["updated_at", "2016-12-13 00:44:07.333421"]]
1397
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1398
-  (0.1ms) SAVEPOINT active_record_1
1399
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:44:07.334825"], ["updated_at", "2016-12-13 00:44:07.334825"]]
1400
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1401
- ActiveRecord::SchemaMigration Load (12.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ORDER BY "schema_migrations"."" ASC LIMIT 1000
1402
-  (0.1ms) ROLLBACK
1403
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1404
-  (0.2ms) BEGIN
1405
- ---------------------------
1406
- GeneratorsTest: test_cacher
1407
- ---------------------------
1408
-  (0.2ms) ROLLBACK
1409
-  (0.1ms) BEGIN
1410
- ------------------
1411
- TaskTest: test_all
1412
- ------------------
1413
-  (0.2ms) SAVEPOINT active_record_1
1414
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:44:32.224090"], ["updated_at", "2016-12-13 00:44:32.224090"]]
1415
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1416
-  (0.2ms) SAVEPOINT active_record_1
1417
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:44:32.228371"], ["updated_at", "2016-12-13 00:44:32.228371"]]
1418
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1419
- User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1420
-  (0.2ms) ROLLBACK
1421
-  (0.1ms) BEGIN
1422
- --------------------------
1423
- RecordTest: test_callbacks
1424
- --------------------------
1425
-  (0.1ms) SAVEPOINT active_record_1
1426
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:44:32.234776"], ["updated_at", "2016-12-13 00:44:32.234776"]]
1427
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1428
-  (0.2ms) ROLLBACK
1429
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1430
-  (0.2ms) BEGIN
1431
- --------------------------
1432
- RecordTest: test_callbacks
1433
- --------------------------
1434
-  (0.1ms) SAVEPOINT active_record_1
1435
- SQL (5.9ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:45:16.034550"], ["updated_at", "2016-12-13 00:45:16.034550"]]
1436
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1437
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1438
-  (0.2ms) BEGIN
1439
- --------------------------
1440
- RecordTest: test_callbacks
1441
- --------------------------
1442
-  (0.1ms) SAVEPOINT active_record_1
1443
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:46:22.517077"], ["updated_at", "2016-12-13 00:46:22.517077"]]
1444
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1445
-  (0.2ms) ROLLBACK
1446
-  (0.1ms) BEGIN
1447
- ------------------
1448
- TaskTest: test_all
1449
- ------------------
1450
-  (0.2ms) SAVEPOINT active_record_1
1451
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:46:22.523040"], ["updated_at", "2016-12-13 00:46:22.523040"]]
1452
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1453
-  (0.1ms) SAVEPOINT active_record_1
1454
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:46:22.524293"], ["updated_at", "2016-12-13 00:46:22.524293"]]
1455
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1456
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1457
-  (0.1ms) ROLLBACK
1458
-  (0.2ms) BEGIN
1459
- ---------------------------
1460
- GeneratorsTest: test_cacher
1461
- ---------------------------
1462
-  (0.2ms) ROLLBACK
1463
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1464
-  (0.2ms) BEGIN
1465
- ------------------
1466
- TaskTest: test_all
1467
- ------------------
1468
-  (0.2ms) SAVEPOINT active_record_1
1469
- SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:46:35.524490"], ["updated_at", "2016-12-13 00:46:35.524490"]]
1470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1471
-  (0.1ms) SAVEPOINT active_record_1
1472
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:46:35.527743"], ["updated_at", "2016-12-13 00:46:35.527743"]]
1473
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1474
- User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1475
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1476
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1477
-  (0.1ms) ROLLBACK
1478
-  (0.1ms) BEGIN
1479
- ---------------------------
1480
- GeneratorsTest: test_cacher
1481
- ---------------------------
1482
-  (0.2ms) ROLLBACK
1483
-  (0.1ms) BEGIN
1484
- --------------------------
1485
- RecordTest: test_callbacks
1486
- --------------------------
1487
-  (0.1ms) SAVEPOINT active_record_1
1488
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:46:35.588476"], ["updated_at", "2016-12-13 00:46:35.588476"]]
1489
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1490
-  (0.1ms) SAVEPOINT active_record_1
1491
- SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:46:35.590041"], ["id", 266]]
1492
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1493
-  (0.1ms) SAVEPOINT active_record_1
1494
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 266]]
1495
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1496
-  (0.1ms) ROLLBACK
1497
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1498
-  (0.2ms) BEGIN
1499
- ---------------------------
1500
- GeneratorsTest: test_cacher
1501
- ---------------------------
1502
-  (0.2ms) ROLLBACK
1503
-  (0.1ms) BEGIN
1504
- --------------------------
1505
- RecordTest: test_callbacks
1506
- --------------------------
1507
-  (0.2ms) SAVEPOINT active_record_1
1508
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:48:07.027428"], ["updated_at", "2016-12-13 00:48:07.027428"]]
1509
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1510
-  (0.2ms) SAVEPOINT active_record_1
1511
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:48:07.047922"], ["id", 267]]
1512
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1513
-  (0.1ms) SAVEPOINT active_record_1
1514
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 267]]
1515
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1516
-  (0.1ms) ROLLBACK
1517
-  (0.1ms) BEGIN
1518
- ------------------
1519
- TaskTest: test_all
1520
- ------------------
1521
-  (0.1ms) SAVEPOINT active_record_1
1522
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:48:07.056492"], ["updated_at", "2016-12-13 00:48:07.056492"]]
1523
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1524
-  (0.1ms) SAVEPOINT active_record_1
1525
- SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:48:07.057515"], ["updated_at", "2016-12-13 00:48:07.057515"]]
1526
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1527
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1528
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1529
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1530
-  (0.1ms) ROLLBACK
1531
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1532
-  (0.2ms) BEGIN
1533
- ---------------------------
1534
- GeneratorsTest: test_cacher
1535
- ---------------------------
1536
-  (0.2ms) ROLLBACK
1537
-  (0.1ms) BEGIN
1538
- --------------------------
1539
- RecordTest: test_callbacks
1540
- --------------------------
1541
-  (0.1ms) SAVEPOINT active_record_1
1542
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:50:59.551979"], ["updated_at", "2016-12-13 00:50:59.551979"]]
1543
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
-  (0.3ms) SAVEPOINT active_record_1
1545
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 00:50:59.568604"], ["id", 270]]
1546
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1547
-  (0.1ms) SAVEPOINT active_record_1
1548
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 270]]
1549
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1550
-  (0.2ms) ROLLBACK
1551
-  (0.1ms) BEGIN
1552
- ------------------
1553
- TaskTest: test_all
1554
- ------------------
1555
-  (0.1ms) SAVEPOINT active_record_1
1556
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 00:50:59.576725"], ["updated_at", "2016-12-13 00:50:59.576725"]]
1557
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1558
-  (0.1ms) SAVEPOINT active_record_1
1559
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 00:50:59.577914"], ["updated_at", "2016-12-13 00:50:59.577914"]]
1560
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1561
- User Load (1.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1562
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1563
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1564
-  (0.1ms) ROLLBACK
1565
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1566
-  (0.7ms) BEGIN
1567
- ---------------------------
1568
- GeneratorsTest: test_cacher
1569
- ---------------------------
1570
-  (0.3ms) ROLLBACK
1571
-  (32.4ms) BEGIN
1572
- ------------------
1573
- TaskTest: test_all
1574
- ------------------
1575
-  (1.3ms) SAVEPOINT active_record_1
1576
- SQL (0.7ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:05:12.847206"], ["updated_at", "2016-12-13 01:05:12.847206"]]
1577
-  (3.6ms) RELEASE SAVEPOINT active_record_1
1578
-  (0.1ms) SAVEPOINT active_record_1
1579
- SQL (1.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 01:05:12.880257"], ["updated_at", "2016-12-13 01:05:12.880257"]]
1580
-  (1.2ms) RELEASE SAVEPOINT active_record_1
1581
- User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1582
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1583
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1584
-  (0.2ms) ROLLBACK
1585
-  (0.1ms) BEGIN
1586
- --------------------------
1587
- RecordTest: test_callbacks
1588
- --------------------------
1589
-  (0.1ms) SAVEPOINT active_record_1
1590
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:05:12.943568"], ["updated_at", "2016-12-13 01:05:12.943568"]]
1591
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1592
-  (0.2ms) SAVEPOINT active_record_1
1593
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 01:05:12.945518"], ["id", 275]]
1594
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1595
-  (0.2ms) SAVEPOINT active_record_1
1596
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 275]]
1597
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1598
-  (0.1ms) ROLLBACK
1599
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1600
-  (0.2ms) BEGIN
1601
- ----------------------------
1602
- GeneratorsTest: test_install
1603
- ----------------------------
1604
-  (0.2ms) ROLLBACK
1605
-  (0.1ms) BEGIN
1606
- ---------------------------
1607
- GeneratorsTest: test_cacher
1608
- ---------------------------
1609
-  (0.1ms) ROLLBACK
1610
-  (0.1ms) BEGIN
1611
- --------------------------
1612
- RecordTest: test_callbacks
1613
- --------------------------
1614
-  (0.2ms) SAVEPOINT active_record_1
1615
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:06:24.985350"], ["updated_at", "2016-12-13 01:06:24.985350"]]
1616
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1617
-  (0.1ms) SAVEPOINT active_record_1
1618
- SQL (0.4ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 01:06:25.002951"], ["id", 276]]
1619
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1620
-  (0.1ms) SAVEPOINT active_record_1
1621
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 276]]
1622
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1623
-  (0.1ms) ROLLBACK
1624
-  (0.1ms) BEGIN
1625
- ------------------
1626
- TaskTest: test_all
1627
- ------------------
1628
-  (0.1ms) SAVEPOINT active_record_1
1629
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:06:25.011154"], ["updated_at", "2016-12-13 01:06:25.011154"]]
1630
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1631
-  (0.1ms) SAVEPOINT active_record_1
1632
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 01:06:25.012392"], ["updated_at", "2016-12-13 01:06:25.012392"]]
1633
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1634
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1635
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1636
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1637
-  (0.1ms) ROLLBACK
1638
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1639
-  (0.2ms) BEGIN
1640
- ---------------------------
1641
- GeneratorsTest: test_cacher
1642
- ---------------------------
1643
-  (0.2ms) ROLLBACK
1644
-  (0.1ms) BEGIN
1645
- ----------------------------
1646
- GeneratorsTest: test_install
1647
- ----------------------------
1648
-  (0.2ms) ROLLBACK
1649
-  (0.1ms) BEGIN
1650
- --------------------------
1651
- RecordTest: test_callbacks
1652
- --------------------------
1653
-  (0.2ms) SAVEPOINT active_record_1
1654
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:06:42.853164"], ["updated_at", "2016-12-13 01:06:42.853164"]]
1655
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1656
-  (0.1ms) SAVEPOINT active_record_1
1657
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-13 01:06:42.870759"], ["id", 279]]
1658
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1659
-  (0.1ms) SAVEPOINT active_record_1
1660
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 279]]
1661
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1662
-  (0.2ms) ROLLBACK
1663
-  (0.1ms) BEGIN
1664
- ------------------
1665
- TaskTest: test_all
1666
- ------------------
1667
-  (0.2ms) SAVEPOINT active_record_1
1668
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-13 01:06:42.880137"], ["updated_at", "2016-12-13 01:06:42.880137"]]
1669
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1670
-  (0.1ms) SAVEPOINT active_record_1
1671
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-13 01:06:42.881553"], ["updated_at", "2016-12-13 01:06:42.881553"]]
1672
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1673
- User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1674
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1675
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1676
-  (0.1ms) ROLLBACK
1677
-  (5.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1678
-  (11.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1679
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1680
- Migrating to CreateUsers (20160918232127)
1681
-  (0.1ms) BEGIN
1682
-  (8.8ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1683
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160918232127"]]
1684
-  (0.5ms) COMMIT
1685
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1686
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1687
- FROM pg_constraint c
1688
- JOIN pg_class t1 ON c.conrelid = t1.oid
1689
- JOIN pg_class t2 ON c.confrelid = t2.oid
1690
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1691
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1692
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1693
- WHERE c.contype = 'f'
1694
- AND t1.relname = 'users'
1695
- AND t3.nspname = ANY (current_schemas(false))
1696
- ORDER BY c.conname
1697
- 
1698
- ActiveRecord::SchemaMigration Load (6.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
1699
-  (0.2ms) BEGIN
1700
- ------------------
1701
- TaskTest: test_all
1702
- ------------------
1703
-  (0.1ms) SAVEPOINT active_record_1
1704
- SQL (6.9ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 05:28:29.909537"], ["updated_at", "2016-12-14 05:28:29.909537"]]
1705
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1706
-  (0.1ms) SAVEPOINT active_record_1
1707
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 05:28:29.920107"], ["updated_at", "2016-12-14 05:28:29.920107"]]
1708
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1709
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1710
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1711
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1712
-  (0.1ms) ROLLBACK
1713
-  (0.1ms) BEGIN
1714
- ----------------------------
1715
- GeneratorsTest: test_install
1716
- ----------------------------
1717
-  (0.1ms) ROLLBACK
1718
-  (0.1ms) BEGIN
1719
- ---------------------------
1720
- GeneratorsTest: test_cacher
1721
- ---------------------------
1722
-  (0.1ms) ROLLBACK
1723
-  (0.1ms) BEGIN
1724
- --------------------------
1725
- RecordTest: test_callbacks
1726
- --------------------------
1727
-  (0.1ms) SAVEPOINT active_record_1
1728
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 05:28:29.972542"], ["updated_at", "2016-12-14 05:28:29.972542"]]
1729
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1730
-  (0.1ms) SAVEPOINT active_record_1
1731
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 05:28:29.974143"], ["id", 3]]
1732
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1733
-  (0.1ms) SAVEPOINT active_record_1
1734
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 3]]
1735
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1736
-  (0.1ms) ROLLBACK
1737
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1738
-  (0.3ms) BEGIN
1739
- ------------------
1740
- TaskTest: test_all
1741
- ------------------
1742
-  (0.1ms) SAVEPOINT active_record_1
1743
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:04:36.181765"], ["updated_at", "2016-12-14 06:04:36.181765"]]
1744
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1745
-  (0.1ms) SAVEPOINT active_record_1
1746
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:04:36.185642"], ["updated_at", "2016-12-14 06:04:36.185642"]]
1747
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1748
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1749
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1750
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1751
-  (0.2ms) ROLLBACK
1752
-  (0.1ms) BEGIN
1753
- ---------------------------
1754
- GeneratorsTest: test_cacher
1755
- ---------------------------
1756
-  (0.2ms) ROLLBACK
1757
-  (0.1ms) BEGIN
1758
- ----------------------------
1759
- GeneratorsTest: test_install
1760
- ----------------------------
1761
-  (0.1ms) ROLLBACK
1762
-  (0.1ms) BEGIN
1763
- --------------------------
1764
- RecordTest: test_callbacks
1765
- --------------------------
1766
-  (0.1ms) SAVEPOINT active_record_1
1767
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:04:36.230893"], ["updated_at", "2016-12-14 06:04:36.230893"]]
1768
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1769
-  (0.1ms) ROLLBACK
1770
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1771
-  (0.2ms) BEGIN
1772
- ----------------------------
1773
- GeneratorsTest: test_install
1774
- ----------------------------
1775
-  (0.2ms) ROLLBACK
1776
-  (0.1ms) BEGIN
1777
- ---------------------------
1778
- GeneratorsTest: test_cacher
1779
- ---------------------------
1780
-  (0.3ms) ROLLBACK
1781
-  (0.1ms) BEGIN
1782
- ------------------
1783
- TaskTest: test_all
1784
- ------------------
1785
-  (0.2ms) SAVEPOINT active_record_1
1786
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:05:35.450623"], ["updated_at", "2016-12-14 06:05:35.450623"]]
1787
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1788
-  (0.1ms) SAVEPOINT active_record_1
1789
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:05:35.453859"], ["updated_at", "2016-12-14 06:05:35.453859"]]
1790
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1791
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1792
- User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1793
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1794
-  (0.2ms) ROLLBACK
1795
-  (0.1ms) BEGIN
1796
- --------------------------
1797
- RecordTest: test_callbacks
1798
- --------------------------
1799
-  (0.1ms) SAVEPOINT active_record_1
1800
- SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:05:35.476332"], ["updated_at", "2016-12-14 06:05:35.476332"]]
1801
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1802
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1803
-  (0.2ms) BEGIN
1804
- ----------------------------
1805
- GeneratorsTest: test_install
1806
- ----------------------------
1807
-  (0.2ms) ROLLBACK
1808
-  (0.2ms) BEGIN
1809
- ---------------------------
1810
- GeneratorsTest: test_cacher
1811
- ---------------------------
1812
-  (0.2ms) ROLLBACK
1813
-  (0.2ms) BEGIN
1814
- --------------------------
1815
- RecordTest: test_callbacks
1816
- --------------------------
1817
-  (0.1ms) SAVEPOINT active_record_1
1818
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:06:18.039597"], ["updated_at", "2016-12-14 06:06:18.039597"]]
1819
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1820
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1821
-  (0.2ms) BEGIN
1822
- ----------------------------
1823
- GeneratorsTest: test_install
1824
- ----------------------------
1825
-  (0.2ms) ROLLBACK
1826
-  (0.1ms) BEGIN
1827
- ---------------------------
1828
- GeneratorsTest: test_cacher
1829
- ---------------------------
1830
-  (0.1ms) ROLLBACK
1831
-  (0.1ms) BEGIN
1832
- --------------------------
1833
- RecordTest: test_callbacks
1834
- --------------------------
1835
-  (0.1ms) SAVEPOINT active_record_1
1836
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:08:01.122344"], ["updated_at", "2016-12-14 06:08:01.122344"]]
1837
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1838
-  (0.3ms) ROLLBACK
1839
-  (0.2ms) BEGIN
1840
- ------------------
1841
- TaskTest: test_all
1842
- ------------------
1843
-  (0.2ms) SAVEPOINT active_record_1
1844
- SQL (0.6ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:08:13.007968"], ["updated_at", "2016-12-14 06:08:13.007968"]]
1845
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1846
-  (0.1ms) SAVEPOINT active_record_1
1847
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:08:13.010593"], ["updated_at", "2016-12-14 06:08:13.010593"]]
1848
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1849
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1850
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1851
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1852
-  (0.1ms) ROLLBACK
1853
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1854
-  (0.2ms) BEGIN
1855
- ----------------------------
1856
- GeneratorsTest: test_install
1857
- ----------------------------
1858
-  (0.2ms) ROLLBACK
1859
-  (0.1ms) BEGIN
1860
- ---------------------------
1861
- GeneratorsTest: test_cacher
1862
- ---------------------------
1863
-  (0.2ms) ROLLBACK
1864
-  (0.1ms) BEGIN
1865
- ------------------
1866
- TaskTest: test_all
1867
- ------------------
1868
-  (0.1ms) SAVEPOINT active_record_1
1869
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:12:37.797251"], ["updated_at", "2016-12-14 06:12:37.797251"]]
1870
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1871
-  (0.1ms) SAVEPOINT active_record_1
1872
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:12:37.800457"], ["updated_at", "2016-12-14 06:12:37.800457"]]
1873
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1874
- User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1875
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1876
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1877
-  (0.1ms) ROLLBACK
1878
-  (1.5ms) BEGIN
1879
- --------------------------
1880
- RecordTest: test_callbacks
1881
- --------------------------
1882
-  (0.1ms) SAVEPOINT active_record_1
1883
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:12:37.824277"], ["updated_at", "2016-12-14 06:12:37.824277"]]
1884
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1885
-  (0.1ms) SAVEPOINT active_record_1
1886
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 06:12:37.826113"], ["id", 16]]
1887
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1888
-  (0.1ms) SAVEPOINT active_record_1
1889
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 16]]
1890
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1891
-  (0.1ms) ROLLBACK
1892
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1893
-  (0.2ms) BEGIN
1894
- ---------------------------
1895
- GeneratorsTest: test_cacher
1896
- ---------------------------
1897
-  (0.1ms) ROLLBACK
1898
-  (0.1ms) BEGIN
1899
- ----------------------------
1900
- GeneratorsTest: test_install
1901
- ----------------------------
1902
-  (0.1ms) ROLLBACK
1903
-  (0.2ms) BEGIN
1904
- -------------------------
1905
- ModelTest: test_singleton
1906
- -------------------------
1907
-  (0.2ms) ROLLBACK
1908
-  (0.1ms) BEGIN
1909
- -------------------------
1910
- ModelTest: test_callbacks
1911
- -------------------------
1912
-  (0.1ms) SAVEPOINT active_record_1
1913
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:14:13.670994"], ["updated_at", "2016-12-14 06:14:13.670994"]]
1914
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1915
-  (0.1ms) SAVEPOINT active_record_1
1916
- SQL (0.4ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 06:14:13.674523"], ["id", 17]]
1917
-  (0.3ms) RELEASE SAVEPOINT active_record_1
1918
-  (0.2ms) SAVEPOINT active_record_1
1919
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 17]]
1920
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1921
-  (0.2ms) ROLLBACK
1922
-  (0.1ms) BEGIN
1923
- --------------------------
1924
- RecordTest: test_callbacks
1925
- --------------------------
1926
-  (0.1ms) SAVEPOINT active_record_1
1927
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:14:13.683359"], ["updated_at", "2016-12-14 06:14:13.683359"]]
1928
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1929
-  (0.1ms) SAVEPOINT active_record_1
1930
- SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 06:14:13.684804"], ["id", 18]]
1931
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1932
-  (0.1ms) SAVEPOINT active_record_1
1933
- SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 18]]
1934
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1935
-  (0.1ms) ROLLBACK
1936
-  (0.1ms) BEGIN
1937
- ------------------
1938
- TaskTest: test_all
1939
- ------------------
1940
-  (0.1ms) SAVEPOINT active_record_1
1941
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:14:13.688848"], ["updated_at", "2016-12-14 06:14:13.688848"]]
1942
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1943
-  (0.1ms) SAVEPOINT active_record_1
1944
- SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:14:13.691504"], ["updated_at", "2016-12-14 06:14:13.691504"]]
1945
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1946
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1947
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1948
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
1949
-  (0.1ms) ROLLBACK
1950
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1951
-  (0.2ms) BEGIN
1952
- ---------------------------
1953
- GeneratorsTest: test_cacher
1954
- ---------------------------
1955
-  (0.2ms) ROLLBACK
1956
-  (0.1ms) BEGIN
1957
- ----------------------------
1958
- GeneratorsTest: test_install
1959
- ----------------------------
1960
-  (0.1ms) ROLLBACK
1961
-  (0.1ms) BEGIN
1962
- -------------------------
1963
- ModelTest: test_callbacks
1964
- -------------------------
1965
-  (0.1ms) SAVEPOINT active_record_1
1966
- SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:17:47.559730"], ["updated_at", "2016-12-14 06:17:47.559730"]]
1967
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1968
-  (0.1ms) SAVEPOINT active_record_1
1969
- SQL (0.3ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 06:17:47.585446"], ["id", 21]]
1970
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1971
-  (0.2ms) SAVEPOINT active_record_1
1972
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 21]]
1973
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1974
-  (0.1ms) ROLLBACK
1975
-  (0.1ms) BEGIN
1976
- -------------------------
1977
- ModelTest: test_singleton
1978
- -------------------------
1979
-  (0.1ms) ROLLBACK
1980
-  (0.1ms) BEGIN
1981
- --------------------------
1982
- RecordTest: test_callbacks
1983
- --------------------------
1984
-  (0.1ms) SAVEPOINT active_record_1
1985
- SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:17:47.596104"], ["updated_at", "2016-12-14 06:17:47.596104"]]
1986
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1987
-  (0.1ms) SAVEPOINT active_record_1
1988
- SQL (0.2ms) UPDATE "users" SET "name" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["name", "john"], ["updated_at", "2016-12-14 06:17:47.597480"], ["id", 22]]
1989
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1990
-  (0.1ms) SAVEPOINT active_record_1
1991
- SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = $1 [["id", 22]]
1992
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1993
-  (0.1ms) ROLLBACK
1994
-  (0.1ms) BEGIN
1995
- ------------------
1996
- TaskTest: test_all
1997
- ------------------
1998
-  (0.1ms) SAVEPOINT active_record_1
1999
- SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mike"], ["created_at", "2016-12-14 06:17:47.601508"], ["updated_at", "2016-12-14 06:17:47.601508"]]
2000
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2001
-  (0.1ms) SAVEPOINT active_record_1
2002
- SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "john"], ["created_at", "2016-12-14 06:17:47.602587"], ["updated_at", "2016-12-14 06:17:47.602587"]]
2003
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2004
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
2005
- User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
2006
- User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1000
2007
-  (0.1ms) ROLLBACK