query_report 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -19,7 +19,7 @@ concentrate in a report is the query and filter.
19
19
  Query report is tested with Rails 3. You can add it to your Gemfile with:
20
20
 
21
21
  ```ruby
22
- gem "query_report", "~> 1.0.2"
22
+ gem "query_report", "~> 1.0.3"
23
23
  ```
24
24
 
25
25
  Run the bundle command to install it.
@@ -29,9 +29,9 @@ module QueryReport
29
29
  def stringified_default
30
30
  @stringified_default ||= case @filter.type
31
31
  when :date
32
- @default.kind_of?(String) ? @default : I18n.l(@default, format: QueryReport.config.date_format)
32
+ @default.kind_of?(String) ? @default : (I18n.l(@default, format: QueryReport.config.date_format) rescue @default)
33
33
  when :datetime
34
- @default.kind_of?(String) ? @default : I18n.l(@default, format: QueryReport.config.datetime_format)
34
+ @default.kind_of?(String) ? @default : (I18n.l(@default, format: QueryReport.config.datetime_format) rescue @default)
35
35
  else
36
36
  @default.to_s
37
37
  end
@@ -1,3 +1,3 @@
1
1
  module QueryReport
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
@@ -38172,3 +38172,601 @@ Connecting to database specified by database.yml
38172
38172
  SQL (0.3ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Fri, 06 Sep 2013 16:16:40 UTC +00:00], ["dob", Thu, 06 Sep 1979 16:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Fri, 06 Sep 2013 16:16:40 UTC +00:00]]
38173
38173
   (0.1ms) commit transaction
38174
38174
  User Load (0.2ms) SELECT "users".* FROM "users"
38175
+ Connecting to database specified by database.yml
38176
+  (1.4ms) select sqlite_version(*)
38177
+  (0.2ms) CREATE TABLE "gem_defined_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer)
38178
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "dob" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38179
+  (0.1ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
38180
+  (0.1ms) CREATE TABLE "readerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer) 
38181
+  (0.1ms) CREATE TABLE "authorships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer)
38182
+  (0.1ms) CREATE TABLE "user_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "user_id" integer) 
38183
+  (0.0ms) begin transaction
38184
+ SQL (35.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 30], ["created_at", Sat, 07 Sep 2013 11:13:04 UTC +00:00], ["dob", nil], ["name", "Jitu"], ["updated_at", Sat, 07 Sep 2013 11:13:04 UTC +00:00]]
38185
+  (0.0ms) commit transaction
38186
+  (0.0ms) begin transaction
38187
+ SQL (0.1ms) INSERT INTO "readerships" ("book_id", "user_id") VALUES (?, ?) [["book_id", nil], ["user_id", 1]]
38188
+  (0.0ms) commit transaction
38189
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
38190
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38191
+  (0.0ms) begin transaction
38192
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
38193
+  (0.0ms) commit transaction
38194
+  (0.0ms) begin transaction
38195
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38196
+  (0.0ms) commit transaction
38197
+  (0.0ms) begin transaction
38198
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38199
+  (0.0ms) commit transaction
38200
+  (0.0ms) begin transaction
38201
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38202
+  (0.0ms) commit transaction
38203
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."age" = 34 LIMIT 25 OFFSET 0
38204
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38205
+  (0.0ms) begin transaction
38206
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
38207
+  (0.0ms) commit transaction
38208
+  (0.0ms) begin transaction
38209
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
38210
+  (0.0ms) commit transaction
38211
+  (0.0ms) begin transaction
38212
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
38213
+  (0.0ms) commit transaction
38214
+  (0.0ms) begin transaction
38215
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38216
+  (0.0ms) commit transaction
38217
+  (0.0ms) begin transaction
38218
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38219
+  (0.0ms) commit transaction
38220
+  (0.0ms) begin transaction
38221
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38222
+  (0.0ms) commit transaction
38223
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."age" = 10 AND "users"."created_at" >= '2013-04-07 00:00:00.000000' AND "users"."created_at" <= '2013-10-07 00:00:00.000000')) LIMIT 25 OFFSET 0
38224
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38225
+  (0.0ms) begin transaction
38226
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
38227
+  (0.0ms) commit transaction
38228
+  (0.0ms) begin transaction
38229
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
38230
+  (0.0ms) commit transaction
38231
+  (0.0ms) begin transaction
38232
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
38233
+  (0.0ms) commit transaction
38234
+  (0.0ms) begin transaction
38235
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38236
+  (0.0ms) commit transaction
38237
+  (0.0ms) begin transaction
38238
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38239
+  (0.0ms) commit transaction
38240
+  (0.0ms) begin transaction
38241
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38242
+  (0.0ms) commit transaction
38243
+ User Load (0.1ms) SELECT "users".* FROM "users"
38244
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38245
+  (0.0ms) begin transaction
38246
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
38247
+  (0.0ms) commit transaction
38248
+  (0.0ms) begin transaction
38249
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 9]]
38250
+  (0.0ms) commit transaction
38251
+  (0.0ms) begin transaction
38252
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 10]]
38253
+  (0.0ms) commit transaction
38254
+  (0.0ms) begin transaction
38255
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38256
+  (0.0ms) commit transaction
38257
+  (0.0ms) begin transaction
38258
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38259
+  (0.0ms) commit transaction
38260
+  (0.0ms) begin transaction
38261
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38262
+  (0.0ms) commit transaction
38263
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
38264
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38265
+  (0.0ms) begin transaction
38266
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 11]]
38267
+  (0.0ms) commit transaction
38268
+  (0.0ms) begin transaction
38269
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 12]]
38270
+  (0.0ms) commit transaction
38271
+  (0.0ms) begin transaction
38272
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 13]]
38273
+  (0.0ms) commit transaction
38274
+  (0.0ms) begin transaction
38275
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38276
+  (0.0ms) commit transaction
38277
+  (0.0ms) begin transaction
38278
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:13:05 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38279
+  (0.0ms) commit transaction
38280
+  (0.0ms) begin transaction
38281
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:05 UTC +00:00]]
38282
+  (0.0ms) commit transaction
38283
+  (0.1ms) SELECT AVG("users"."age") AS avg_id FROM "users"
38284
+  (0.0ms) SELECT AVG("users"."age") AS avg_id FROM "users" 
38285
+ User Load (0.1ms) SELECT "users".* FROM "users"
38286
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38287
+  (0.0ms) begin transaction
38288
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 14]]
38289
+  (0.0ms) commit transaction
38290
+  (0.0ms) begin transaction
38291
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 15]]
38292
+  (0.0ms) commit transaction
38293
+  (0.0ms) begin transaction
38294
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 16]]
38295
+  (0.0ms) commit transaction
38296
+  (0.0ms) begin transaction
38297
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38298
+  (0.0ms) commit transaction
38299
+  (0.0ms) begin transaction
38300
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:13:06 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38301
+  (0.0ms) commit transaction
38302
+  (0.0ms) begin transaction
38303
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38304
+  (0.0ms) commit transaction
38305
+ User Load (0.1ms) SELECT "users".* FROM "users"
38306
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38307
+  (0.0ms) begin transaction
38308
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 17]]
38309
+  (0.0ms) commit transaction
38310
+  (0.0ms) begin transaction
38311
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 18]]
38312
+  (0.0ms) commit transaction
38313
+  (0.0ms) begin transaction
38314
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 19]]
38315
+  (0.0ms) commit transaction
38316
+  (0.0ms) begin transaction
38317
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:13:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38318
+  (0.0ms) commit transaction
38319
+  (0.0ms) begin transaction
38320
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:13:06 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38321
+  (0.0ms) commit transaction
38322
+  (0.0ms) begin transaction
38323
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:13:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:13:06 UTC +00:00]]
38324
+  (0.0ms) commit transaction
38325
+ User Load (0.1ms) SELECT "users".* FROM "users"
38326
+ Connecting to database specified by database.yml
38327
+  (1.5ms) select sqlite_version(*)
38328
+  (0.2ms) CREATE TABLE "gem_defined_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer)
38329
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "dob" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38330
+  (0.1ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
38331
+  (0.1ms) CREATE TABLE "readerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer) 
38332
+  (0.1ms) CREATE TABLE "authorships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer)
38333
+  (0.1ms) CREATE TABLE "user_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "user_id" integer) 
38334
+ User Load (1.0ms) SELECT "users".* FROM "users"
38335
+  (0.0ms) begin transaction
38336
+ SQL (2.7ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38337
+  (0.0ms) commit transaction
38338
+  (0.0ms) begin transaction
38339
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:15:05 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38340
+  (0.0ms) commit transaction
38341
+  (0.0ms) begin transaction
38342
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38343
+  (0.0ms) commit transaction
38344
+ User Load (0.1ms) SELECT "users".* FROM "users"
38345
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38346
+  (0.0ms) begin transaction
38347
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
38348
+  (0.0ms) commit transaction
38349
+  (0.0ms) begin transaction
38350
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
38351
+  (0.0ms) commit transaction
38352
+  (0.0ms) begin transaction
38353
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
38354
+  (0.0ms) commit transaction
38355
+  (0.0ms) begin transaction
38356
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:05 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38357
+  (0.0ms) commit transaction
38358
+  (0.0ms) begin transaction
38359
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:15:05 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38360
+  (0.0ms) commit transaction
38361
+  (0.0ms) begin transaction
38362
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:05 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:05 UTC +00:00]]
38363
+  (0.0ms) commit transaction
38364
+  (0.1ms) SELECT AVG("users"."age") AS avg_id FROM "users"
38365
+  (0.0ms) SELECT AVG("users"."age") AS avg_id FROM "users" 
38366
+ User Load (0.1ms) SELECT "users".* FROM "users"
38367
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38368
+  (0.0ms) begin transaction
38369
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
38370
+  (0.0ms) commit transaction
38371
+  (0.0ms) begin transaction
38372
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
38373
+  (0.0ms) commit transaction
38374
+  (0.0ms) begin transaction
38375
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
38376
+  (0.0ms) commit transaction
38377
+  (0.0ms) begin transaction
38378
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38379
+  (0.0ms) commit transaction
38380
+  (0.0ms) begin transaction
38381
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:15:06 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38382
+  (0.0ms) commit transaction
38383
+  (0.0ms) begin transaction
38384
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38385
+  (0.0ms) commit transaction
38386
+ User Load (0.1ms) SELECT "users".* FROM "users"
38387
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38388
+  (0.0ms) begin transaction
38389
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
38390
+  (0.0ms) commit transaction
38391
+  (0.0ms) begin transaction
38392
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
38393
+  (0.0ms) commit transaction
38394
+  (0.0ms) begin transaction
38395
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 9]]
38396
+  (0.0ms) commit transaction
38397
+  (0.0ms) begin transaction
38398
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38399
+  (0.0ms) commit transaction
38400
+  (0.0ms) begin transaction
38401
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38402
+  (0.0ms) commit transaction
38403
+  (0.0ms) begin transaction
38404
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38405
+  (0.0ms) commit transaction
38406
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."age" = 34 LIMIT 25 OFFSET 0
38407
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38408
+  (0.0ms) begin transaction
38409
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 10]]
38410
+  (0.0ms) commit transaction
38411
+  (0.0ms) begin transaction
38412
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 11]]
38413
+  (0.0ms) commit transaction
38414
+  (0.0ms) begin transaction
38415
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 12]]
38416
+  (0.0ms) commit transaction
38417
+  (0.0ms) begin transaction
38418
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38419
+  (0.0ms) commit transaction
38420
+  (0.0ms) begin transaction
38421
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38422
+  (0.0ms) commit transaction
38423
+  (0.0ms) begin transaction
38424
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38425
+  (0.0ms) commit transaction
38426
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."age" = 10 AND "users"."dob" >= '1993-09-07 00:00:00.000000' AND "users"."dob" <= '2013-10-07 00:00:00.000000')) LIMIT 25 OFFSET 0
38427
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38428
+  (0.0ms) begin transaction
38429
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 13]]
38430
+  (0.0ms) commit transaction
38431
+  (0.0ms) begin transaction
38432
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 14]]
38433
+  (0.0ms) commit transaction
38434
+  (0.0ms) begin transaction
38435
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 15]]
38436
+  (0.0ms) commit transaction
38437
+  (0.0ms) begin transaction
38438
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:06 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38439
+  (0.0ms) commit transaction
38440
+  (0.0ms) begin transaction
38441
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38442
+  (0.0ms) commit transaction
38443
+  (0.0ms) begin transaction
38444
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:06 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:06 UTC +00:00]]
38445
+  (0.0ms) commit transaction
38446
+ User Load (0.2ms) SELECT "users".* FROM "users"
38447
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38448
+  (0.0ms) begin transaction
38449
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 16]]
38450
+  (0.0ms) commit transaction
38451
+  (0.0ms) begin transaction
38452
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 17]]
38453
+  (0.0ms) commit transaction
38454
+  (0.0ms) begin transaction
38455
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 18]]
38456
+  (0.0ms) commit transaction
38457
+  (0.0ms) begin transaction
38458
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:15:07 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00]]
38459
+  (0.0ms) commit transaction
38460
+  (0.0ms) begin transaction
38461
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00]]
38462
+  (0.0ms) commit transaction
38463
+  (0.0ms) begin transaction
38464
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:15:07 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00]]
38465
+  (0.0ms) commit transaction
38466
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
38467
+  (0.0ms) begin transaction
38468
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 30], ["created_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00], ["dob", nil], ["name", "Jitu"], ["updated_at", Sat, 07 Sep 2013 11:15:07 UTC +00:00]]
38469
+  (0.0ms) commit transaction
38470
+  (0.0ms) begin transaction
38471
+ SQL (0.1ms) INSERT INTO "readerships" ("book_id", "user_id") VALUES (?, ?) [["book_id", nil], ["user_id", 22]]
38472
+  (0.0ms) commit transaction
38473
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 22 LIMIT 1
38474
+ Connecting to database specified by database.yml
38475
+  (1.4ms) select sqlite_version(*)
38476
+  (0.2ms) CREATE TABLE "gem_defined_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer)
38477
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "dob" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38478
+  (0.1ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
38479
+  (0.1ms) CREATE TABLE "readerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer) 
38480
+  (0.1ms) CREATE TABLE "authorships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer)
38481
+  (0.1ms) CREATE TABLE "user_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "user_id" integer) 
38482
+ User Load (0.9ms) SELECT "users".* FROM "users"
38483
+  (0.0ms) begin transaction
38484
+ SQL (2.8ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:40 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38485
+  (0.0ms) commit transaction
38486
+  (0.0ms) begin transaction
38487
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38488
+  (0.0ms) commit transaction
38489
+  (0.0ms) begin transaction
38490
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38491
+  (0.0ms) commit transaction
38492
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
38493
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38494
+  (0.0ms) begin transaction
38495
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
38496
+  (0.0ms) commit transaction
38497
+  (0.0ms) begin transaction
38498
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
38499
+  (0.0ms) commit transaction
38500
+  (0.0ms) begin transaction
38501
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
38502
+  (0.0ms) commit transaction
38503
+  (0.0ms) begin transaction
38504
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:40 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38505
+  (0.0ms) commit transaction
38506
+  (0.0ms) begin transaction
38507
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38508
+  (0.0ms) commit transaction
38509
+  (0.0ms) begin transaction
38510
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38511
+  (0.0ms) commit transaction
38512
+ User Load (0.1ms) SELECT "users".* FROM "users"
38513
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38514
+  (0.0ms) begin transaction
38515
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
38516
+  (0.0ms) commit transaction
38517
+  (0.0ms) begin transaction
38518
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
38519
+  (0.0ms) commit transaction
38520
+  (0.0ms) begin transaction
38521
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
38522
+  (0.0ms) commit transaction
38523
+  (0.0ms) begin transaction
38524
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:40 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38525
+  (0.0ms) commit transaction
38526
+  (0.0ms) begin transaction
38527
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38528
+  (0.0ms) commit transaction
38529
+  (0.0ms) begin transaction
38530
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38531
+  (0.0ms) commit transaction
38532
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."dob" >= '1992-09-07 00:00:00.000000' AND "users"."dob" <= '2013-10-07 00:00:00.000000')) LIMIT 25 OFFSET 0
38533
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38534
+  (0.0ms) begin transaction
38535
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
38536
+  (0.0ms) commit transaction
38537
+  (0.0ms) begin transaction
38538
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
38539
+  (0.0ms) commit transaction
38540
+  (0.0ms) begin transaction
38541
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 9]]
38542
+  (0.0ms) commit transaction
38543
+  (0.0ms) begin transaction
38544
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:40 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38545
+  (0.0ms) commit transaction
38546
+  (0.0ms) begin transaction
38547
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", nil], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38548
+  (0.0ms) commit transaction
38549
+  (0.0ms) begin transaction
38550
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38551
+  (0.0ms) commit transaction
38552
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."age" = 34 LIMIT 25 OFFSET 0
38553
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38554
+  (0.0ms) begin transaction
38555
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 10]]
38556
+  (0.0ms) commit transaction
38557
+  (0.0ms) begin transaction
38558
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 11]]
38559
+  (0.0ms) commit transaction
38560
+  (0.0ms) begin transaction
38561
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 12]]
38562
+  (0.0ms) commit transaction
38563
+  (0.0ms) begin transaction
38564
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:40 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38565
+  (0.0ms) commit transaction
38566
+  (0.0ms) begin transaction
38567
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:16:40 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38568
+  (0.0ms) commit transaction
38569
+  (0.0ms) begin transaction
38570
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:40 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:40 UTC +00:00]]
38571
+  (0.0ms) commit transaction
38572
+ User Load (0.1ms) SELECT "users".* FROM "users"
38573
+ User Load (0.3ms) SELECT "users".* FROM "users" 
38574
+  (0.0ms) begin transaction
38575
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 13]]
38576
+  (0.0ms) commit transaction
38577
+  (0.0ms) begin transaction
38578
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 14]]
38579
+  (0.0ms) commit transaction
38580
+  (0.0ms) begin transaction
38581
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 15]]
38582
+  (0.0ms) commit transaction
38583
+  (0.0ms) begin transaction
38584
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:41 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00]]
38585
+  (0.0ms) commit transaction
38586
+  (0.0ms) begin transaction
38587
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:16:41 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00]]
38588
+  (0.0ms) commit transaction
38589
+  (0.0ms) begin transaction
38590
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:41 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:41 UTC +00:00]]
38591
+  (0.0ms) commit transaction
38592
+  (0.1ms) SELECT AVG("users"."age") AS avg_id FROM "users"
38593
+  (0.0ms) SELECT AVG("users"."age") AS avg_id FROM "users" 
38594
+ User Load (0.1ms) SELECT "users".* FROM "users"
38595
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38596
+  (0.0ms) begin transaction
38597
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 16]]
38598
+  (0.0ms) commit transaction
38599
+  (0.0ms) begin transaction
38600
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 17]]
38601
+  (0.0ms) commit transaction
38602
+  (0.0ms) begin transaction
38603
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 18]]
38604
+  (0.0ms) commit transaction
38605
+  (0.0ms) begin transaction
38606
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:16:42 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00]]
38607
+  (0.0ms) commit transaction
38608
+  (0.0ms) begin transaction
38609
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:16:42 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00]]
38610
+  (0.0ms) commit transaction
38611
+  (0.0ms) begin transaction
38612
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:16:42 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00]]
38613
+  (0.0ms) commit transaction
38614
+ User Load (0.1ms) SELECT "users".* FROM "users"
38615
+  (0.0ms) begin transaction
38616
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 30], ["created_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00], ["dob", nil], ["name", "Jitu"], ["updated_at", Sat, 07 Sep 2013 11:16:42 UTC +00:00]]
38617
+  (0.0ms) commit transaction
38618
+  (0.0ms) begin transaction
38619
+ SQL (0.1ms) INSERT INTO "readerships" ("book_id", "user_id") VALUES (?, ?) [["book_id", nil], ["user_id", 22]]
38620
+  (0.0ms) commit transaction
38621
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 22 LIMIT 1
38622
+ Connecting to database specified by database.yml
38623
+  (1.6ms) select sqlite_version(*)
38624
+  (0.2ms) CREATE TABLE "gem_defined_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer)
38625
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "dob" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38626
+  (0.1ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255))
38627
+  (0.1ms) CREATE TABLE "readerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer) 
38628
+  (0.1ms) CREATE TABLE "authorships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "book_id" integer)
38629
+  (0.1ms) CREATE TABLE "user_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "street" varchar(255), "user_id" integer) 
38630
+ User Load (0.9ms) SELECT "users".* FROM "users"
38631
+  (0.0ms) begin transaction
38632
+ SQL (2.8ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:34 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00]]
38633
+  (0.0ms) commit transaction
38634
+  (0.0ms) begin transaction
38635
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:34 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00]]
38636
+  (0.0ms) commit transaction
38637
+  (0.0ms) begin transaction
38638
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:17:34 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:34 UTC +00:00]]
38639
+  (0.0ms) commit transaction
38640
+  (0.1ms) SELECT AVG("users"."age") AS avg_id FROM "users"
38641
+  (0.1ms) SELECT AVG("users"."age") AS avg_id FROM "users" 
38642
+ User Load (0.1ms) SELECT "users".* FROM "users"
38643
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38644
+  (0.0ms) begin transaction
38645
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
38646
+  (0.0ms) commit transaction
38647
+  (0.0ms) begin transaction
38648
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
38649
+  (0.0ms) commit transaction
38650
+  (0.0ms) begin transaction
38651
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
38652
+  (0.0ms) commit transaction
38653
+  (0.0ms) begin transaction
38654
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38655
+  (0.0ms) commit transaction
38656
+  (0.0ms) begin transaction
38657
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38658
+  (0.0ms) commit transaction
38659
+  (0.0ms) begin transaction
38660
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:17:35 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38661
+  (0.0ms) commit transaction
38662
+ User Load (0.1ms) SELECT "users".* FROM "users"
38663
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38664
+  (0.0ms) begin transaction
38665
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
38666
+  (0.0ms) commit transaction
38667
+  (0.0ms) begin transaction
38668
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
38669
+  (0.0ms) commit transaction
38670
+  (0.0ms) begin transaction
38671
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 6]]
38672
+  (0.0ms) commit transaction
38673
+  (0.0ms) begin transaction
38674
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38675
+  (0.0ms) commit transaction
38676
+  (0.0ms) begin transaction
38677
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38678
+  (0.0ms) commit transaction
38679
+  (0.0ms) begin transaction
38680
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Fri, 07 Sep 1979 11:17:35 UTC +00:00], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38681
+  (0.0ms) commit transaction
38682
+ User Load (0.1ms) SELECT "users".* FROM "users"
38683
+  (0.0ms) begin transaction
38684
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 30], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", nil], ["name", "Jitu"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38685
+  (0.0ms) commit transaction
38686
+  (0.0ms) begin transaction
38687
+ SQL (0.1ms) INSERT INTO "readerships" ("book_id", "user_id") VALUES (?, ?) [["book_id", nil], ["user_id", 10]]
38688
+  (0.0ms) commit transaction
38689
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 10 LIMIT 1
38690
+ User Load (0.1ms) SELECT "users".* FROM "users"
38691
+  (0.0ms) begin transaction
38692
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 7]]
38693
+  (0.0ms) commit transaction
38694
+  (0.0ms) begin transaction
38695
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 8]]
38696
+  (0.0ms) commit transaction
38697
+  (0.0ms) begin transaction
38698
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 9]]
38699
+  (0.0ms) commit transaction
38700
+  (0.0ms) begin transaction
38701
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 10]]
38702
+  (0.0ms) commit transaction
38703
+  (0.0ms) begin transaction
38704
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38705
+  (0.0ms) commit transaction
38706
+  (0.0ms) begin transaction
38707
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38708
+  (0.0ms) commit transaction
38709
+  (0.0ms) begin transaction
38710
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", nil], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38711
+  (0.0ms) commit transaction
38712
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."age" = 34 LIMIT 25 OFFSET 0
38713
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38714
+  (0.0ms) begin transaction
38715
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 11]]
38716
+  (0.0ms) commit transaction
38717
+  (0.0ms) begin transaction
38718
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 12]]
38719
+  (0.0ms) commit transaction
38720
+  (0.0ms) begin transaction
38721
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 13]]
38722
+  (0.0ms) commit transaction
38723
+  (0.0ms) begin transaction
38724
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38725
+  (0.0ms) commit transaction
38726
+  (0.0ms) begin transaction
38727
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38728
+  (0.0ms) commit transaction
38729
+  (0.0ms) begin transaction
38730
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", nil], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38731
+  (0.0ms) commit transaction
38732
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."dob" >= '1992-09-07 00:00:00.000000' AND "users"."dob" <= '2013-10-07 00:00:00.000000')) LIMIT 25 OFFSET 0
38733
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38734
+  (0.0ms) begin transaction
38735
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 14]]
38736
+  (0.0ms) commit transaction
38737
+  (0.0ms) begin transaction
38738
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 15]]
38739
+  (0.0ms) commit transaction
38740
+  (0.0ms) begin transaction
38741
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 16]]
38742
+  (0.0ms) commit transaction
38743
+  (0.0ms) begin transaction
38744
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38745
+  (0.0ms) commit transaction
38746
+  (0.0ms) begin transaction
38747
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38748
+  (0.0ms) commit transaction
38749
+  (0.0ms) begin transaction
38750
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", nil], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38751
+  (0.0ms) commit transaction
38752
+ User Load (0.2ms) SELECT "users".* FROM "users"
38753
+ User Load (0.1ms) SELECT "users".* FROM "users" 
38754
+  (0.0ms) begin transaction
38755
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 17]]
38756
+  (0.0ms) commit transaction
38757
+  (0.0ms) begin transaction
38758
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 18]]
38759
+  (0.0ms) commit transaction
38760
+  (0.0ms) begin transaction
38761
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 19]]
38762
+  (0.0ms) commit transaction
38763
+  (0.0ms) begin transaction
38764
+ SQL (0.2ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 10], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Sun, 07 Sep 2003 11:17:35 UTC +00:00], ["name", "User#1"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38765
+  (0.0ms) commit transaction
38766
+  (0.0ms) begin transaction
38767
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 20], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", Tue, 07 Sep 1993 11:17:35 UTC +00:00], ["name", "User#2"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38768
+  (0.0ms) commit transaction
38769
+  (0.0ms) begin transaction
38770
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "dob", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["age", 34], ["created_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00], ["dob", nil], ["name", "User#3"], ["updated_at", Sat, 07 Sep 2013 11:17:35 UTC +00:00]]
38771
+  (0.0ms) commit transaction
38772
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 25 OFFSET 0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: query_report
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: