fun_with_json_api 0.0.8.1 → 0.0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ef49b8061c2d34d412b390a215ccf05986d677e
4
- data.tar.gz: d645c23cf5256b90d7c2b5609c632177a3f746b6
3
+ metadata.gz: d71babdb90d947dbd0f2bd870df7f3533d02f53d
4
+ data.tar.gz: bc0ac2fced2bcf61227c181f7014e88bbae8ef90
5
5
  SHA512:
6
- metadata.gz: 877be31228a2bcc505863f8ae8896191e8526b380f5d41ea080635730553a49ae0b50dd5160f47b2724caf4ad9bd782c965f4e46132fe47120cf03be899c2f6c
7
- data.tar.gz: fdf78cdf3b890363c5a14519f021d6c3aeb9bca4c4acd9ca595b28f356281f906dcf58a0b7dd8afff8dea261bfa3c58813ea417e22db67ace5896dec975b61d6
6
+ metadata.gz: 00eeedfbd311bf68aea7b4436fe25c9076bc4f32e4c6cda9df06dec54a33356fe875ea488f20f811a2417f024a86d485c3c920bc89e82aed2d8bfa80a3b62df4
7
+ data.tar.gz: bedef994edb9b4c3cf170f1339b38d1a842d09eeb8697bb9e45f5fdc573e0feee419dfb417efcd4808477974747d54125d1fa8931613ada08c7aab74ea9ce446
@@ -13,51 +13,58 @@ module FunWithJsonApi
13
13
  @deserializer = deserializer_class.create(deserializer_options)
14
14
  end
15
15
 
16
- # Loads a collection from the document
17
- # Use this method when implementinog a CollectionManager
18
- def load_collection(document)
19
- FunWithJsonApi::FindCollectionFromDocument.find(document, deserializer)
16
+ # Inserts a single record into a collection
17
+ # Must return true for a successful update, or return false for any failures
18
+ def insert_record(_record)
19
+ raise build_relationship_not_supported_exception(
20
+ "Override #{self.class.name}#insert_record",
21
+ insert_not_supported_message
22
+ )
23
+ end
24
+
25
+ # Removes a single record into a collection
26
+ # Must return true for a successful update, or return false for any failures
27
+ def remove_record(_record)
28
+ raise build_relationship_not_supported_exception(
29
+ "Override #{self.class.name}#remove_record",
30
+ remove_not_supported_message
31
+ )
20
32
  end
21
33
 
22
- # Inserts all records from a document into the parent resource
23
- # Either provide a block method that adds an individual item or override this method
34
+ # Inserts all records from a collection into the parent resource
24
35
  #
25
- # The block will be provided with a resource and must return true,
26
- # or an exception with a payload will be raised after all items have been iterated through
36
+ # Will attempt to call `insert_record` for each item in the `collection`.
37
+ # If false is received for any `insert_record` call, an exception with a payload will be raised
38
+ # after all items have been iterated through
27
39
  #
28
40
  # You need to reverse all changes made in the event of an exception,
29
41
  # wrapping an an ActiveRecord::Base.transaction block will usually work
30
- def insert_records(document, failure_message_or_callable = nil, &block)
31
- # Action is not supported unless overridden, or a block is defined
32
- unless block_given?
33
- raise build_relationship_not_supported_exception(
34
- "Override #{self.class.name}#insert_records or supply a block",
35
- insert_not_supported_message
36
- )
42
+ #
43
+ # Action is not supported unless `insert_records` or the `insert_record` method is overridden
44
+ def insert_records(collection, failure_message_or_callable = nil)
45
+ update_collection_items(collection, failure_message_or_callable) do |record|
46
+ insert_record(record)
37
47
  end
38
- update_collection_items(load_collection(document), failure_message_or_callable, &block)
39
48
  end
40
49
 
41
- # Removes all records from a document from the parent resource
42
- # Either provide a block method that removes an individual item or override this method
50
+ # Removes all records from a collection into the parent resource
43
51
  #
44
- # The block will be provided with a resource and must return true,
45
- # or an exception with a payload will be raised after all items have been iterated through
52
+ # Will attempt to call `remove_record` for each item in the `collection`.
53
+ # If false is received for any `remove_record` call, an exception with a payload will be raised
54
+ # after all items have been iterated through
46
55
  #
47
56
  # You need to reverse all changes made in the event of an exception,
48
57
  # wrapping an an ActiveRecord::Base.transaction block will usually work
49
- def remove_records(document, failure_message_or_callable = nil, &block)
50
- # Action is not supported unless overridden, or a block is defined
51
- unless block_given?
52
- raise build_relationship_not_supported_exception(
53
- "Override #{self.class.name}#remove_records or supply a block",
54
- remove_not_supported_message
55
- )
58
+ #
59
+ # Action is not supported unless `remove_records` or the `remove_record` method is overridden
60
+ def remove_records(collection, failure_message_or_callable = nil)
61
+ update_collection_items(collection, failure_message_or_callable) do |record|
62
+ remove_record(record)
56
63
  end
57
- update_collection_items(load_collection(document), failure_message_or_callable, &block)
58
64
  end
59
65
 
60
- def replace_all_records(_document)
66
+ # Replaces all records
67
+ def replace_all_records(_collection)
61
68
  # Action is not supported unless overridden
62
69
  raise build_relationship_not_supported_exception(
63
70
  "Override #{self.class.name}#replace_all_records to implement replace all",
@@ -1,3 +1,3 @@
1
1
  module FunWithJsonApi
2
- VERSION = '0.0.8.1'.freeze
2
+ VERSION = '0.0.8.2'.freeze
3
3
  end
@@ -302854,3 +302854,3419 @@ Unable to determine type for anonymous Deserializer
302854
302854
   (0.1ms) rollback transaction
302855
302855
   (0.1ms) begin transaction
302856
302856
   (0.1ms) rollback transaction
302857
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
302858
+  (0.2ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
302859
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
302860
+  (0.1ms) begin transaction
302861
+  (0.1ms) rollback transaction
302862
+  (0.1ms) begin transaction
302863
+  (0.1ms) rollback transaction
302864
+  (0.1ms) begin transaction
302865
+  (0.0ms) rollback transaction
302866
+  (0.0ms) begin transaction
302867
+  (0.0ms) rollback transaction
302868
+  (0.1ms) begin transaction
302869
+ Processing by AnonymousController#index as HTML
302870
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.18ms)
302871
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
302872
+  (0.1ms) rollback transaction
302873
+  (0.1ms) begin transaction
302874
+ Processing by AnonymousController#index as HTML
302875
+ [active_model_serializers] ARModels::Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
302876
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (26.75ms)
302877
+ Completed 200 OK in 42ms (Views: 33.1ms | ActiveRecord: 0.6ms)
302878
+  (0.1ms) rollback transaction
302879
+  (0.1ms) begin transaction
302880
+ Processing by AnonymousController#index as JSON_API
302881
+ Rendered text template (0.0ms)
302882
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
302883
+  (0.1ms) rollback transaction
302884
+  (0.1ms) begin transaction
302885
+ Processing by AnonymousController#index as JSON_API
302886
+ Rendered text template (0.0ms)
302887
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
302888
+  (0.1ms) rollback transaction
302889
+  (0.1ms) begin transaction
302890
+ Processing by AnonymousController#index as HTML
302891
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
302892
+ Rendered text template (0.0ms)
302893
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
302894
+  (0.1ms) rollback transaction
302895
+  (0.1ms) begin transaction
302896
+ Unable to determine type for anonymous Deserializer
302897
+ Unable to determine type for anonymous Deserializer
302898
+  (0.1ms) rollback transaction
302899
+  (0.1ms) begin transaction
302900
+  (0.0ms) rollback transaction
302901
+  (0.0ms) begin transaction
302902
+ Unable to determine type for anonymous Deserializer
302903
+ Unable to determine type for anonymous Deserializer
302904
+  (0.1ms) rollback transaction
302905
+  (0.1ms) begin transaction
302906
+  (0.0ms) rollback transaction
302907
+  (0.1ms) begin transaction
302908
+  (0.1ms) rollback transaction
302909
+  (0.1ms) begin transaction
302910
+  (0.0ms) rollback transaction
302911
+  (0.1ms) begin transaction
302912
+  (0.0ms) rollback transaction
302913
+  (0.1ms) begin transaction
302914
+  (0.0ms) rollback transaction
302915
+  (0.1ms) begin transaction
302916
+  (0.0ms) rollback transaction
302917
+  (0.1ms) begin transaction
302918
+  (0.0ms) rollback transaction
302919
+  (0.1ms) begin transaction
302920
+  (0.0ms) rollback transaction
302921
+  (0.1ms) begin transaction
302922
+ Processing by AnonymousController#index as HTML
302923
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (1.94ms)
302924
+ Completed 403 Forbidden in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
302925
+  (0.1ms) rollback transaction
302926
+  (0.1ms) begin transaction
302927
+ Processing by AnonymousController#index as HTML
302928
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.3ms)
302929
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
302930
+  (0.1ms) rollback transaction
302931
+  (0.1ms) begin transaction
302932
+ Processing by AnonymousController#index as HTML
302933
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.27ms)
302934
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
302935
+  (0.1ms) rollback transaction
302936
+  (0.1ms) begin transaction
302937
+ Processing by AnonymousController#index as HTML
302938
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.29ms)
302939
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
302940
+  (0.1ms) rollback transaction
302941
+  (0.1ms) begin transaction
302942
+ Processing by AnonymousController#index as HTML
302943
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.33ms)
302944
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
302945
+  (0.1ms) rollback transaction
302946
+  (0.1ms) begin transaction
302947
+ Processing by AnonymousController#index as HTML
302948
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.27ms)
302949
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
302950
+  (0.1ms) rollback transaction
302951
+  (0.1ms) begin transaction
302952
+  (0.0ms) rollback transaction
302953
+  (0.1ms) begin transaction
302954
+  (0.0ms) rollback transaction
302955
+  (0.1ms) begin transaction
302956
+  (0.1ms) rollback transaction
302957
+  (0.1ms) begin transaction
302958
+  (0.1ms) rollback transaction
302959
+  (0.1ms) begin transaction
302960
+  (0.1ms) rollback transaction
302961
+  (0.1ms) begin transaction
302962
+  (0.1ms) rollback transaction
302963
+  (0.1ms) begin transaction
302964
+  (0.1ms) rollback transaction
302965
+  (0.1ms) begin transaction
302966
+  (0.1ms) rollback transaction
302967
+  (0.1ms) begin transaction
302968
+  (0.1ms) rollback transaction
302969
+  (0.1ms) begin transaction
302970
+  (0.0ms) rollback transaction
302971
+  (0.1ms) begin transaction
302972
+  (0.0ms) rollback transaction
302973
+  (0.1ms) begin transaction
302974
+  (0.1ms) rollback transaction
302975
+  (0.1ms) begin transaction
302976
+  (0.1ms) SAVEPOINT active_record_1
302977
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 01:42:08.116359"], ["updated_at", "2016-04-04 01:42:08.116359"]]
302978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302979
+  (0.1ms) SAVEPOINT active_record_1
302980
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 01:42:08.118401"], ["updated_at", "2016-04-04 01:42:08.118401"]]
302981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302982
+  (0.0ms) SAVEPOINT active_record_1
302983
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 01:42:08.119749"], ["updated_at", "2016-04-04 01:42:08.119749"]]
302984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302985
+  (0.1ms) SAVEPOINT active_record_1
302986
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
302987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
302988
+  (0.0ms) SAVEPOINT active_record_1
302989
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
302990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302991
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
302992
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
302993
+ ARModels::Comment Load (0.2ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
302994
+ ARModels::Author Load (0.2ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
302995
+  (0.1ms) rollback transaction
302996
+  (0.1ms) begin transaction
302997
+  (0.0ms) SAVEPOINT active_record_1
302998
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 01:42:08.154681"], ["updated_at", "2016-04-04 01:42:08.154681"]]
302999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303000
+  (0.0ms) SAVEPOINT active_record_1
303001
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 01:42:08.156079"], ["updated_at", "2016-04-04 01:42:08.156079"]]
303002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303003
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
303004
+  (0.1ms) rollback transaction
303005
+  (0.0ms) begin transaction
303006
+  (0.0ms) SAVEPOINT active_record_1
303007
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 01:42:08.160271"], ["updated_at", "2016-04-04 01:42:08.160271"]]
303008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303009
+  (0.1ms) SAVEPOINT active_record_1
303010
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 01:42:08.161617"], ["updated_at", "2016-04-04 01:42:08.161617"]]
303011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303012
+  (0.1ms) SAVEPOINT active_record_1
303013
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
303014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303015
+  (0.0ms) SAVEPOINT active_record_1
303016
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
303017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303018
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303019
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303020
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
303021
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
303022
+  (0.1ms) rollback transaction
303023
+  (0.0ms) begin transaction
303024
+  (0.0ms) SAVEPOINT active_record_1
303025
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 01:42:08.169402"], ["updated_at", "2016-04-04 01:42:08.169402"]]
303026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303027
+  (0.0ms) SAVEPOINT active_record_1
303028
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 01:42:08.170749"], ["updated_at", "2016-04-04 01:42:08.170749"]]
303029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303030
+  (0.0ms) SAVEPOINT active_record_1
303031
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
303032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303033
+  (0.0ms) SAVEPOINT active_record_1
303034
+ SQL (0.0ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
303035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303036
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303037
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303038
+  (0.1ms) rollback transaction
303039
+  (0.1ms) begin transaction
303040
+  (0.0ms) SAVEPOINT active_record_1
303041
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 01:42:08.177952"], ["updated_at", "2016-04-04 01:42:08.177952"]]
303042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303043
+  (0.0ms) SAVEPOINT active_record_1
303044
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
303045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303046
+  (0.0ms) SAVEPOINT active_record_1
303047
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
303048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303049
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303050
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303051
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
303052
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
303053
+  (0.1ms) rollback transaction
303054
+  (0.1ms) begin transaction
303055
+  (0.0ms) rollback transaction
303056
+  (0.0ms) begin transaction
303057
+  (0.0ms) SAVEPOINT active_record_1
303058
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 01:42:08.187028"], ["updated_at", "2016-04-04 01:42:08.187028"]]
303059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303060
+  (0.1ms) SAVEPOINT active_record_1
303061
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 01:42:08.188610"], ["updated_at", "2016-04-04 01:42:08.188610"]]
303062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303063
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
303064
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
303065
+  (0.1ms) rollback transaction
303066
+  (0.1ms) begin transaction
303067
+  (0.0ms) SAVEPOINT active_record_1
303068
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 01:42:08.192880"], ["updated_at", "2016-04-04 01:42:08.192880"]]
303069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303070
+  (0.0ms) SAVEPOINT active_record_1
303071
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 01:42:08.194642"], ["updated_at", "2016-04-04 01:42:08.194642"]]
303072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303073
+  (0.0ms) SAVEPOINT active_record_1
303074
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 01:42:08.196586"], ["updated_at", "2016-04-04 01:42:08.196586"]]
303075
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303076
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
303077
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
303078
+  (0.1ms) rollback transaction
303079
+  (0.1ms) begin transaction
303080
+  (0.0ms) SAVEPOINT active_record_1
303081
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 01:42:08.201832"], ["updated_at", "2016-04-04 01:42:08.201832"]]
303082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303083
+  (0.1ms) SAVEPOINT active_record_1
303084
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 01:42:08.212171"], ["updated_at", "2016-04-04 01:42:08.212171"]]
303085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303086
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
303087
+  (0.0ms) rollback transaction
303088
+  (0.1ms) begin transaction
303089
+  (0.0ms) SAVEPOINT active_record_1
303090
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 01:42:08.215473"], ["updated_at", "2016-04-04 01:42:08.215473"]]
303091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303092
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
303093
+  (0.1ms) rollback transaction
303094
+  (0.1ms) begin transaction
303095
+  (0.0ms) rollback transaction
303096
+  (0.1ms) begin transaction
303097
+  (0.1ms) rollback transaction
303098
+  (0.1ms) begin transaction
303099
+  (0.0ms) rollback transaction
303100
+  (0.1ms) begin transaction
303101
+  (0.1ms) rollback transaction
303102
+  (0.1ms) begin transaction
303103
+  (0.1ms) rollback transaction
303104
+  (0.1ms) begin transaction
303105
+  (0.1ms) rollback transaction
303106
+  (0.1ms) begin transaction
303107
+  (0.0ms) rollback transaction
303108
+  (0.0ms) begin transaction
303109
+  (0.1ms) rollback transaction
303110
+  (0.1ms) begin transaction
303111
+  (0.1ms) rollback transaction
303112
+  (0.1ms) begin transaction
303113
+  (0.0ms) rollback transaction
303114
+  (0.1ms) begin transaction
303115
+  (0.0ms) SAVEPOINT active_record_1
303116
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 01:42:08.241625"], ["updated_at", "2016-04-04 01:42:08.241625"]]
303117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303118
+ Unable to determine type for anonymous Deserializer
303119
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
303120
+  (0.1ms) rollback transaction
303121
+  (0.1ms) begin transaction
303122
+ Unable to determine type for anonymous Deserializer
303123
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
303124
+  (0.1ms) rollback transaction
303125
+  (0.0ms) begin transaction
303126
+ Unable to determine type for anonymous Deserializer
303127
+  (0.1ms) rollback transaction
303128
+  (0.1ms) begin transaction
303129
+  (0.0ms) SAVEPOINT active_record_1
303130
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 01:42:08.251948"], ["updated_at", "2016-04-04 01:42:08.251948"]]
303131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303132
+ Unable to determine type for anonymous Deserializer
303133
+  (0.2ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303134
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303135
+  (0.1ms) rollback transaction
303136
+  (0.1ms) begin transaction
303137
+ Unable to determine type for anonymous Deserializer
303138
+  (0.1ms) rollback transaction
303139
+  (0.1ms) begin transaction
303140
+ Unable to determine type for anonymous Deserializer
303141
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303142
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303143
+  (0.0ms) rollback transaction
303144
+  (0.1ms) begin transaction
303145
+  (0.1ms) SAVEPOINT active_record_1
303146
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 01:42:08.264560"], ["updated_at", "2016-04-04 01:42:08.264560"]]
303147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303148
+  (0.0ms) SAVEPOINT active_record_1
303149
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 01:42:08.266149"], ["updated_at", "2016-04-04 01:42:08.266149"]]
303150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303151
+ Unable to determine type for anonymous Deserializer
303152
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303153
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303154
+  (0.1ms) rollback transaction
303155
+  (0.1ms) begin transaction
303156
+  (0.1ms) SAVEPOINT active_record_1
303157
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 01:42:08.273531"], ["updated_at", "2016-04-04 01:42:08.273531"]]
303158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303159
+  (0.0ms) SAVEPOINT active_record_1
303160
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 01:42:08.274985"], ["updated_at", "2016-04-04 01:42:08.274985"]]
303161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303162
+ Unable to determine type for anonymous Deserializer
303163
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303164
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303165
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
303166
+  (0.1ms) rollback transaction
303167
+  (0.1ms) begin transaction
303168
+ Unable to determine type for anonymous Deserializer
303169
+  (0.1ms) rollback transaction
303170
+  (0.1ms) begin transaction
303171
+ Unable to determine type for anonymous Deserializer
303172
+  (0.1ms) rollback transaction
303173
+  (0.1ms) begin transaction
303174
+ Unable to determine type for anonymous Deserializer
303175
+  (0.1ms) rollback transaction
303176
+  (0.1ms) begin transaction
303177
+ Unable to determine type for anonymous Deserializer
303178
+  (0.1ms) rollback transaction
303179
+  (0.1ms) begin transaction
303180
+ Unable to determine type for anonymous Deserializer
303181
+  (0.1ms) rollback transaction
303182
+  (0.1ms) begin transaction
303183
+  (0.0ms) rollback transaction
303184
+  (0.0ms) begin transaction
303185
+  (0.0ms) rollback transaction
303186
+  (0.1ms) begin transaction
303187
+ Unable to determine type for anonymous Deserializer
303188
+  (0.1ms) rollback transaction
303189
+  (0.1ms) begin transaction
303190
+ Unable to determine type for anonymous Deserializer
303191
+  (0.1ms) rollback transaction
303192
+  (0.1ms) begin transaction
303193
+ Unable to determine type for anonymous Deserializer
303194
+  (0.1ms) rollback transaction
303195
+  (0.1ms) begin transaction
303196
+ Unable to determine type for anonymous Deserializer
303197
+  (0.1ms) rollback transaction
303198
+  (0.1ms) begin transaction
303199
+ Unable to determine type for anonymous Deserializer
303200
+  (0.1ms) rollback transaction
303201
+  (0.3ms) begin transaction
303202
+ Unable to determine type for anonymous Deserializer
303203
+  (0.1ms) rollback transaction
303204
+  (0.1ms) begin transaction
303205
+ Unable to determine type for anonymous Deserializer
303206
+  (0.1ms) rollback transaction
303207
+  (0.1ms) begin transaction
303208
+ Unable to determine type for anonymous Deserializer
303209
+  (0.1ms) rollback transaction
303210
+  (0.1ms) begin transaction
303211
+ Unable to determine type for anonymous Deserializer
303212
+  (0.1ms) rollback transaction
303213
+  (0.1ms) begin transaction
303214
+ Unable to determine type for anonymous Deserializer
303215
+  (0.1ms) rollback transaction
303216
+  (0.1ms) begin transaction
303217
+ Unable to determine type for anonymous Deserializer
303218
+  (0.1ms) rollback transaction
303219
+  (0.1ms) begin transaction
303220
+ Unable to determine type for anonymous Deserializer
303221
+  (0.1ms) rollback transaction
303222
+  (0.1ms) begin transaction
303223
+ Unable to determine type for anonymous Deserializer
303224
+  (0.1ms) rollback transaction
303225
+  (0.1ms) begin transaction
303226
+ Unable to determine type for anonymous Deserializer
303227
+  (0.1ms) rollback transaction
303228
+  (0.1ms) begin transaction
303229
+ Unable to determine type for anonymous Deserializer
303230
+  (0.1ms) rollback transaction
303231
+  (0.1ms) begin transaction
303232
+ Unable to determine type for anonymous Deserializer
303233
+  (0.1ms) rollback transaction
303234
+  (0.1ms) begin transaction
303235
+ Unable to determine type for anonymous Deserializer
303236
+  (0.1ms) rollback transaction
303237
+  (0.1ms) begin transaction
303238
+ Unable to determine type for anonymous Deserializer
303239
+  (0.1ms) rollback transaction
303240
+  (0.1ms) begin transaction
303241
+ Unable to determine type for anonymous Deserializer
303242
+  (0.1ms) rollback transaction
303243
+  (0.1ms) begin transaction
303244
+ Unable to determine type for anonymous Deserializer
303245
+  (0.1ms) rollback transaction
303246
+  (0.1ms) begin transaction
303247
+ Unable to determine type for anonymous Deserializer
303248
+  (0.1ms) rollback transaction
303249
+  (0.1ms) begin transaction
303250
+ Unable to determine type for anonymous Deserializer
303251
+  (0.1ms) rollback transaction
303252
+  (0.0ms) begin transaction
303253
+ Unable to determine type for anonymous Deserializer
303254
+  (0.1ms) rollback transaction
303255
+  (0.1ms) begin transaction
303256
+ Unable to determine type for anonymous Deserializer
303257
+  (0.1ms) rollback transaction
303258
+  (0.1ms) begin transaction
303259
+ Unable to determine type for anonymous Deserializer
303260
+  (0.1ms) rollback transaction
303261
+  (0.1ms) begin transaction
303262
+ Unable to determine type for anonymous Deserializer
303263
+  (0.1ms) rollback transaction
303264
+  (0.0ms) begin transaction
303265
+ Unable to determine type for anonymous Deserializer
303266
+  (0.1ms) rollback transaction
303267
+  (0.1ms) begin transaction
303268
+ Unable to determine type for anonymous Deserializer
303269
+  (0.1ms) rollback transaction
303270
+  (0.1ms) begin transaction
303271
+ Unable to determine type for anonymous Deserializer
303272
+  (0.1ms) rollback transaction
303273
+  (0.1ms) begin transaction
303274
+ Unable to determine type for anonymous Deserializer
303275
+  (0.1ms) rollback transaction
303276
+  (0.1ms) begin transaction
303277
+ Unable to determine type for anonymous Deserializer
303278
+  (0.1ms) rollback transaction
303279
+  (0.1ms) begin transaction
303280
+  (0.1ms) rollback transaction
303281
+  (0.0ms) begin transaction
303282
+  (0.1ms) rollback transaction
303283
+  (0.1ms) begin transaction
303284
+  (0.0ms) rollback transaction
303285
+  (0.1ms) begin transaction
303286
+  (0.0ms) rollback transaction
303287
+  (0.1ms) begin transaction
303288
+  (0.0ms) rollback transaction
303289
+  (0.0ms) begin transaction
303290
+  (0.0ms) rollback transaction
303291
+  (0.0ms) begin transaction
303292
+  (0.0ms) rollback transaction
303293
+  (0.1ms) begin transaction
303294
+  (0.0ms) rollback transaction
303295
+  (0.1ms) begin transaction
303296
+  (0.0ms) rollback transaction
303297
+  (0.0ms) begin transaction
303298
+  (0.0ms) rollback transaction
303299
+  (0.1ms) begin transaction
303300
+  (0.0ms) rollback transaction
303301
+  (0.0ms) begin transaction
303302
+  (0.1ms) rollback transaction
303303
+  (0.1ms) begin transaction
303304
+  (0.0ms) rollback transaction
303305
+  (0.0ms) begin transaction
303306
+  (0.0ms) rollback transaction
303307
+  (0.1ms) begin transaction
303308
+ Unable to determine type for anonymous Deserializer
303309
+  (0.1ms) rollback transaction
303310
+  (0.1ms) begin transaction
303311
+ Unable to determine type for anonymous Deserializer
303312
+  (0.1ms) rollback transaction
303313
+  (0.1ms) begin transaction
303314
+ Unable to determine type for anonymous Deserializer
303315
+  (0.1ms) rollback transaction
303316
+  (0.1ms) begin transaction
303317
+ Unable to determine type for anonymous Deserializer
303318
+  (0.1ms) rollback transaction
303319
+  (0.1ms) begin transaction
303320
+ Unable to determine type for anonymous Deserializer
303321
+  (0.1ms) rollback transaction
303322
+  (0.1ms) begin transaction
303323
+ Unable to determine type for anonymous Deserializer
303324
+  (0.1ms) rollback transaction
303325
+  (0.1ms) begin transaction
303326
+ Unable to determine type for anonymous Deserializer
303327
+  (0.1ms) rollback transaction
303328
+  (0.1ms) begin transaction
303329
+ Unable to determine type for anonymous Deserializer
303330
+  (0.1ms) rollback transaction
303331
+  (0.1ms) begin transaction
303332
+ Unable to determine type for anonymous Deserializer
303333
+  (0.1ms) rollback transaction
303334
+  (0.1ms) begin transaction
303335
+ Unable to determine type for anonymous Deserializer
303336
+  (0.1ms) rollback transaction
303337
+  (0.1ms) begin transaction
303338
+ Unable to determine type for anonymous Deserializer
303339
+  (0.1ms) rollback transaction
303340
+  (0.1ms) begin transaction
303341
+ Unable to determine type for anonymous Deserializer
303342
+  (0.1ms) rollback transaction
303343
+  (0.1ms) begin transaction
303344
+ Unable to determine type for anonymous Deserializer
303345
+  (0.1ms) rollback transaction
303346
+  (0.1ms) begin transaction
303347
+  (0.0ms) rollback transaction
303348
+  (0.0ms) begin transaction
303349
+  (0.1ms) rollback transaction
303350
+  (0.1ms) begin transaction
303351
+  (0.0ms) rollback transaction
303352
+  (0.1ms) begin transaction
303353
+  (0.1ms) rollback transaction
303354
+  (0.1ms) begin transaction
303355
+  (0.0ms) rollback transaction
303356
+  (0.1ms) begin transaction
303357
+  (0.0ms) rollback transaction
303358
+  (0.0ms) begin transaction
303359
+  (0.0ms) rollback transaction
303360
+  (0.0ms) begin transaction
303361
+  (0.1ms) rollback transaction
303362
+  (0.1ms) begin transaction
303363
+  (0.1ms) rollback transaction
303364
+  (0.1ms) begin transaction
303365
+  (0.0ms) rollback transaction
303366
+  (0.1ms) begin transaction
303367
+  (0.1ms) rollback transaction
303368
+  (0.1ms) begin transaction
303369
+  (0.1ms) rollback transaction
303370
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303371
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303372
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303373
+  (0.1ms) begin transaction
303374
+  (0.1ms) rollback transaction
303375
+  (0.1ms) begin transaction
303376
+  (0.0ms) rollback transaction
303377
+  (0.1ms) begin transaction
303378
+  (0.0ms) rollback transaction
303379
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303380
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303381
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303382
+  (0.6ms) begin transaction
303383
+  (0.1ms) rollback transaction
303384
+  (0.1ms) begin transaction
303385
+  (0.0ms) rollback transaction
303386
+  (0.0ms) begin transaction
303387
+  (0.0ms) rollback transaction
303388
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303389
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303390
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303391
+  (0.1ms) begin transaction
303392
+  (0.2ms) rollback transaction
303393
+  (0.1ms) begin transaction
303394
+  (0.0ms) rollback transaction
303395
+  (0.0ms) begin transaction
303396
+  (0.2ms) rollback transaction
303397
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303398
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303399
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303400
+  (0.1ms) begin transaction
303401
+  (0.1ms) rollback transaction
303402
+  (0.1ms) begin transaction
303403
+  (0.1ms) rollback transaction
303404
+  (0.1ms) begin transaction
303405
+  (0.1ms) rollback transaction
303406
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303407
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303408
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303409
+  (0.1ms) begin transaction
303410
+  (0.1ms) rollback transaction
303411
+  (0.1ms) begin transaction
303412
+  (0.1ms) rollback transaction
303413
+  (0.1ms) begin transaction
303414
+  (0.1ms) rollback transaction
303415
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303416
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303417
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303418
+  (0.1ms) begin transaction
303419
+  (0.1ms) rollback transaction
303420
+  (0.0ms) begin transaction
303421
+  (0.1ms) rollback transaction
303422
+  (0.1ms) begin transaction
303423
+  (0.1ms) rollback transaction
303424
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303425
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303426
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303427
+  (0.1ms) begin transaction
303428
+  (0.1ms) rollback transaction
303429
+  (0.1ms) begin transaction
303430
+  (0.1ms) rollback transaction
303431
+  (0.1ms) begin transaction
303432
+  (0.1ms) rollback transaction
303433
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303434
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303435
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303436
+  (0.1ms) begin transaction
303437
+  (0.1ms) rollback transaction
303438
+  (0.1ms) begin transaction
303439
+  (0.0ms) rollback transaction
303440
+  (0.1ms) begin transaction
303441
+  (0.0ms) rollback transaction
303442
+  (0.0ms) begin transaction
303443
+  (0.1ms) rollback transaction
303444
+  (0.1ms) begin transaction
303445
+  (0.1ms) rollback transaction
303446
+  (0.1ms) begin transaction
303447
+  (0.1ms) rollback transaction
303448
+  (0.1ms) begin transaction
303449
+  (0.1ms) rollback transaction
303450
+  (0.1ms) begin transaction
303451
+  (0.1ms) rollback transaction
303452
+  (0.1ms) begin transaction
303453
+  (0.1ms) rollback transaction
303454
+  (0.1ms) begin transaction
303455
+  (0.1ms) rollback transaction
303456
+  (0.1ms) begin transaction
303457
+  (0.2ms) rollback transaction
303458
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303459
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303460
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303461
+  (0.1ms) begin transaction
303462
+  (0.1ms) rollback transaction
303463
+  (0.1ms) begin transaction
303464
+  (0.1ms) rollback transaction
303465
+  (0.1ms) begin transaction
303466
+  (0.1ms) rollback transaction
303467
+  (0.1ms) begin transaction
303468
+  (0.1ms) rollback transaction
303469
+  (0.0ms) begin transaction
303470
+  (0.1ms) rollback transaction
303471
+  (0.0ms) begin transaction
303472
+  (0.0ms) rollback transaction
303473
+  (0.1ms) begin transaction
303474
+  (0.0ms) rollback transaction
303475
+  (0.0ms) begin transaction
303476
+  (0.0ms) rollback transaction
303477
+  (0.1ms) begin transaction
303478
+  (0.1ms) rollback transaction
303479
+  (0.2ms) begin transaction
303480
+  (0.1ms) rollback transaction
303481
+  (0.1ms) begin transaction
303482
+  (0.0ms) rollback transaction
303483
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303484
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303485
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303486
+  (0.1ms) begin transaction
303487
+  (0.1ms) rollback transaction
303488
+  (0.1ms) begin transaction
303489
+  (0.1ms) rollback transaction
303490
+  (0.0ms) begin transaction
303491
+  (0.0ms) rollback transaction
303492
+  (0.0ms) begin transaction
303493
+  (0.0ms) rollback transaction
303494
+  (0.1ms) begin transaction
303495
+  (0.1ms) rollback transaction
303496
+  (0.0ms) begin transaction
303497
+  (0.1ms) rollback transaction
303498
+  (0.0ms) begin transaction
303499
+  (0.1ms) rollback transaction
303500
+  (0.1ms) begin transaction
303501
+  (0.1ms) rollback transaction
303502
+  (0.1ms) begin transaction
303503
+  (0.0ms) rollback transaction
303504
+  (0.1ms) begin transaction
303505
+  (0.0ms) rollback transaction
303506
+  (0.0ms) begin transaction
303507
+  (0.1ms) rollback transaction
303508
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303509
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303510
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303511
+  (0.1ms) begin transaction
303512
+  (0.1ms) rollback transaction
303513
+  (0.1ms) begin transaction
303514
+  (0.1ms) rollback transaction
303515
+  (0.1ms) begin transaction
303516
+  (0.1ms) rollback transaction
303517
+  (0.1ms) begin transaction
303518
+  (0.1ms) rollback transaction
303519
+  (0.1ms) begin transaction
303520
+  (0.0ms) rollback transaction
303521
+  (0.1ms) begin transaction
303522
+  (0.0ms) rollback transaction
303523
+  (0.1ms) begin transaction
303524
+  (0.1ms) rollback transaction
303525
+  (0.0ms) begin transaction
303526
+  (0.0ms) rollback transaction
303527
+  (0.0ms) begin transaction
303528
+  (0.0ms) rollback transaction
303529
+  (0.0ms) begin transaction
303530
+  (0.0ms) rollback transaction
303531
+  (0.0ms) begin transaction
303532
+  (0.1ms) rollback transaction
303533
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303534
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303535
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303536
+  (0.1ms) begin transaction
303537
+  (0.1ms) rollback transaction
303538
+  (0.1ms) begin transaction
303539
+  (0.1ms) rollback transaction
303540
+  (0.1ms) begin transaction
303541
+  (0.0ms) rollback transaction
303542
+  (0.0ms) begin transaction
303543
+  (0.1ms) rollback transaction
303544
+  (0.1ms) begin transaction
303545
+  (0.1ms) rollback transaction
303546
+  (0.1ms) begin transaction
303547
+  (0.0ms) rollback transaction
303548
+  (0.1ms) begin transaction
303549
+  (0.0ms) rollback transaction
303550
+  (0.1ms) begin transaction
303551
+  (0.0ms) rollback transaction
303552
+  (0.0ms) begin transaction
303553
+  (0.0ms) rollback transaction
303554
+  (0.1ms) begin transaction
303555
+  (0.0ms) rollback transaction
303556
+  (0.0ms) begin transaction
303557
+  (0.1ms) rollback transaction
303558
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303559
+  (0.2ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303560
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303561
+  (0.1ms) begin transaction
303562
+  (0.1ms) rollback transaction
303563
+  (0.1ms) begin transaction
303564
+  (0.1ms) rollback transaction
303565
+  (0.1ms) begin transaction
303566
+  (0.1ms) rollback transaction
303567
+  (0.1ms) begin transaction
303568
+  (0.1ms) rollback transaction
303569
+  (0.1ms) begin transaction
303570
+  (0.1ms) rollback transaction
303571
+  (0.0ms) begin transaction
303572
+  (0.0ms) rollback transaction
303573
+  (0.1ms) begin transaction
303574
+  (0.0ms) rollback transaction
303575
+  (0.1ms) begin transaction
303576
+  (0.0ms) rollback transaction
303577
+  (0.0ms) begin transaction
303578
+  (0.1ms) rollback transaction
303579
+  (0.0ms) begin transaction
303580
+  (0.0ms) rollback transaction
303581
+  (0.0ms) begin transaction
303582
+  (0.1ms) rollback transaction
303583
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303584
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303585
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303586
+  (0.1ms) begin transaction
303587
+  (0.1ms) rollback transaction
303588
+  (0.0ms) begin transaction
303589
+  (0.1ms) rollback transaction
303590
+  (0.1ms) begin transaction
303591
+  (0.0ms) rollback transaction
303592
+  (0.0ms) begin transaction
303593
+  (0.1ms) rollback transaction
303594
+  (0.1ms) begin transaction
303595
+  (0.1ms) rollback transaction
303596
+  (0.1ms) begin transaction
303597
+  (0.0ms) rollback transaction
303598
+  (0.0ms) begin transaction
303599
+  (0.0ms) rollback transaction
303600
+  (0.1ms) begin transaction
303601
+  (0.0ms) rollback transaction
303602
+  (0.1ms) begin transaction
303603
+  (0.1ms) rollback transaction
303604
+  (0.1ms) begin transaction
303605
+  (0.0ms) rollback transaction
303606
+  (0.1ms) begin transaction
303607
+  (0.1ms) rollback transaction
303608
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303609
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303610
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303611
+  (0.1ms) begin transaction
303612
+  (0.1ms) rollback transaction
303613
+  (0.1ms) begin transaction
303614
+  (0.0ms) rollback transaction
303615
+  (0.0ms) begin transaction
303616
+  (0.1ms) rollback transaction
303617
+  (0.0ms) begin transaction
303618
+  (0.0ms) rollback transaction
303619
+  (0.1ms) begin transaction
303620
+  (0.1ms) rollback transaction
303621
+  (0.0ms) begin transaction
303622
+  (0.1ms) rollback transaction
303623
+  (0.0ms) begin transaction
303624
+  (0.0ms) rollback transaction
303625
+  (0.0ms) begin transaction
303626
+  (0.1ms) rollback transaction
303627
+  (0.1ms) begin transaction
303628
+  (0.0ms) rollback transaction
303629
+  (0.1ms) begin transaction
303630
+  (0.0ms) rollback transaction
303631
+  (0.0ms) begin transaction
303632
+  (0.0ms) rollback transaction
303633
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303634
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303635
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303636
+  (0.4ms) begin transaction
303637
+  (0.1ms) rollback transaction
303638
+  (0.1ms) begin transaction
303639
+  (0.1ms) rollback transaction
303640
+  (0.1ms) begin transaction
303641
+  (0.1ms) rollback transaction
303642
+  (0.1ms) begin transaction
303643
+  (0.0ms) rollback transaction
303644
+  (0.1ms) begin transaction
303645
+  (0.1ms) rollback transaction
303646
+  (0.1ms) begin transaction
303647
+  (0.0ms) rollback transaction
303648
+  (0.1ms) begin transaction
303649
+  (0.1ms) rollback transaction
303650
+  (0.1ms) begin transaction
303651
+  (0.1ms) rollback transaction
303652
+  (0.1ms) begin transaction
303653
+  (0.0ms) rollback transaction
303654
+  (0.1ms) begin transaction
303655
+  (0.1ms) rollback transaction
303656
+  (0.0ms) begin transaction
303657
+  (0.0ms) rollback transaction
303658
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303659
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303660
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303661
+  (0.1ms) begin transaction
303662
+  (0.1ms) rollback transaction
303663
+  (0.1ms) begin transaction
303664
+  (0.1ms) rollback transaction
303665
+  (0.1ms) begin transaction
303666
+  (0.1ms) rollback transaction
303667
+  (0.1ms) begin transaction
303668
+  (0.1ms) rollback transaction
303669
+  (0.1ms) begin transaction
303670
+  (0.0ms) rollback transaction
303671
+  (0.1ms) begin transaction
303672
+  (0.0ms) rollback transaction
303673
+  (0.0ms) begin transaction
303674
+  (0.1ms) rollback transaction
303675
+  (0.1ms) begin transaction
303676
+  (0.0ms) rollback transaction
303677
+  (0.1ms) begin transaction
303678
+  (0.0ms) rollback transaction
303679
+  (0.1ms) begin transaction
303680
+  (0.0ms) rollback transaction
303681
+  (0.0ms) begin transaction
303682
+  (0.0ms) rollback transaction
303683
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303684
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303685
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303686
+  (0.1ms) begin transaction
303687
+  (0.1ms) rollback transaction
303688
+  (0.1ms) begin transaction
303689
+  (0.1ms) rollback transaction
303690
+  (0.1ms) begin transaction
303691
+  (0.0ms) rollback transaction
303692
+  (0.1ms) begin transaction
303693
+  (0.1ms) rollback transaction
303694
+  (0.1ms) begin transaction
303695
+  (0.1ms) rollback transaction
303696
+  (0.1ms) begin transaction
303697
+  (0.1ms) rollback transaction
303698
+  (0.1ms) begin transaction
303699
+  (0.0ms) rollback transaction
303700
+  (0.1ms) begin transaction
303701
+  (0.1ms) rollback transaction
303702
+  (0.0ms) begin transaction
303703
+  (0.0ms) rollback transaction
303704
+  (0.0ms) begin transaction
303705
+  (0.1ms) rollback transaction
303706
+  (0.1ms) begin transaction
303707
+  (0.0ms) rollback transaction
303708
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303709
+  (0.3ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
303710
+  (0.5ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
303711
+  (0.1ms) begin transaction
303712
+  (0.1ms) rollback transaction
303713
+  (0.1ms) begin transaction
303714
+  (0.1ms) rollback transaction
303715
+  (0.1ms) begin transaction
303716
+  (0.0ms) rollback transaction
303717
+  (0.1ms) begin transaction
303718
+  (0.1ms) rollback transaction
303719
+  (0.0ms) begin transaction
303720
+  (0.0ms) rollback transaction
303721
+  (0.0ms) begin transaction
303722
+  (0.0ms) rollback transaction
303723
+  (0.0ms) begin transaction
303724
+  (0.1ms) rollback transaction
303725
+  (0.1ms) begin transaction
303726
+  (0.1ms) rollback transaction
303727
+  (0.1ms) begin transaction
303728
+  (0.1ms) rollback transaction
303729
+  (0.1ms) begin transaction
303730
+  (0.0ms) rollback transaction
303731
+  (0.0ms) begin transaction
303732
+  (0.1ms) rollback transaction
303733
+  (0.1ms) begin transaction
303734
+  (0.0ms) rollback transaction
303735
+  (0.1ms) begin transaction
303736
+  (0.0ms) rollback transaction
303737
+  (0.0ms) begin transaction
303738
+  (0.0ms) rollback transaction
303739
+  (0.0ms) begin transaction
303740
+  (0.0ms) rollback transaction
303741
+  (0.1ms) begin transaction
303742
+  (0.0ms) rollback transaction
303743
+  (0.0ms) begin transaction
303744
+  (0.0ms) rollback transaction
303745
+  (0.1ms) begin transaction
303746
+  (0.0ms) rollback transaction
303747
+  (0.0ms) begin transaction
303748
+  (0.0ms) rollback transaction
303749
+  (0.1ms) begin transaction
303750
+  (0.0ms) rollback transaction
303751
+  (0.1ms) begin transaction
303752
+ Processing by AnonymousController#index as JSON_API
303753
+ Rendered text template (0.0ms)
303754
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
303755
+  (0.1ms) rollback transaction
303756
+  (0.1ms) begin transaction
303757
+ Processing by AnonymousController#index as JSON_API
303758
+ Rendered text template (0.0ms)
303759
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
303760
+  (0.1ms) rollback transaction
303761
+  (0.1ms) begin transaction
303762
+ Processing by AnonymousController#index as HTML
303763
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
303764
+ Rendered text template (0.1ms)
303765
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
303766
+  (0.1ms) rollback transaction
303767
+  (0.1ms) begin transaction
303768
+ Processing by AnonymousController#index as HTML
303769
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.14ms)
303770
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
303771
+  (0.1ms) rollback transaction
303772
+  (0.1ms) begin transaction
303773
+ Processing by AnonymousController#index as HTML
303774
+ [active_model_serializers] ARModels::Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
303775
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (21.99ms)
303776
+ Completed 200 OK in 33ms (Views: 25.3ms | ActiveRecord: 0.6ms)
303777
+  (0.2ms) rollback transaction
303778
+  (0.1ms) begin transaction
303779
+ Unable to determine type for anonymous Deserializer
303780
+ Unable to determine type for anonymous Deserializer
303781
+  (0.1ms) rollback transaction
303782
+  (0.1ms) begin transaction
303783
+  (0.0ms) rollback transaction
303784
+  (0.0ms) begin transaction
303785
+ Unable to determine type for anonymous Deserializer
303786
+ Unable to determine type for anonymous Deserializer
303787
+  (0.1ms) rollback transaction
303788
+  (0.1ms) begin transaction
303789
+  (0.2ms) rollback transaction
303790
+  (0.1ms) begin transaction
303791
+  (0.1ms) rollback transaction
303792
+  (0.1ms) begin transaction
303793
+  (0.1ms) rollback transaction
303794
+  (0.1ms) begin transaction
303795
+  (0.0ms) rollback transaction
303796
+  (0.1ms) begin transaction
303797
+  (0.0ms) rollback transaction
303798
+  (0.1ms) begin transaction
303799
+  (0.0ms) rollback transaction
303800
+  (0.1ms) begin transaction
303801
+  (0.1ms) rollback transaction
303802
+  (0.0ms) begin transaction
303803
+  (0.0ms) rollback transaction
303804
+  (0.1ms) begin transaction
303805
+  (0.1ms) rollback transaction
303806
+  (0.1ms) begin transaction
303807
+  (0.1ms) rollback transaction
303808
+  (0.1ms) begin transaction
303809
+  (0.1ms) rollback transaction
303810
+  (0.1ms) begin transaction
303811
+  (0.1ms) rollback transaction
303812
+  (0.1ms) begin transaction
303813
+  (0.0ms) rollback transaction
303814
+  (0.1ms) begin transaction
303815
+  (0.1ms) rollback transaction
303816
+  (0.1ms) begin transaction
303817
+  (0.1ms) rollback transaction
303818
+  (0.1ms) begin transaction
303819
+  (0.1ms) rollback transaction
303820
+  (0.1ms) begin transaction
303821
+  (0.0ms) rollback transaction
303822
+  (0.0ms) begin transaction
303823
+  (0.0ms) rollback transaction
303824
+  (0.1ms) begin transaction
303825
+  (0.0ms) rollback transaction
303826
+  (0.1ms) begin transaction
303827
+  (0.1ms) rollback transaction
303828
+  (0.1ms) begin transaction
303829
+  (0.1ms) rollback transaction
303830
+  (0.1ms) begin transaction
303831
+  (0.1ms) rollback transaction
303832
+  (0.0ms) begin transaction
303833
+  (0.1ms) rollback transaction
303834
+  (0.1ms) begin transaction
303835
+  (0.0ms) rollback transaction
303836
+  (0.1ms) begin transaction
303837
+  (0.1ms) rollback transaction
303838
+  (0.1ms) begin transaction
303839
+  (0.1ms) rollback transaction
303840
+  (0.1ms) begin transaction
303841
+  (0.1ms) rollback transaction
303842
+  (0.1ms) begin transaction
303843
+  (0.0ms) rollback transaction
303844
+  (0.1ms) begin transaction
303845
+  (0.0ms) rollback transaction
303846
+  (0.1ms) begin transaction
303847
+  (0.1ms) rollback transaction
303848
+  (0.1ms) begin transaction
303849
+  (0.0ms) rollback transaction
303850
+  (0.1ms) begin transaction
303851
+  (0.1ms) rollback transaction
303852
+  (0.1ms) begin transaction
303853
+  (0.0ms) rollback transaction
303854
+  (0.1ms) begin transaction
303855
+ Unable to determine type for anonymous Deserializer
303856
+  (0.1ms) rollback transaction
303857
+  (0.1ms) begin transaction
303858
+ Unable to determine type for anonymous Deserializer
303859
+  (0.1ms) rollback transaction
303860
+  (0.1ms) begin transaction
303861
+ Unable to determine type for anonymous Deserializer
303862
+  (0.1ms) rollback transaction
303863
+  (0.2ms) begin transaction
303864
+ Unable to determine type for anonymous Deserializer
303865
+  (0.1ms) rollback transaction
303866
+  (0.1ms) begin transaction
303867
+ Unable to determine type for anonymous Deserializer
303868
+  (0.1ms) rollback transaction
303869
+  (0.1ms) begin transaction
303870
+ Unable to determine type for anonymous Deserializer
303871
+  (0.1ms) rollback transaction
303872
+  (0.1ms) begin transaction
303873
+ Unable to determine type for anonymous Deserializer
303874
+  (0.1ms) rollback transaction
303875
+  (0.1ms) begin transaction
303876
+ Unable to determine type for anonymous Deserializer
303877
+  (0.1ms) rollback transaction
303878
+  (0.1ms) begin transaction
303879
+ Unable to determine type for anonymous Deserializer
303880
+  (0.1ms) rollback transaction
303881
+  (0.2ms) begin transaction
303882
+ Unable to determine type for anonymous Deserializer
303883
+  (0.1ms) rollback transaction
303884
+  (0.1ms) begin transaction
303885
+ Unable to determine type for anonymous Deserializer
303886
+  (0.1ms) rollback transaction
303887
+  (0.1ms) begin transaction
303888
+ Unable to determine type for anonymous Deserializer
303889
+  (0.1ms) rollback transaction
303890
+  (0.1ms) begin transaction
303891
+ Unable to determine type for anonymous Deserializer
303892
+  (0.1ms) rollback transaction
303893
+  (0.1ms) begin transaction
303894
+ Processing by AnonymousController#index as HTML
303895
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.51ms)
303896
+ Completed 403 Forbidden in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
303897
+  (0.1ms) rollback transaction
303898
+  (0.1ms) begin transaction
303899
+ Processing by AnonymousController#index as HTML
303900
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.27ms)
303901
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
303902
+  (0.1ms) rollback transaction
303903
+  (0.1ms) begin transaction
303904
+ Processing by AnonymousController#index as HTML
303905
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.32ms)
303906
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
303907
+  (0.1ms) rollback transaction
303908
+  (0.1ms) begin transaction
303909
+ Processing by AnonymousController#index as HTML
303910
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.31ms)
303911
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
303912
+  (0.1ms) rollback transaction
303913
+  (0.1ms) begin transaction
303914
+ Processing by AnonymousController#index as HTML
303915
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.24ms)
303916
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
303917
+  (0.1ms) rollback transaction
303918
+  (0.1ms) begin transaction
303919
+ Processing by AnonymousController#index as HTML
303920
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.23ms)
303921
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
303922
+  (0.1ms) rollback transaction
303923
+  (0.1ms) begin transaction
303924
+  (0.1ms) rollback transaction
303925
+  (0.1ms) begin transaction
303926
+  (0.0ms) SAVEPOINT active_record_1
303927
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:05:16.205430"], ["updated_at", "2016-04-04 02:05:16.205430"]]
303928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303929
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
303930
+  (0.1ms) rollback transaction
303931
+  (0.0ms) begin transaction
303932
+  (0.0ms) SAVEPOINT active_record_1
303933
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:05:16.212986"], ["updated_at", "2016-04-04 02:05:16.212986"]]
303934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303935
+  (0.0ms) SAVEPOINT active_record_1
303936
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:16.214358"], ["updated_at", "2016-04-04 02:05:16.214358"]]
303937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303938
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
303939
+  (0.1ms) rollback transaction
303940
+  (0.1ms) begin transaction
303941
+  (0.1ms) SAVEPOINT active_record_1
303942
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:16.219755"], ["updated_at", "2016-04-04 02:05:16.219755"]]
303943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303944
+  (0.1ms) SAVEPOINT active_record_1
303945
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
303946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303947
+  (8.7ms) SAVEPOINT active_record_1
303948
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
303949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303950
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303951
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303952
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
303953
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
303954
+  (0.1ms) rollback transaction
303955
+  (0.1ms) begin transaction
303956
+  (0.1ms) SAVEPOINT active_record_1
303957
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:16.242601"], ["updated_at", "2016-04-04 02:05:16.242601"]]
303958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303959
+  (0.0ms) SAVEPOINT active_record_1
303960
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:16.244074"], ["updated_at", "2016-04-04 02:05:16.244074"]]
303961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303962
+  (0.0ms) SAVEPOINT active_record_1
303963
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
303964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303965
+  (0.1ms) SAVEPOINT active_record_1
303966
+ SQL (0.0ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
303967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303968
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303969
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303970
+  (0.1ms) rollback transaction
303971
+  (0.0ms) begin transaction
303972
+  (0.0ms) SAVEPOINT active_record_1
303973
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:16.251384"], ["updated_at", "2016-04-04 02:05:16.251384"]]
303974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303975
+  (0.0ms) SAVEPOINT active_record_1
303976
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:16.253129"], ["updated_at", "2016-04-04 02:05:16.253129"]]
303977
+  (0.1ms) RELEASE SAVEPOINT active_record_1
303978
+  (0.0ms) SAVEPOINT active_record_1
303979
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 02:05:16.255081"], ["updated_at", "2016-04-04 02:05:16.255081"]]
303980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303981
+  (0.1ms) SAVEPOINT active_record_1
303982
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
303983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303984
+  (0.0ms) SAVEPOINT active_record_1
303985
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
303986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303987
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
303988
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
303989
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
303990
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
303991
+  (0.1ms) rollback transaction
303992
+  (0.1ms) begin transaction
303993
+  (0.0ms) SAVEPOINT active_record_1
303994
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:16.263293"], ["updated_at", "2016-04-04 02:05:16.263293"]]
303995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303996
+  (0.0ms) SAVEPOINT active_record_1
303997
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:16.265013"], ["updated_at", "2016-04-04 02:05:16.265013"]]
303998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
303999
+  (0.0ms) SAVEPOINT active_record_1
304000
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
304001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304002
+  (0.0ms) SAVEPOINT active_record_1
304003
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
304004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304005
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
304006
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
304007
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
304008
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
304009
+  (0.1ms) rollback transaction
304010
+  (0.1ms) begin transaction
304011
+  (0.0ms) SAVEPOINT active_record_1
304012
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:16.273953"], ["updated_at", "2016-04-04 02:05:16.273953"]]
304013
+  (0.2ms) RELEASE SAVEPOINT active_record_1
304014
+  (0.0ms) SAVEPOINT active_record_1
304015
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:16.275682"], ["updated_at", "2016-04-04 02:05:16.275682"]]
304016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304017
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
304018
+  (0.1ms) rollback transaction
304019
+  (0.1ms) begin transaction
304020
+  (0.0ms) SAVEPOINT active_record_1
304021
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:05:16.280708"], ["updated_at", "2016-04-04 02:05:16.280708"]]
304022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304023
+  (0.0ms) SAVEPOINT active_record_1
304024
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 02:05:16.281961"], ["updated_at", "2016-04-04 02:05:16.281961"]]
304025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304026
+  (0.2ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
304027
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
304028
+  (0.1ms) rollback transaction
304029
+  (0.1ms) begin transaction
304030
+  (0.1ms) rollback transaction
304031
+  (0.1ms) begin transaction
304032
+  (0.0ms) SAVEPOINT active_record_1
304033
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:05:16.287859"], ["updated_at", "2016-04-04 02:05:16.287859"]]
304034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304035
+  (0.0ms) SAVEPOINT active_record_1
304036
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:16.289293"], ["updated_at", "2016-04-04 02:05:16.289293"]]
304037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304038
+  (0.0ms) SAVEPOINT active_record_1
304039
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 02:05:16.290399"], ["updated_at", "2016-04-04 02:05:16.290399"]]
304040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304041
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
304042
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
304043
+  (0.0ms) rollback transaction
304044
+  (0.1ms) begin transaction
304045
+ Unable to determine type for anonymous Deserializer
304046
+  (0.1ms) rollback transaction
304047
+  (0.1ms) begin transaction
304048
+ Unable to determine type for anonymous Deserializer
304049
+  (0.1ms) rollback transaction
304050
+  (0.1ms) begin transaction
304051
+ Unable to determine type for anonymous Deserializer
304052
+  (0.1ms) rollback transaction
304053
+  (0.1ms) begin transaction
304054
+ Unable to determine type for anonymous Deserializer
304055
+  (0.1ms) rollback transaction
304056
+  (0.1ms) begin transaction
304057
+ Unable to determine type for anonymous Deserializer
304058
+  (0.1ms) rollback transaction
304059
+  (0.0ms) begin transaction
304060
+  (0.1ms) SAVEPOINT active_record_1
304061
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:16.307348"], ["updated_at", "2016-04-04 02:05:16.307348"]]
304062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304063
+ Unable to determine type for anonymous Deserializer
304064
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304065
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304066
+  (0.1ms) rollback transaction
304067
+  (0.1ms) begin transaction
304068
+ Unable to determine type for anonymous Deserializer
304069
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304070
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304071
+  (0.0ms) rollback transaction
304072
+  (0.1ms) begin transaction
304073
+ Unable to determine type for anonymous Deserializer
304074
+  (0.1ms) rollback transaction
304075
+  (0.1ms) begin transaction
304076
+  (0.0ms) SAVEPOINT active_record_1
304077
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:16.319579"], ["updated_at", "2016-04-04 02:05:16.319579"]]
304078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304079
+  (0.0ms) SAVEPOINT active_record_1
304080
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:05:16.320977"], ["updated_at", "2016-04-04 02:05:16.320977"]]
304081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304082
+ Unable to determine type for anonymous Deserializer
304083
+  (0.3ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304084
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304085
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304086
+  (0.1ms) rollback transaction
304087
+  (0.0ms) begin transaction
304088
+  (0.1ms) SAVEPOINT active_record_1
304089
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:16.327331"], ["updated_at", "2016-04-04 02:05:16.327331"]]
304090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304091
+  (0.0ms) SAVEPOINT active_record_1
304092
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:05:16.328751"], ["updated_at", "2016-04-04 02:05:16.328751"]]
304093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304094
+ Unable to determine type for anonymous Deserializer
304095
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304096
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304097
+  (0.1ms) rollback transaction
304098
+  (0.1ms) begin transaction
304099
+ Unable to determine type for anonymous Deserializer
304100
+  (0.1ms) rollback transaction
304101
+  (0.1ms) begin transaction
304102
+  (0.0ms) SAVEPOINT active_record_1
304103
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:16.337797"], ["updated_at", "2016-04-04 02:05:16.337797"]]
304104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304105
+ Unable to determine type for anonymous Deserializer
304106
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304107
+  (0.1ms) rollback transaction
304108
+  (0.0ms) begin transaction
304109
+ Unable to determine type for anonymous Deserializer
304110
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304111
+  (0.0ms) rollback transaction
304112
+  (0.1ms) begin transaction
304113
+  (0.1ms) rollback transaction
304114
+  (0.1ms) begin transaction
304115
+  (0.0ms) rollback transaction
304116
+  (0.1ms) begin transaction
304117
+ Unable to determine type for anonymous Deserializer
304118
+  (0.1ms) rollback transaction
304119
+  (0.1ms) begin transaction
304120
+ Unable to determine type for anonymous Deserializer
304121
+  (0.1ms) rollback transaction
304122
+  (0.0ms) begin transaction
304123
+ Unable to determine type for anonymous Deserializer
304124
+  (0.1ms) rollback transaction
304125
+  (0.0ms) begin transaction
304126
+ Unable to determine type for anonymous Deserializer
304127
+  (0.1ms) rollback transaction
304128
+  (0.1ms) begin transaction
304129
+ Unable to determine type for anonymous Deserializer
304130
+  (0.1ms) rollback transaction
304131
+  (0.1ms) begin transaction
304132
+ Unable to determine type for anonymous Deserializer
304133
+  (0.1ms) rollback transaction
304134
+  (0.1ms) begin transaction
304135
+ Unable to determine type for anonymous Deserializer
304136
+  (0.1ms) rollback transaction
304137
+  (0.0ms) begin transaction
304138
+ Unable to determine type for anonymous Deserializer
304139
+  (0.1ms) rollback transaction
304140
+  (0.1ms) begin transaction
304141
+ Unable to determine type for anonymous Deserializer
304142
+  (0.1ms) rollback transaction
304143
+  (0.1ms) begin transaction
304144
+ Unable to determine type for anonymous Deserializer
304145
+  (0.1ms) rollback transaction
304146
+  (0.1ms) begin transaction
304147
+ Unable to determine type for anonymous Deserializer
304148
+  (0.1ms) rollback transaction
304149
+  (0.1ms) begin transaction
304150
+ Unable to determine type for anonymous Deserializer
304151
+  (0.1ms) rollback transaction
304152
+  (0.1ms) begin transaction
304153
+ Unable to determine type for anonymous Deserializer
304154
+  (0.1ms) rollback transaction
304155
+  (0.1ms) begin transaction
304156
+ Unable to determine type for anonymous Deserializer
304157
+  (0.1ms) rollback transaction
304158
+  (0.0ms) begin transaction
304159
+ Unable to determine type for anonymous Deserializer
304160
+  (0.1ms) rollback transaction
304161
+  (0.0ms) begin transaction
304162
+ Unable to determine type for anonymous Deserializer
304163
+  (0.1ms) rollback transaction
304164
+  (0.0ms) begin transaction
304165
+ Unable to determine type for anonymous Deserializer
304166
+  (0.1ms) rollback transaction
304167
+  (0.0ms) begin transaction
304168
+ Unable to determine type for anonymous Deserializer
304169
+  (0.1ms) rollback transaction
304170
+  (0.1ms) begin transaction
304171
+ Unable to determine type for anonymous Deserializer
304172
+  (0.1ms) rollback transaction
304173
+  (0.0ms) begin transaction
304174
+ Unable to determine type for anonymous Deserializer
304175
+  (0.1ms) rollback transaction
304176
+  (0.1ms) begin transaction
304177
+ Unable to determine type for anonymous Deserializer
304178
+  (0.1ms) rollback transaction
304179
+  (0.0ms) begin transaction
304180
+ Unable to determine type for anonymous Deserializer
304181
+  (0.1ms) rollback transaction
304182
+  (0.1ms) begin transaction
304183
+ Unable to determine type for anonymous Deserializer
304184
+  (0.1ms) rollback transaction
304185
+  (0.0ms) begin transaction
304186
+ Unable to determine type for anonymous Deserializer
304187
+  (0.1ms) rollback transaction
304188
+  (0.0ms) begin transaction
304189
+ Unable to determine type for anonymous Deserializer
304190
+  (0.1ms) rollback transaction
304191
+  (0.0ms) begin transaction
304192
+ Unable to determine type for anonymous Deserializer
304193
+  (0.1ms) rollback transaction
304194
+  (0.1ms) begin transaction
304195
+ Unable to determine type for anonymous Deserializer
304196
+  (0.2ms) rollback transaction
304197
+  (0.1ms) begin transaction
304198
+ Unable to determine type for anonymous Deserializer
304199
+  (0.0ms) rollback transaction
304200
+  (0.1ms) begin transaction
304201
+ Unable to determine type for anonymous Deserializer
304202
+  (0.1ms) rollback transaction
304203
+  (0.1ms) begin transaction
304204
+ Unable to determine type for anonymous Deserializer
304205
+  (0.1ms) rollback transaction
304206
+  (0.1ms) begin transaction
304207
+ Unable to determine type for anonymous Deserializer
304208
+  (0.1ms) rollback transaction
304209
+  (0.1ms) begin transaction
304210
+  (0.0ms) rollback transaction
304211
+  (0.0ms) begin transaction
304212
+  (0.0ms) rollback transaction
304213
+  (0.1ms) begin transaction
304214
+  (0.0ms) rollback transaction
304215
+  (0.0ms) begin transaction
304216
+  (0.0ms) rollback transaction
304217
+  (0.0ms) begin transaction
304218
+  (0.0ms) rollback transaction
304219
+  (0.0ms) begin transaction
304220
+  (0.0ms) rollback transaction
304221
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
304222
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
304223
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
304224
+  (0.1ms) begin transaction
304225
+  (0.1ms) rollback transaction
304226
+  (0.1ms) begin transaction
304227
+  (0.1ms) rollback transaction
304228
+  (0.0ms) begin transaction
304229
+  (0.1ms) rollback transaction
304230
+  (0.0ms) begin transaction
304231
+  (0.0ms) rollback transaction
304232
+  (0.1ms) begin transaction
304233
+  (0.1ms) rollback transaction
304234
+  (0.1ms) begin transaction
304235
+  (0.0ms) rollback transaction
304236
+  (0.0ms) begin transaction
304237
+  (0.1ms) rollback transaction
304238
+  (0.1ms) begin transaction
304239
+  (0.1ms) rollback transaction
304240
+  (0.1ms) begin transaction
304241
+  (0.0ms) rollback transaction
304242
+  (0.0ms) begin transaction
304243
+  (0.0ms) rollback transaction
304244
+  (0.0ms) begin transaction
304245
+  (0.1ms) rollback transaction
304246
+  (0.1ms) begin transaction
304247
+  (0.0ms) rollback transaction
304248
+  (0.0ms) begin transaction
304249
+  (0.1ms) SAVEPOINT active_record_1
304250
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:50.873867"], ["updated_at", "2016-04-04 02:05:50.873867"]]
304251
+  (0.2ms) RELEASE SAVEPOINT active_record_1
304252
+  (0.1ms) SAVEPOINT active_record_1
304253
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:50.882079"], ["updated_at", "2016-04-04 02:05:50.882079"]]
304254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304255
+  (0.1ms) SAVEPOINT active_record_1
304256
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
304257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304258
+  (0.0ms) SAVEPOINT active_record_1
304259
+ SQL (0.0ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
304260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304261
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
304262
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
304263
+  (0.1ms) rollback transaction
304264
+  (0.1ms) begin transaction
304265
+  (0.0ms) SAVEPOINT active_record_1
304266
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:50.909195"], ["updated_at", "2016-04-04 02:05:50.909195"]]
304267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304268
+  (0.0ms) SAVEPOINT active_record_1
304269
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:50.910610"], ["updated_at", "2016-04-04 02:05:50.910610"]]
304270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304271
+  (0.0ms) SAVEPOINT active_record_1
304272
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
304273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304274
+  (0.0ms) SAVEPOINT active_record_1
304275
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
304276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304277
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
304278
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
304279
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
304280
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
304281
+  (0.1ms) rollback transaction
304282
+  (0.1ms) begin transaction
304283
+  (0.0ms) SAVEPOINT active_record_1
304284
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:50.920030"], ["updated_at", "2016-04-04 02:05:50.920030"]]
304285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304286
+  (0.0ms) SAVEPOINT active_record_1
304287
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
304288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304289
+  (0.0ms) SAVEPOINT active_record_1
304290
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
304291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304292
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
304293
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
304294
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
304295
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
304296
+  (0.1ms) rollback transaction
304297
+  (0.1ms) begin transaction
304298
+  (0.0ms) SAVEPOINT active_record_1
304299
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:50.927429"], ["updated_at", "2016-04-04 02:05:50.927429"]]
304300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304301
+  (0.0ms) SAVEPOINT active_record_1
304302
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:05:50.928780"], ["updated_at", "2016-04-04 02:05:50.928780"]]
304303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304304
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
304305
+  (0.1ms) rollback transaction
304306
+  (0.1ms) begin transaction
304307
+  (0.0ms) SAVEPOINT active_record_1
304308
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:05:50.932532"], ["updated_at", "2016-04-04 02:05:50.932532"]]
304309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304310
+  (0.0ms) SAVEPOINT active_record_1
304311
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:50.933957"], ["updated_at", "2016-04-04 02:05:50.933957"]]
304312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304313
+  (0.0ms) SAVEPOINT active_record_1
304314
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 02:05:50.935073"], ["updated_at", "2016-04-04 02:05:50.935073"]]
304315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304316
+  (0.0ms) SAVEPOINT active_record_1
304317
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
304318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304319
+  (0.1ms) SAVEPOINT active_record_1
304320
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
304321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304322
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
304323
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
304324
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
304325
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
304326
+  (0.1ms) rollback transaction
304327
+  (0.0ms) begin transaction
304328
+  (0.0ms) SAVEPOINT active_record_1
304329
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:05:50.942786"], ["updated_at", "2016-04-04 02:05:50.942786"]]
304330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304331
+  (0.0ms) SAVEPOINT active_record_1
304332
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:50.944639"], ["updated_at", "2016-04-04 02:05:50.944639"]]
304333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304334
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
304335
+  (0.0ms) rollback transaction
304336
+  (0.1ms) begin transaction
304337
+  (0.1ms) SAVEPOINT active_record_1
304338
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:05:50.947659"], ["updated_at", "2016-04-04 02:05:50.947659"]]
304339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304340
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
304341
+  (0.0ms) rollback transaction
304342
+  (0.1ms) begin transaction
304343
+  (0.0ms) SAVEPOINT active_record_1
304344
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:05:50.950307"], ["updated_at", "2016-04-04 02:05:50.950307"]]
304345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304346
+  (0.0ms) SAVEPOINT active_record_1
304347
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:05:50.951649"], ["updated_at", "2016-04-04 02:05:50.951649"]]
304348
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304349
+  (0.0ms) SAVEPOINT active_record_1
304350
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 02:05:50.952704"], ["updated_at", "2016-04-04 02:05:50.952704"]]
304351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304352
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
304353
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
304354
+  (0.0ms) rollback transaction
304355
+  (0.1ms) begin transaction
304356
+  (0.0ms) SAVEPOINT active_record_1
304357
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:05:50.956296"], ["updated_at", "2016-04-04 02:05:50.956296"]]
304358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304359
+  (0.0ms) SAVEPOINT active_record_1
304360
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 02:05:50.957694"], ["updated_at", "2016-04-04 02:05:50.957694"]]
304361
+  (0.2ms) RELEASE SAVEPOINT active_record_1
304362
+  (0.2ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
304363
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
304364
+  (0.1ms) rollback transaction
304365
+  (0.0ms) begin transaction
304366
+  (0.0ms) rollback transaction
304367
+  (0.1ms) begin transaction
304368
+ Processing by AnonymousController#index as JSON_API
304369
+ Rendered text template (0.0ms)
304370
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
304371
+  (0.1ms) rollback transaction
304372
+  (0.1ms) begin transaction
304373
+ Processing by AnonymousController#index as JSON_API
304374
+ Rendered text template (0.0ms)
304375
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
304376
+  (0.1ms) rollback transaction
304377
+  (0.1ms) begin transaction
304378
+ Processing by AnonymousController#index as HTML
304379
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
304380
+ Rendered text template (0.1ms)
304381
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
304382
+  (0.1ms) rollback transaction
304383
+  (0.1ms) begin transaction
304384
+ Processing by AnonymousController#index as HTML
304385
+ [active_model_serializers] ARModels::Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
304386
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (16.57ms)
304387
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms)
304388
+  (0.1ms) rollback transaction
304389
+  (0.1ms) begin transaction
304390
+ Processing by AnonymousController#index as HTML
304391
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
304392
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
304393
+  (0.1ms) rollback transaction
304394
+  (0.1ms) begin transaction
304395
+ Unable to determine type for anonymous Deserializer
304396
+ Unable to determine type for anonymous Deserializer
304397
+  (0.1ms) rollback transaction
304398
+  (0.0ms) begin transaction
304399
+  (0.0ms) rollback transaction
304400
+  (0.1ms) begin transaction
304401
+ Unable to determine type for anonymous Deserializer
304402
+ Unable to determine type for anonymous Deserializer
304403
+  (0.1ms) rollback transaction
304404
+  (0.0ms) begin transaction
304405
+  (0.0ms) rollback transaction
304406
+  (0.1ms) begin transaction
304407
+  (0.0ms) rollback transaction
304408
+  (0.1ms) begin transaction
304409
+  (0.1ms) rollback transaction
304410
+  (0.1ms) begin transaction
304411
+  (0.0ms) rollback transaction
304412
+  (0.0ms) begin transaction
304413
+  (0.1ms) rollback transaction
304414
+  (0.0ms) begin transaction
304415
+  (0.0ms) rollback transaction
304416
+  (0.1ms) begin transaction
304417
+ Unable to determine type for anonymous Deserializer
304418
+  (0.1ms) rollback transaction
304419
+  (0.0ms) begin transaction
304420
+ Unable to determine type for anonymous Deserializer
304421
+  (0.1ms) rollback transaction
304422
+  (0.1ms) begin transaction
304423
+ Unable to determine type for anonymous Deserializer
304424
+  (0.1ms) rollback transaction
304425
+  (0.1ms) begin transaction
304426
+ Unable to determine type for anonymous Deserializer
304427
+  (0.1ms) rollback transaction
304428
+  (0.1ms) begin transaction
304429
+ Unable to determine type for anonymous Deserializer
304430
+  (0.1ms) rollback transaction
304431
+  (0.0ms) begin transaction
304432
+ Unable to determine type for anonymous Deserializer
304433
+  (0.1ms) rollback transaction
304434
+  (0.0ms) begin transaction
304435
+ Unable to determine type for anonymous Deserializer
304436
+  (0.1ms) rollback transaction
304437
+  (0.1ms) begin transaction
304438
+ Unable to determine type for anonymous Deserializer
304439
+  (0.1ms) rollback transaction
304440
+  (0.1ms) begin transaction
304441
+ Unable to determine type for anonymous Deserializer
304442
+  (0.1ms) rollback transaction
304443
+  (0.0ms) begin transaction
304444
+ Unable to determine type for anonymous Deserializer
304445
+  (0.1ms) rollback transaction
304446
+  (0.1ms) begin transaction
304447
+ Unable to determine type for anonymous Deserializer
304448
+  (0.1ms) rollback transaction
304449
+  (0.1ms) begin transaction
304450
+ Unable to determine type for anonymous Deserializer
304451
+  (0.1ms) rollback transaction
304452
+  (0.0ms) begin transaction
304453
+ Unable to determine type for anonymous Deserializer
304454
+  (0.1ms) rollback transaction
304455
+  (0.1ms) begin transaction
304456
+  (0.1ms) rollback transaction
304457
+  (0.1ms) begin transaction
304458
+  (0.0ms) rollback transaction
304459
+  (0.0ms) begin transaction
304460
+  (0.1ms) rollback transaction
304461
+  (0.0ms) begin transaction
304462
+  (0.0ms) rollback transaction
304463
+  (0.0ms) begin transaction
304464
+  (0.0ms) rollback transaction
304465
+  (0.0ms) begin transaction
304466
+  (0.1ms) rollback transaction
304467
+  (0.1ms) begin transaction
304468
+  (0.1ms) rollback transaction
304469
+  (0.1ms) begin transaction
304470
+  (0.1ms) rollback transaction
304471
+  (0.1ms) begin transaction
304472
+  (0.0ms) rollback transaction
304473
+  (0.0ms) begin transaction
304474
+  (0.0ms) rollback transaction
304475
+  (0.0ms) begin transaction
304476
+  (0.0ms) rollback transaction
304477
+  (0.0ms) begin transaction
304478
+  (0.0ms) rollback transaction
304479
+  (0.0ms) begin transaction
304480
+  (0.0ms) rollback transaction
304481
+  (0.0ms) begin transaction
304482
+  (0.0ms) rollback transaction
304483
+  (0.0ms) begin transaction
304484
+  (0.0ms) rollback transaction
304485
+  (0.0ms) begin transaction
304486
+  (0.0ms) rollback transaction
304487
+  (0.0ms) begin transaction
304488
+  (0.0ms) rollback transaction
304489
+  (0.1ms) begin transaction
304490
+  (0.1ms) rollback transaction
304491
+  (0.1ms) begin transaction
304492
+  (0.0ms) rollback transaction
304493
+  (0.1ms) begin transaction
304494
+  (0.1ms) rollback transaction
304495
+  (0.1ms) begin transaction
304496
+  (0.0ms) rollback transaction
304497
+  (0.1ms) begin transaction
304498
+  (0.1ms) rollback transaction
304499
+  (0.0ms) begin transaction
304500
+  (0.0ms) rollback transaction
304501
+  (0.0ms) begin transaction
304502
+  (0.1ms) rollback transaction
304503
+  (0.1ms) begin transaction
304504
+  (0.0ms) rollback transaction
304505
+  (0.1ms) begin transaction
304506
+  (0.0ms) rollback transaction
304507
+  (0.1ms) begin transaction
304508
+  (0.1ms) rollback transaction
304509
+  (0.0ms) begin transaction
304510
+  (0.0ms) rollback transaction
304511
+  (0.0ms) begin transaction
304512
+  (0.0ms) rollback transaction
304513
+  (0.0ms) begin transaction
304514
+  (0.1ms) rollback transaction
304515
+  (0.1ms) begin transaction
304516
+  (0.1ms) rollback transaction
304517
+  (0.1ms) begin transaction
304518
+  (0.0ms) rollback transaction
304519
+  (0.1ms) begin transaction
304520
+  (0.0ms) rollback transaction
304521
+  (0.1ms) begin transaction
304522
+  (0.1ms) rollback transaction
304523
+  (0.1ms) begin transaction
304524
+ Processing by AnonymousController#index as HTML
304525
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.54ms)
304526
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
304527
+  (0.1ms) rollback transaction
304528
+  (0.1ms) begin transaction
304529
+ Processing by AnonymousController#index as HTML
304530
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.42ms)
304531
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
304532
+  (0.1ms) rollback transaction
304533
+  (0.1ms) begin transaction
304534
+ Processing by AnonymousController#index as HTML
304535
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.38ms)
304536
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
304537
+  (0.1ms) rollback transaction
304538
+  (0.1ms) begin transaction
304539
+ Processing by AnonymousController#index as HTML
304540
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.37ms)
304541
+ Completed 403 Forbidden in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
304542
+  (0.1ms) rollback transaction
304543
+  (0.1ms) begin transaction
304544
+ Processing by AnonymousController#index as HTML
304545
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.45ms)
304546
+ Completed 403 Forbidden in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
304547
+  (0.1ms) rollback transaction
304548
+  (0.1ms) begin transaction
304549
+ Processing by AnonymousController#index as HTML
304550
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.38ms)
304551
+ Completed 403 Forbidden in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
304552
+  (0.1ms) rollback transaction
304553
+  (0.1ms) begin transaction
304554
+  (0.1ms) rollback transaction
304555
+  (0.1ms) begin transaction
304556
+  (0.0ms) rollback transaction
304557
+  (0.0ms) begin transaction
304558
+  (0.0ms) rollback transaction
304559
+  (0.0ms) begin transaction
304560
+  (0.0ms) rollback transaction
304561
+  (0.0ms) begin transaction
304562
+  (0.0ms) rollback transaction
304563
+  (0.0ms) begin transaction
304564
+  (0.0ms) rollback transaction
304565
+  (0.0ms) begin transaction
304566
+  (0.0ms) rollback transaction
304567
+  (0.0ms) begin transaction
304568
+  (0.1ms) rollback transaction
304569
+  (0.1ms) begin transaction
304570
+  (0.0ms) SAVEPOINT active_record_1
304571
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:51.211297"], ["updated_at", "2016-04-04 02:05:51.211297"]]
304572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304573
+ Unable to determine type for anonymous Deserializer
304574
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304575
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304576
+  (0.1ms) rollback transaction
304577
+  (0.0ms) begin transaction
304578
+ Unable to determine type for anonymous Deserializer
304579
+  (0.1ms) rollback transaction
304580
+  (0.1ms) begin transaction
304581
+ Unable to determine type for anonymous Deserializer
304582
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304583
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304584
+  (0.0ms) rollback transaction
304585
+  (0.1ms) begin transaction
304586
+  (0.1ms) SAVEPOINT active_record_1
304587
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:51.223660"], ["updated_at", "2016-04-04 02:05:51.223660"]]
304588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304589
+  (0.0ms) SAVEPOINT active_record_1
304590
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:05:51.225291"], ["updated_at", "2016-04-04 02:05:51.225291"]]
304591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304592
+ Unable to determine type for anonymous Deserializer
304593
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304594
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304595
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304596
+  (0.1ms) rollback transaction
304597
+  (0.0ms) begin transaction
304598
+  (0.0ms) SAVEPOINT active_record_1
304599
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:51.231310"], ["updated_at", "2016-04-04 02:05:51.231310"]]
304600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304601
+  (0.0ms) SAVEPOINT active_record_1
304602
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:05:51.232664"], ["updated_at", "2016-04-04 02:05:51.232664"]]
304603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304604
+ Unable to determine type for anonymous Deserializer
304605
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304606
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304607
+  (0.1ms) rollback transaction
304608
+  (0.1ms) begin transaction
304609
+  (0.1ms) rollback transaction
304610
+  (0.0ms) begin transaction
304611
+  (0.0ms) rollback transaction
304612
+  (0.0ms) begin transaction
304613
+ Unable to determine type for anonymous Deserializer
304614
+  (0.1ms) rollback transaction
304615
+  (0.0ms) begin transaction
304616
+ Unable to determine type for anonymous Deserializer
304617
+  (0.1ms) rollback transaction
304618
+  (0.1ms) begin transaction
304619
+ Unable to determine type for anonymous Deserializer
304620
+  (0.1ms) rollback transaction
304621
+  (0.0ms) begin transaction
304622
+ Unable to determine type for anonymous Deserializer
304623
+  (0.0ms) rollback transaction
304624
+  (0.0ms) begin transaction
304625
+ Unable to determine type for anonymous Deserializer
304626
+  (0.1ms) rollback transaction
304627
+  (0.1ms) begin transaction
304628
+ Unable to determine type for anonymous Deserializer
304629
+  (0.1ms) rollback transaction
304630
+  (0.0ms) begin transaction
304631
+ Unable to determine type for anonymous Deserializer
304632
+  (0.0ms) rollback transaction
304633
+  (0.1ms) begin transaction
304634
+ Unable to determine type for anonymous Deserializer
304635
+  (0.0ms) rollback transaction
304636
+  (0.1ms) begin transaction
304637
+ Unable to determine type for anonymous Deserializer
304638
+  (0.1ms) rollback transaction
304639
+  (0.0ms) begin transaction
304640
+ Unable to determine type for anonymous Deserializer
304641
+  (0.0ms) rollback transaction
304642
+  (0.0ms) begin transaction
304643
+ Unable to determine type for anonymous Deserializer
304644
+  (0.1ms) rollback transaction
304645
+  (0.0ms) begin transaction
304646
+ Unable to determine type for anonymous Deserializer
304647
+  (0.1ms) rollback transaction
304648
+  (0.1ms) begin transaction
304649
+ Unable to determine type for anonymous Deserializer
304650
+  (0.1ms) rollback transaction
304651
+  (0.1ms) begin transaction
304652
+ Unable to determine type for anonymous Deserializer
304653
+  (0.1ms) rollback transaction
304654
+  (0.1ms) begin transaction
304655
+ Unable to determine type for anonymous Deserializer
304656
+  (0.1ms) rollback transaction
304657
+  (0.1ms) begin transaction
304658
+ Unable to determine type for anonymous Deserializer
304659
+  (0.1ms) rollback transaction
304660
+  (0.1ms) begin transaction
304661
+ Unable to determine type for anonymous Deserializer
304662
+  (0.1ms) rollback transaction
304663
+  (0.1ms) begin transaction
304664
+ Unable to determine type for anonymous Deserializer
304665
+  (0.0ms) rollback transaction
304666
+  (0.0ms) begin transaction
304667
+ Unable to determine type for anonymous Deserializer
304668
+  (0.1ms) rollback transaction
304669
+  (0.0ms) begin transaction
304670
+ Unable to determine type for anonymous Deserializer
304671
+  (0.1ms) rollback transaction
304672
+  (0.1ms) begin transaction
304673
+ Unable to determine type for anonymous Deserializer
304674
+  (0.0ms) rollback transaction
304675
+  (0.1ms) begin transaction
304676
+ Unable to determine type for anonymous Deserializer
304677
+  (0.1ms) rollback transaction
304678
+  (0.0ms) begin transaction
304679
+ Unable to determine type for anonymous Deserializer
304680
+  (0.1ms) rollback transaction
304681
+  (0.0ms) begin transaction
304682
+ Unable to determine type for anonymous Deserializer
304683
+  (0.1ms) rollback transaction
304684
+  (0.0ms) begin transaction
304685
+ Unable to determine type for anonymous Deserializer
304686
+  (0.1ms) rollback transaction
304687
+  (0.1ms) begin transaction
304688
+ Unable to determine type for anonymous Deserializer
304689
+  (0.1ms) rollback transaction
304690
+  (0.0ms) begin transaction
304691
+ Unable to determine type for anonymous Deserializer
304692
+  (0.2ms) rollback transaction
304693
+  (0.1ms) begin transaction
304694
+ Unable to determine type for anonymous Deserializer
304695
+  (0.1ms) rollback transaction
304696
+  (0.1ms) begin transaction
304697
+ Unable to determine type for anonymous Deserializer
304698
+  (0.3ms) rollback transaction
304699
+  (0.1ms) begin transaction
304700
+ Unable to determine type for anonymous Deserializer
304701
+  (0.0ms) rollback transaction
304702
+  (0.1ms) begin transaction
304703
+ Unable to determine type for anonymous Deserializer
304704
+  (0.1ms) rollback transaction
304705
+  (0.0ms) begin transaction
304706
+  (0.0ms) SAVEPOINT active_record_1
304707
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:05:51.321559"], ["updated_at", "2016-04-04 02:05:51.321559"]]
304708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304709
+ Unable to determine type for anonymous Deserializer
304710
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304711
+  (0.0ms) rollback transaction
304712
+  (0.0ms) begin transaction
304713
+ Unable to determine type for anonymous Deserializer
304714
+  (0.1ms) rollback transaction
304715
+  (0.1ms) begin transaction
304716
+ Unable to determine type for anonymous Deserializer
304717
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304718
+  (0.1ms) rollback transaction
304719
+  (0.0ms) begin transaction
304720
+ Unable to determine type for anonymous Deserializer
304721
+  (0.1ms) rollback transaction
304722
+  (0.0ms) begin transaction
304723
+ Unable to determine type for anonymous Deserializer
304724
+  (0.1ms) rollback transaction
304725
+  (0.0ms) begin transaction
304726
+ Unable to determine type for anonymous Deserializer
304727
+  (0.0ms) rollback transaction
304728
+  (0.1ms) begin transaction
304729
+ Unable to determine type for anonymous Deserializer
304730
+  (0.1ms) rollback transaction
304731
+  (0.1ms) begin transaction
304732
+ Unable to determine type for anonymous Deserializer
304733
+  (0.0ms) rollback transaction
304734
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
304735
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
304736
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
304737
+  (0.1ms) begin transaction
304738
+ Processing by AnonymousController#index as HTML
304739
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (2.13ms)
304740
+ Completed 403 Forbidden in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
304741
+  (0.1ms) rollback transaction
304742
+  (0.0ms) begin transaction
304743
+ Processing by AnonymousController#index as HTML
304744
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (1.09ms)
304745
+ Completed 403 Forbidden in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
304746
+  (0.1ms) rollback transaction
304747
+  (0.1ms) begin transaction
304748
+ Processing by AnonymousController#index as HTML
304749
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.32ms)
304750
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
304751
+  (0.1ms) rollback transaction
304752
+  (0.1ms) begin transaction
304753
+ Processing by AnonymousController#index as HTML
304754
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.28ms)
304755
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
304756
+  (0.1ms) rollback transaction
304757
+  (0.1ms) begin transaction
304758
+ Processing by AnonymousController#index as HTML
304759
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.61ms)
304760
+ Completed 422 Unprocessable Entity in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
304761
+  (0.1ms) rollback transaction
304762
+  (0.1ms) begin transaction
304763
+ Processing by AnonymousController#index as HTML
304764
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.24ms)
304765
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
304766
+  (0.1ms) rollback transaction
304767
+  (0.1ms) begin transaction
304768
+ Unable to determine type for anonymous Deserializer
304769
+  (0.1ms) rollback transaction
304770
+  (0.1ms) begin transaction
304771
+ Unable to determine type for anonymous Deserializer
304772
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304773
+  (0.0ms) rollback transaction
304774
+  (0.1ms) begin transaction
304775
+  (0.0ms) SAVEPOINT active_record_1
304776
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:05.332839"], ["updated_at", "2016-04-04 02:06:05.332839"]]
304777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304778
+ Unable to determine type for anonymous Deserializer
304779
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
304780
+  (0.1ms) rollback transaction
304781
+  (0.0ms) begin transaction
304782
+  (0.1ms) rollback transaction
304783
+  (0.0ms) begin transaction
304784
+  (0.0ms) rollback transaction
304785
+  (0.1ms) begin transaction
304786
+ Unable to determine type for anonymous Deserializer
304787
+  (0.1ms) rollback transaction
304788
+  (0.1ms) begin transaction
304789
+ Unable to determine type for anonymous Deserializer
304790
+  (0.1ms) rollback transaction
304791
+  (0.1ms) begin transaction
304792
+ Unable to determine type for anonymous Deserializer
304793
+  (0.1ms) rollback transaction
304794
+  (0.1ms) begin transaction
304795
+ Unable to determine type for anonymous Deserializer
304796
+  (0.1ms) rollback transaction
304797
+  (0.1ms) begin transaction
304798
+ Unable to determine type for anonymous Deserializer
304799
+  (0.1ms) rollback transaction
304800
+  (0.1ms) begin transaction
304801
+ Unable to determine type for anonymous Deserializer
304802
+  (0.1ms) rollback transaction
304803
+  (0.1ms) begin transaction
304804
+ Unable to determine type for anonymous Deserializer
304805
+  (0.1ms) rollback transaction
304806
+  (0.0ms) begin transaction
304807
+ Unable to determine type for anonymous Deserializer
304808
+  (0.1ms) rollback transaction
304809
+  (0.1ms) begin transaction
304810
+ Unable to determine type for anonymous Deserializer
304811
+  (0.1ms) rollback transaction
304812
+  (0.1ms) begin transaction
304813
+ Unable to determine type for anonymous Deserializer
304814
+  (0.1ms) rollback transaction
304815
+  (0.1ms) begin transaction
304816
+ Unable to determine type for anonymous Deserializer
304817
+  (0.1ms) rollback transaction
304818
+  (0.1ms) begin transaction
304819
+ Unable to determine type for anonymous Deserializer
304820
+  (0.1ms) rollback transaction
304821
+  (0.1ms) begin transaction
304822
+ Unable to determine type for anonymous Deserializer
304823
+  (0.1ms) rollback transaction
304824
+  (0.1ms) begin transaction
304825
+ Unable to determine type for anonymous Deserializer
304826
+  (0.1ms) rollback transaction
304827
+  (0.1ms) begin transaction
304828
+ Unable to determine type for anonymous Deserializer
304829
+  (0.1ms) rollback transaction
304830
+  (0.1ms) begin transaction
304831
+ Unable to determine type for anonymous Deserializer
304832
+  (0.1ms) rollback transaction
304833
+  (0.0ms) begin transaction
304834
+ Unable to determine type for anonymous Deserializer
304835
+  (0.1ms) rollback transaction
304836
+  (0.1ms) begin transaction
304837
+ Unable to determine type for anonymous Deserializer
304838
+  (0.1ms) rollback transaction
304839
+  (0.1ms) begin transaction
304840
+ Unable to determine type for anonymous Deserializer
304841
+  (0.1ms) rollback transaction
304842
+  (0.1ms) begin transaction
304843
+ Unable to determine type for anonymous Deserializer
304844
+  (0.1ms) rollback transaction
304845
+  (0.1ms) begin transaction
304846
+ Unable to determine type for anonymous Deserializer
304847
+  (0.1ms) rollback transaction
304848
+  (0.1ms) begin transaction
304849
+ Unable to determine type for anonymous Deserializer
304850
+  (0.1ms) rollback transaction
304851
+  (0.1ms) begin transaction
304852
+ Unable to determine type for anonymous Deserializer
304853
+  (0.1ms) rollback transaction
304854
+  (0.0ms) begin transaction
304855
+ Unable to determine type for anonymous Deserializer
304856
+  (0.1ms) rollback transaction
304857
+  (0.1ms) begin transaction
304858
+ Unable to determine type for anonymous Deserializer
304859
+  (0.1ms) rollback transaction
304860
+  (0.1ms) begin transaction
304861
+ Unable to determine type for anonymous Deserializer
304862
+  (0.1ms) rollback transaction
304863
+  (0.1ms) begin transaction
304864
+ Unable to determine type for anonymous Deserializer
304865
+  (0.1ms) rollback transaction
304866
+  (0.1ms) begin transaction
304867
+ Unable to determine type for anonymous Deserializer
304868
+  (0.1ms) rollback transaction
304869
+  (0.1ms) begin transaction
304870
+ Unable to determine type for anonymous Deserializer
304871
+  (0.1ms) rollback transaction
304872
+  (0.1ms) begin transaction
304873
+ Unable to determine type for anonymous Deserializer
304874
+  (0.1ms) rollback transaction
304875
+  (0.0ms) begin transaction
304876
+ Unable to determine type for anonymous Deserializer
304877
+  (0.1ms) rollback transaction
304878
+  (0.1ms) begin transaction
304879
+ Unable to determine type for anonymous Deserializer
304880
+  (0.2ms) rollback transaction
304881
+  (0.1ms) begin transaction
304882
+ Unable to determine type for anonymous Deserializer
304883
+  (0.1ms) rollback transaction
304884
+  (0.1ms) begin transaction
304885
+ Unable to determine type for anonymous Deserializer
304886
+  (0.1ms) rollback transaction
304887
+  (0.1ms) begin transaction
304888
+ Unable to determine type for anonymous Deserializer
304889
+  (0.1ms) rollback transaction
304890
+  (0.1ms) begin transaction
304891
+ Unable to determine type for anonymous Deserializer
304892
+  (0.1ms) rollback transaction
304893
+  (0.1ms) begin transaction
304894
+ Unable to determine type for anonymous Deserializer
304895
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304896
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304897
+  (0.1ms) rollback transaction
304898
+  (0.0ms) begin transaction
304899
+ Unable to determine type for anonymous Deserializer
304900
+  (0.0ms) rollback transaction
304901
+  (0.1ms) begin transaction
304902
+  (0.1ms) SAVEPOINT active_record_1
304903
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:05.442502"], ["updated_at", "2016-04-04 02:06:05.442502"]]
304904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
304905
+ Unable to determine type for anonymous Deserializer
304906
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304907
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304908
+  (0.1ms) rollback transaction
304909
+  (0.1ms) begin transaction
304910
+  (0.0ms) SAVEPOINT active_record_1
304911
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:05.448176"], ["updated_at", "2016-04-04 02:06:05.448176"]]
304912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304913
+  (0.0ms) SAVEPOINT active_record_1
304914
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:05.449508"], ["updated_at", "2016-04-04 02:06:05.449508"]]
304915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304916
+ Unable to determine type for anonymous Deserializer
304917
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304918
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304919
+  (0.1ms) rollback transaction
304920
+  (0.1ms) begin transaction
304921
+  (0.0ms) SAVEPOINT active_record_1
304922
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:05.464073"], ["updated_at", "2016-04-04 02:06:05.464073"]]
304923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304924
+  (0.0ms) SAVEPOINT active_record_1
304925
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:05.465478"], ["updated_at", "2016-04-04 02:06:05.465478"]]
304926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304927
+ Unable to determine type for anonymous Deserializer
304928
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304929
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304930
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
304931
+  (0.1ms) rollback transaction
304932
+  (0.1ms) begin transaction
304933
+  (0.0ms) rollback transaction
304934
+  (0.1ms) begin transaction
304935
+  (0.1ms) rollback transaction
304936
+  (0.1ms) begin transaction
304937
+  (0.1ms) rollback transaction
304938
+  (0.0ms) begin transaction
304939
+  (0.0ms) rollback transaction
304940
+  (0.1ms) begin transaction
304941
+  (0.0ms) rollback transaction
304942
+  (0.1ms) begin transaction
304943
+  (0.1ms) rollback transaction
304944
+  (0.1ms) begin transaction
304945
+  (0.0ms) rollback transaction
304946
+  (0.0ms) begin transaction
304947
+  (0.0ms) rollback transaction
304948
+  (0.0ms) begin transaction
304949
+  (0.1ms) rollback transaction
304950
+  (0.1ms) begin transaction
304951
+  (0.0ms) rollback transaction
304952
+  (0.0ms) begin transaction
304953
+  (0.0ms) rollback transaction
304954
+  (0.1ms) begin transaction
304955
+  (0.0ms) rollback transaction
304956
+  (0.0ms) begin transaction
304957
+  (0.0ms) rollback transaction
304958
+  (0.0ms) begin transaction
304959
+  (0.0ms) rollback transaction
304960
+  (0.1ms) begin transaction
304961
+  (0.0ms) rollback transaction
304962
+  (0.1ms) begin transaction
304963
+  (0.0ms) rollback transaction
304964
+  (0.1ms) begin transaction
304965
+  (0.1ms) rollback transaction
304966
+  (0.1ms) begin transaction
304967
+  (0.0ms) rollback transaction
304968
+  (0.0ms) begin transaction
304969
+  (0.1ms) rollback transaction
304970
+  (0.1ms) begin transaction
304971
+  (0.1ms) rollback transaction
304972
+  (0.1ms) begin transaction
304973
+  (0.1ms) rollback transaction
304974
+  (0.1ms) begin transaction
304975
+  (0.1ms) rollback transaction
304976
+  (0.1ms) begin transaction
304977
+  (0.0ms) rollback transaction
304978
+  (0.1ms) begin transaction
304979
+  (0.0ms) rollback transaction
304980
+  (0.1ms) begin transaction
304981
+  (0.0ms) rollback transaction
304982
+  (0.1ms) begin transaction
304983
+  (0.0ms) rollback transaction
304984
+  (0.1ms) begin transaction
304985
+  (0.1ms) rollback transaction
304986
+  (0.0ms) begin transaction
304987
+ Unable to determine type for anonymous Deserializer
304988
+ Unable to determine type for anonymous Deserializer
304989
+  (0.1ms) rollback transaction
304990
+  (0.1ms) begin transaction
304991
+ Unable to determine type for anonymous Deserializer
304992
+ Unable to determine type for anonymous Deserializer
304993
+  (0.1ms) rollback transaction
304994
+  (0.1ms) begin transaction
304995
+  (0.0ms) rollback transaction
304996
+  (0.1ms) begin transaction
304997
+  (0.0ms) rollback transaction
304998
+  (0.1ms) begin transaction
304999
+  (0.0ms) rollback transaction
305000
+  (0.1ms) begin transaction
305001
+  (0.1ms) rollback transaction
305002
+  (0.1ms) begin transaction
305003
+  (0.0ms) rollback transaction
305004
+  (0.1ms) begin transaction
305005
+  (0.1ms) rollback transaction
305006
+  (0.1ms) begin transaction
305007
+  (0.0ms) rollback transaction
305008
+  (0.0ms) begin transaction
305009
+  (0.1ms) rollback transaction
305010
+  (0.1ms) begin transaction
305011
+  (0.1ms) rollback transaction
305012
+  (0.1ms) begin transaction
305013
+  (0.1ms) rollback transaction
305014
+  (0.1ms) begin transaction
305015
+  (0.1ms) rollback transaction
305016
+  (0.1ms) begin transaction
305017
+  (0.0ms) rollback transaction
305018
+  (0.1ms) begin transaction
305019
+  (0.1ms) rollback transaction
305020
+  (0.1ms) begin transaction
305021
+  (0.0ms) rollback transaction
305022
+  (0.1ms) begin transaction
305023
+  (0.0ms) rollback transaction
305024
+  (0.1ms) begin transaction
305025
+  (0.1ms) rollback transaction
305026
+  (0.1ms) begin transaction
305027
+  (0.0ms) rollback transaction
305028
+  (0.0ms) begin transaction
305029
+  (0.0ms) SAVEPOINT active_record_1
305030
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:05.553573"], ["updated_at", "2016-04-04 02:06:05.553573"]]
305031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305032
+  (0.0ms) SAVEPOINT active_record_1
305033
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:05.555124"], ["updated_at", "2016-04-04 02:06:05.555124"]]
305034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305035
+  (0.0ms) SAVEPOINT active_record_1
305036
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 02:06:05.556345"], ["updated_at", "2016-04-04 02:06:05.556345"]]
305037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305038
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
305039
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
305040
+  (0.0ms) rollback transaction
305041
+  (0.1ms) begin transaction
305042
+  (0.0ms) SAVEPOINT active_record_1
305043
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:05.559893"], ["updated_at", "2016-04-04 02:06:05.559893"]]
305044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305045
+  (0.0ms) SAVEPOINT active_record_1
305046
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 02:06:05.561271"], ["updated_at", "2016-04-04 02:06:05.561271"]]
305047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305048
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
305049
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
305050
+  (0.1ms) rollback transaction
305051
+  (0.1ms) begin transaction
305052
+  (0.0ms) SAVEPOINT active_record_1
305053
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:05.564946"], ["updated_at", "2016-04-04 02:06:05.564946"]]
305054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305055
+  (0.0ms) SAVEPOINT active_record_1
305056
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305058
+  (0.1ms) SAVEPOINT active_record_1
305059
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305061
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305062
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305063
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305064
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305065
+  (0.1ms) rollback transaction
305066
+  (0.2ms) begin transaction
305067
+  (0.0ms) SAVEPOINT active_record_1
305068
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:05.590415"], ["updated_at", "2016-04-04 02:06:05.590415"]]
305069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305070
+  (0.0ms) SAVEPOINT active_record_1
305071
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:05.591876"], ["updated_at", "2016-04-04 02:06:05.591876"]]
305072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305073
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305074
+  (0.1ms) rollback transaction
305075
+  (0.1ms) begin transaction
305076
+  (0.0ms) SAVEPOINT active_record_1
305077
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:05.595706"], ["updated_at", "2016-04-04 02:06:05.595706"]]
305078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305079
+  (0.0ms) SAVEPOINT active_record_1
305080
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:05.597478"], ["updated_at", "2016-04-04 02:06:05.597478"]]
305081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305082
+  (0.0ms) SAVEPOINT active_record_1
305083
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 02:06:05.598631"], ["updated_at", "2016-04-04 02:06:05.598631"]]
305084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305085
+  (0.0ms) SAVEPOINT active_record_1
305086
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305088
+  (0.0ms) SAVEPOINT active_record_1
305089
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305091
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305092
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305093
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305094
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
305095
+  (0.0ms) rollback transaction
305096
+  (0.0ms) begin transaction
305097
+  (0.0ms) SAVEPOINT active_record_1
305098
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:05.606016"], ["updated_at", "2016-04-04 02:06:05.606016"]]
305099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305100
+  (0.0ms) SAVEPOINT active_record_1
305101
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:05.607425"], ["updated_at", "2016-04-04 02:06:05.607425"]]
305102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305103
+  (0.0ms) SAVEPOINT active_record_1
305104
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
305105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305106
+  (0.0ms) SAVEPOINT active_record_1
305107
+ SQL (0.0ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
305108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305109
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305110
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305111
+  (0.1ms) rollback transaction
305112
+  (0.1ms) begin transaction
305113
+  (0.0ms) SAVEPOINT active_record_1
305114
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:05.614331"], ["updated_at", "2016-04-04 02:06:05.614331"]]
305115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305116
+  (0.0ms) SAVEPOINT active_record_1
305117
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:05.615672"], ["updated_at", "2016-04-04 02:06:05.615672"]]
305118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305119
+  (0.0ms) SAVEPOINT active_record_1
305120
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305122
+  (0.0ms) SAVEPOINT active_record_1
305123
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305125
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305126
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305127
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305128
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305129
+  (0.1ms) rollback transaction
305130
+  (0.1ms) begin transaction
305131
+  (0.1ms) SAVEPOINT active_record_1
305132
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:05.623629"], ["updated_at", "2016-04-04 02:06:05.623629"]]
305133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305134
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
305135
+  (0.1ms) rollback transaction
305136
+  (0.1ms) begin transaction
305137
+  (0.0ms) SAVEPOINT active_record_1
305138
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:05.626520"], ["updated_at", "2016-04-04 02:06:05.626520"]]
305139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305140
+  (0.0ms) SAVEPOINT active_record_1
305141
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:05.627861"], ["updated_at", "2016-04-04 02:06:05.627861"]]
305142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305143
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
305144
+  (0.0ms) rollback transaction
305145
+  (0.1ms) begin transaction
305146
+  (0.1ms) rollback transaction
305147
+  (0.1ms) begin transaction
305148
+  (0.0ms) rollback transaction
305149
+  (0.0ms) begin transaction
305150
+  (0.0ms) rollback transaction
305151
+  (0.0ms) begin transaction
305152
+  (0.1ms) rollback transaction
305153
+  (0.0ms) begin transaction
305154
+  (0.2ms) rollback transaction
305155
+  (0.1ms) begin transaction
305156
+  (0.1ms) rollback transaction
305157
+  (0.1ms) begin transaction
305158
+  (0.1ms) rollback transaction
305159
+  (0.0ms) begin transaction
305160
+  (0.1ms) rollback transaction
305161
+  (0.1ms) begin transaction
305162
+ Unable to determine type for anonymous Deserializer
305163
+  (0.1ms) rollback transaction
305164
+  (0.1ms) begin transaction
305165
+ Unable to determine type for anonymous Deserializer
305166
+  (0.1ms) rollback transaction
305167
+  (0.1ms) begin transaction
305168
+ Unable to determine type for anonymous Deserializer
305169
+  (0.1ms) rollback transaction
305170
+  (0.1ms) begin transaction
305171
+ Unable to determine type for anonymous Deserializer
305172
+  (0.1ms) rollback transaction
305173
+  (0.1ms) begin transaction
305174
+ Unable to determine type for anonymous Deserializer
305175
+  (0.1ms) rollback transaction
305176
+  (0.1ms) begin transaction
305177
+ Unable to determine type for anonymous Deserializer
305178
+  (0.1ms) rollback transaction
305179
+  (0.1ms) begin transaction
305180
+ Unable to determine type for anonymous Deserializer
305181
+  (0.1ms) rollback transaction
305182
+  (0.0ms) begin transaction
305183
+ Unable to determine type for anonymous Deserializer
305184
+  (0.1ms) rollback transaction
305185
+  (0.1ms) begin transaction
305186
+ Unable to determine type for anonymous Deserializer
305187
+  (0.1ms) rollback transaction
305188
+  (0.1ms) begin transaction
305189
+ Unable to determine type for anonymous Deserializer
305190
+  (0.1ms) rollback transaction
305191
+  (0.1ms) begin transaction
305192
+ Unable to determine type for anonymous Deserializer
305193
+  (0.1ms) rollback transaction
305194
+  (0.1ms) begin transaction
305195
+ Unable to determine type for anonymous Deserializer
305196
+  (0.1ms) rollback transaction
305197
+  (0.1ms) begin transaction
305198
+ Unable to determine type for anonymous Deserializer
305199
+  (0.1ms) rollback transaction
305200
+  (0.0ms) begin transaction
305201
+  (0.0ms) rollback transaction
305202
+  (0.0ms) begin transaction
305203
+  (0.0ms) rollback transaction
305204
+  (0.0ms) begin transaction
305205
+  (0.1ms) rollback transaction
305206
+  (0.1ms) begin transaction
305207
+  (0.0ms) rollback transaction
305208
+  (0.0ms) begin transaction
305209
+  (0.0ms) rollback transaction
305210
+  (0.1ms) begin transaction
305211
+  (0.1ms) rollback transaction
305212
+  (0.1ms) begin transaction
305213
+  (0.0ms) rollback transaction
305214
+  (0.1ms) begin transaction
305215
+  (0.0ms) rollback transaction
305216
+  (0.1ms) begin transaction
305217
+  (0.1ms) rollback transaction
305218
+  (0.1ms) begin transaction
305219
+  (0.0ms) rollback transaction
305220
+  (0.0ms) begin transaction
305221
+ Processing by AnonymousController#index as HTML
305222
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.15ms)
305223
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
305224
+  (0.1ms) rollback transaction
305225
+  (0.1ms) begin transaction
305226
+ Processing by AnonymousController#index as HTML
305227
+ [active_model_serializers] ARModels::Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
305228
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (16.32ms)
305229
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.2ms)
305230
+  (0.1ms) rollback transaction
305231
+  (0.1ms) begin transaction
305232
+ Processing by AnonymousController#index as JSON_API
305233
+ Rendered text template (0.0ms)
305234
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
305235
+  (0.1ms) rollback transaction
305236
+  (0.1ms) begin transaction
305237
+ Processing by AnonymousController#index as JSON_API
305238
+ Rendered text template (0.0ms)
305239
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
305240
+  (0.1ms) rollback transaction
305241
+  (0.1ms) begin transaction
305242
+ Processing by AnonymousController#index as HTML
305243
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
305244
+ Rendered text template (0.0ms)
305245
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
305246
+  (0.1ms) rollback transaction
305247
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
305248
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
305249
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
305250
+  (0.1ms) begin transaction
305251
+ Unable to determine type for anonymous Deserializer
305252
+  (0.1ms) rollback transaction
305253
+  (0.1ms) begin transaction
305254
+ Unable to determine type for anonymous Deserializer
305255
+  (0.1ms) rollback transaction
305256
+  (0.1ms) begin transaction
305257
+ Unable to determine type for anonymous Deserializer
305258
+  (0.1ms) rollback transaction
305259
+  (0.1ms) begin transaction
305260
+ Unable to determine type for anonymous Deserializer
305261
+  (0.1ms) rollback transaction
305262
+  (0.1ms) begin transaction
305263
+ Unable to determine type for anonymous Deserializer
305264
+  (0.1ms) rollback transaction
305265
+  (0.1ms) begin transaction
305266
+ Unable to determine type for anonymous Deserializer
305267
+  (0.1ms) rollback transaction
305268
+  (0.1ms) begin transaction
305269
+ Unable to determine type for anonymous Deserializer
305270
+  (0.1ms) rollback transaction
305271
+  (0.1ms) begin transaction
305272
+ Unable to determine type for anonymous Deserializer
305273
+  (0.0ms) rollback transaction
305274
+  (0.1ms) begin transaction
305275
+ Unable to determine type for anonymous Deserializer
305276
+  (0.0ms) rollback transaction
305277
+  (0.0ms) begin transaction
305278
+ Unable to determine type for anonymous Deserializer
305279
+  (0.1ms) rollback transaction
305280
+  (0.1ms) begin transaction
305281
+ Unable to determine type for anonymous Deserializer
305282
+  (0.1ms) rollback transaction
305283
+  (0.0ms) begin transaction
305284
+ Unable to determine type for anonymous Deserializer
305285
+  (0.1ms) rollback transaction
305286
+  (0.0ms) begin transaction
305287
+ Unable to determine type for anonymous Deserializer
305288
+  (0.1ms) rollback transaction
305289
+  (0.0ms) begin transaction
305290
+ Processing by AnonymousController#index as HTML
305291
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
305292
+ Rendered text template (0.0ms)
305293
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
305294
+  (0.1ms) rollback transaction
305295
+  (0.0ms) begin transaction
305296
+ Processing by AnonymousController#index as JSON_API
305297
+ Rendered text template (0.0ms)
305298
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
305299
+  (0.1ms) rollback transaction
305300
+  (0.1ms) begin transaction
305301
+ Processing by AnonymousController#index as JSON_API
305302
+ Rendered text template (0.0ms)
305303
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
305304
+  (0.1ms) rollback transaction
305305
+  (0.1ms) begin transaction
305306
+ Processing by AnonymousController#index as HTML
305307
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.23ms)
305308
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
305309
+  (0.1ms) rollback transaction
305310
+  (0.1ms) begin transaction
305311
+ Processing by AnonymousController#index as HTML
305312
+ [active_model_serializers] ARModels::Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
305313
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (18.44ms)
305314
+ Completed 200 OK in 25ms (Views: 18.6ms | ActiveRecord: 0.6ms)
305315
+  (0.1ms) rollback transaction
305316
+  (0.1ms) begin transaction
305317
+  (0.1ms) rollback transaction
305318
+  (0.1ms) begin transaction
305319
+  (0.0ms) SAVEPOINT active_record_1
305320
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:32.163060"], ["updated_at", "2016-04-04 02:06:32.163060"]]
305321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305322
+  (0.0ms) SAVEPOINT active_record_1
305323
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:32.164750"], ["updated_at", "2016-04-04 02:06:32.164750"]]
305324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305325
+  (0.0ms) SAVEPOINT active_record_1
305326
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 02:06:32.165895"], ["updated_at", "2016-04-04 02:06:32.165895"]]
305327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305328
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
305329
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
305330
+  (0.1ms) rollback transaction
305331
+  (0.1ms) begin transaction
305332
+  (0.0ms) SAVEPOINT active_record_1
305333
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:32.173845"], ["updated_at", "2016-04-04 02:06:32.173845"]]
305334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305335
+  (0.0ms) SAVEPOINT active_record_1
305336
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 02:06:32.175182"], ["updated_at", "2016-04-04 02:06:32.175182"]]
305337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305338
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
305339
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
305340
+  (0.0ms) rollback transaction
305341
+  (0.0ms) begin transaction
305342
+  (0.0ms) rollback transaction
305343
+  (0.0ms) begin transaction
305344
+  (0.0ms) SAVEPOINT active_record_1
305345
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:32.179263"], ["updated_at", "2016-04-04 02:06:32.179263"]]
305346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305347
+  (0.0ms) SAVEPOINT active_record_1
305348
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:32.180563"], ["updated_at", "2016-04-04 02:06:32.180563"]]
305349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305350
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
305351
+  (0.1ms) rollback transaction
305352
+  (0.1ms) begin transaction
305353
+  (0.0ms) SAVEPOINT active_record_1
305354
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:32.184637"], ["updated_at", "2016-04-04 02:06:32.184637"]]
305355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305356
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
305357
+  (0.0ms) rollback transaction
305358
+  (0.0ms) begin transaction
305359
+  (0.0ms) SAVEPOINT active_record_1
305360
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:32.190341"], ["updated_at", "2016-04-04 02:06:32.190341"]]
305361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305362
+  (0.0ms) SAVEPOINT active_record_1
305363
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:32.191885"], ["updated_at", "2016-04-04 02:06:32.191885"]]
305364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305365
+  (0.0ms) SAVEPOINT active_record_1
305366
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 02:06:32.193098"], ["updated_at", "2016-04-04 02:06:32.193098"]]
305367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305368
+  (0.1ms) SAVEPOINT active_record_1
305369
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305371
+  (0.0ms) SAVEPOINT active_record_1
305372
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305374
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305375
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305376
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305377
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
305378
+  (0.1ms) rollback transaction
305379
+  (0.1ms) begin transaction
305380
+  (0.0ms) SAVEPOINT active_record_1
305381
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:32.205453"], ["updated_at", "2016-04-04 02:06:32.205453"]]
305382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305383
+  (0.0ms) SAVEPOINT active_record_1
305384
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:32.206904"], ["updated_at", "2016-04-04 02:06:32.206904"]]
305385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305386
+  (0.1ms) SAVEPOINT active_record_1
305387
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
305388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305389
+  (0.0ms) SAVEPOINT active_record_1
305390
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
305391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305392
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305393
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305394
+  (0.1ms) rollback transaction
305395
+  (0.0ms) begin transaction
305396
+  (0.0ms) SAVEPOINT active_record_1
305397
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:32.214839"], ["updated_at", "2016-04-04 02:06:32.214839"]]
305398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305399
+  (0.0ms) SAVEPOINT active_record_1
305400
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:32.216197"], ["updated_at", "2016-04-04 02:06:32.216197"]]
305401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305402
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305403
+  (0.1ms) rollback transaction
305404
+  (0.1ms) begin transaction
305405
+  (0.0ms) SAVEPOINT active_record_1
305406
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:32.219877"], ["updated_at", "2016-04-04 02:06:32.219877"]]
305407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305408
+  (0.0ms) SAVEPOINT active_record_1
305409
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305411
+  (0.0ms) SAVEPOINT active_record_1
305412
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305414
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305415
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305416
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305417
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305418
+  (0.0ms) rollback transaction
305419
+  (0.0ms) begin transaction
305420
+  (0.1ms) SAVEPOINT active_record_1
305421
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:32.226843"], ["updated_at", "2016-04-04 02:06:32.226843"]]
305422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305423
+  (0.0ms) SAVEPOINT active_record_1
305424
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:32.228227"], ["updated_at", "2016-04-04 02:06:32.228227"]]
305425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305426
+  (0.0ms) SAVEPOINT active_record_1
305427
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305429
+  (0.0ms) SAVEPOINT active_record_1
305430
+ SQL (0.2ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305432
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305433
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305434
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305435
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305436
+  (0.1ms) rollback transaction
305437
+  (0.1ms) begin transaction
305438
+  (0.1ms) rollback transaction
305439
+  (0.2ms) begin transaction
305440
+  (0.1ms) rollback transaction
305441
+  (0.1ms) begin transaction
305442
+  (0.0ms) rollback transaction
305443
+  (0.0ms) begin transaction
305444
+  (0.0ms) rollback transaction
305445
+  (0.1ms) begin transaction
305446
+  (0.0ms) rollback transaction
305447
+  (0.1ms) begin transaction
305448
+  (0.0ms) rollback transaction
305449
+  (0.0ms) begin transaction
305450
+  (0.0ms) rollback transaction
305451
+  (0.1ms) begin transaction
305452
+  (0.0ms) rollback transaction
305453
+  (0.0ms) begin transaction
305454
+  (0.0ms) rollback transaction
305455
+  (0.0ms) begin transaction
305456
+  (0.0ms) rollback transaction
305457
+  (0.1ms) begin transaction
305458
+  (0.1ms) rollback transaction
305459
+  (0.1ms) begin transaction
305460
+  (0.1ms) rollback transaction
305461
+  (0.1ms) begin transaction
305462
+  (0.1ms) rollback transaction
305463
+  (0.0ms) begin transaction
305464
+  (0.1ms) rollback transaction
305465
+  (0.1ms) begin transaction
305466
+  (0.0ms) rollback transaction
305467
+  (0.1ms) begin transaction
305468
+  (0.0ms) rollback transaction
305469
+  (0.1ms) begin transaction
305470
+  (0.0ms) rollback transaction
305471
+  (0.0ms) begin transaction
305472
+  (0.1ms) rollback transaction
305473
+  (0.1ms) begin transaction
305474
+  (0.0ms) rollback transaction
305475
+  (0.1ms) begin transaction
305476
+  (0.1ms) rollback transaction
305477
+  (0.1ms) begin transaction
305478
+  (0.1ms) rollback transaction
305479
+  (0.1ms) begin transaction
305480
+  (0.1ms) rollback transaction
305481
+  (0.1ms) begin transaction
305482
+  (0.0ms) rollback transaction
305483
+  (0.3ms) begin transaction
305484
+  (0.1ms) rollback transaction
305485
+  (0.1ms) begin transaction
305486
+  (0.1ms) rollback transaction
305487
+  (0.1ms) begin transaction
305488
+  (0.1ms) rollback transaction
305489
+  (0.1ms) begin transaction
305490
+  (0.0ms) rollback transaction
305491
+  (0.1ms) begin transaction
305492
+ Unable to determine type for anonymous Deserializer
305493
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
305494
+  (0.1ms) rollback transaction
305495
+  (0.0ms) begin transaction
305496
+  (0.0ms) SAVEPOINT active_record_1
305497
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:32.294638"], ["updated_at", "2016-04-04 02:06:32.294638"]]
305498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305499
+ Unable to determine type for anonymous Deserializer
305500
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
305501
+  (0.1ms) rollback transaction
305502
+  (0.1ms) begin transaction
305503
+ Unable to determine type for anonymous Deserializer
305504
+  (0.1ms) rollback transaction
305505
+  (0.1ms) begin transaction
305506
+ Unable to determine type for anonymous Deserializer
305507
+  (0.1ms) rollback transaction
305508
+  (0.1ms) begin transaction
305509
+ Unable to determine type for anonymous Deserializer
305510
+  (0.1ms) rollback transaction
305511
+  (0.1ms) begin transaction
305512
+ Unable to determine type for anonymous Deserializer
305513
+  (0.1ms) rollback transaction
305514
+  (0.1ms) begin transaction
305515
+ Unable to determine type for anonymous Deserializer
305516
+  (0.1ms) rollback transaction
305517
+  (0.1ms) begin transaction
305518
+ Unable to determine type for anonymous Deserializer
305519
+  (0.1ms) rollback transaction
305520
+  (0.1ms) begin transaction
305521
+  (0.1ms) rollback transaction
305522
+  (0.1ms) begin transaction
305523
+  (0.0ms) rollback transaction
305524
+  (0.1ms) begin transaction
305525
+ Unable to determine type for anonymous Deserializer
305526
+  (0.1ms) rollback transaction
305527
+  (0.0ms) begin transaction
305528
+ Unable to determine type for anonymous Deserializer
305529
+  (0.1ms) rollback transaction
305530
+  (0.1ms) begin transaction
305531
+ Unable to determine type for anonymous Deserializer
305532
+  (0.1ms) rollback transaction
305533
+  (0.1ms) begin transaction
305534
+ Unable to determine type for anonymous Deserializer
305535
+  (0.1ms) rollback transaction
305536
+  (0.1ms) begin transaction
305537
+ Unable to determine type for anonymous Deserializer
305538
+  (0.1ms) rollback transaction
305539
+  (0.1ms) begin transaction
305540
+ Unable to determine type for anonymous Deserializer
305541
+  (0.1ms) rollback transaction
305542
+  (0.1ms) begin transaction
305543
+ Unable to determine type for anonymous Deserializer
305544
+  (0.1ms) rollback transaction
305545
+  (0.0ms) begin transaction
305546
+ Unable to determine type for anonymous Deserializer
305547
+  (0.1ms) rollback transaction
305548
+  (0.1ms) begin transaction
305549
+ Unable to determine type for anonymous Deserializer
305550
+  (0.1ms) rollback transaction
305551
+  (0.0ms) begin transaction
305552
+ Unable to determine type for anonymous Deserializer
305553
+  (0.0ms) rollback transaction
305554
+  (0.1ms) begin transaction
305555
+ Unable to determine type for anonymous Deserializer
305556
+  (0.1ms) rollback transaction
305557
+  (0.1ms) begin transaction
305558
+ Unable to determine type for anonymous Deserializer
305559
+  (0.1ms) rollback transaction
305560
+  (0.1ms) begin transaction
305561
+ Unable to determine type for anonymous Deserializer
305562
+  (0.1ms) rollback transaction
305563
+  (0.1ms) begin transaction
305564
+ Unable to determine type for anonymous Deserializer
305565
+  (0.1ms) rollback transaction
305566
+  (0.0ms) begin transaction
305567
+ Unable to determine type for anonymous Deserializer
305568
+  (0.1ms) rollback transaction
305569
+  (0.1ms) begin transaction
305570
+ Unable to determine type for anonymous Deserializer
305571
+  (0.1ms) rollback transaction
305572
+  (0.0ms) begin transaction
305573
+ Unable to determine type for anonymous Deserializer
305574
+  (0.1ms) rollback transaction
305575
+  (0.1ms) begin transaction
305576
+ Unable to determine type for anonymous Deserializer
305577
+  (0.1ms) rollback transaction
305578
+  (0.0ms) begin transaction
305579
+ Unable to determine type for anonymous Deserializer
305580
+  (0.1ms) rollback transaction
305581
+  (0.0ms) begin transaction
305582
+ Unable to determine type for anonymous Deserializer
305583
+  (0.1ms) rollback transaction
305584
+  (0.1ms) begin transaction
305585
+ Unable to determine type for anonymous Deserializer
305586
+  (0.1ms) rollback transaction
305587
+  (0.1ms) begin transaction
305588
+ Unable to determine type for anonymous Deserializer
305589
+  (0.1ms) rollback transaction
305590
+  (0.1ms) begin transaction
305591
+ Unable to determine type for anonymous Deserializer
305592
+  (0.1ms) rollback transaction
305593
+  (0.1ms) begin transaction
305594
+ Unable to determine type for anonymous Deserializer
305595
+  (0.1ms) rollback transaction
305596
+  (0.1ms) begin transaction
305597
+ Unable to determine type for anonymous Deserializer
305598
+  (0.1ms) rollback transaction
305599
+  (0.0ms) begin transaction
305600
+ Unable to determine type for anonymous Deserializer
305601
+  (0.1ms) rollback transaction
305602
+  (0.1ms) begin transaction
305603
+ Unable to determine type for anonymous Deserializer
305604
+  (0.1ms) rollback transaction
305605
+  (0.1ms) begin transaction
305606
+ Unable to determine type for anonymous Deserializer
305607
+  (0.1ms) rollback transaction
305608
+  (0.1ms) begin transaction
305609
+ Unable to determine type for anonymous Deserializer
305610
+  (0.1ms) rollback transaction
305611
+  (0.0ms) begin transaction
305612
+ Unable to determine type for anonymous Deserializer
305613
+  (0.1ms) rollback transaction
305614
+  (0.1ms) begin transaction
305615
+ Unable to determine type for anonymous Deserializer
305616
+  (0.1ms) rollback transaction
305617
+  (0.1ms) begin transaction
305618
+  (0.1ms) SAVEPOINT active_record_1
305619
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:32.398186"], ["updated_at", "2016-04-04 02:06:32.398186"]]
305620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305621
+ Unable to determine type for anonymous Deserializer
305622
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305623
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305624
+  (0.1ms) rollback transaction
305625
+  (0.0ms) begin transaction
305626
+ Unable to determine type for anonymous Deserializer
305627
+  (0.1ms) rollback transaction
305628
+  (0.0ms) begin transaction
305629
+ Unable to determine type for anonymous Deserializer
305630
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305631
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305632
+  (0.0ms) rollback transaction
305633
+  (0.1ms) begin transaction
305634
+  (0.0ms) SAVEPOINT active_record_1
305635
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:32.410008"], ["updated_at", "2016-04-04 02:06:32.410008"]]
305636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305637
+  (0.0ms) SAVEPOINT active_record_1
305638
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:32.411336"], ["updated_at", "2016-04-04 02:06:32.411336"]]
305639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305640
+ Unable to determine type for anonymous Deserializer
305641
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305642
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305643
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305644
+  (0.1ms) rollback transaction
305645
+  (0.1ms) begin transaction
305646
+  (0.0ms) SAVEPOINT active_record_1
305647
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:32.417692"], ["updated_at", "2016-04-04 02:06:32.417692"]]
305648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305649
+  (0.0ms) SAVEPOINT active_record_1
305650
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:32.419587"], ["updated_at", "2016-04-04 02:06:32.419587"]]
305651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305652
+ Unable to determine type for anonymous Deserializer
305653
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305654
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
305655
+  (0.1ms) rollback transaction
305656
+  (0.1ms) begin transaction
305657
+ Processing by AnonymousController#index as HTML
305658
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.52ms)
305659
+ Completed 403 Forbidden in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
305660
+  (0.1ms) rollback transaction
305661
+  (0.0ms) begin transaction
305662
+ Processing by AnonymousController#index as HTML
305663
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.28ms)
305664
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305665
+  (0.1ms) rollback transaction
305666
+  (0.1ms) begin transaction
305667
+ Processing by AnonymousController#index as HTML
305668
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.32ms)
305669
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305670
+  (0.1ms) rollback transaction
305671
+  (0.2ms) begin transaction
305672
+ Processing by AnonymousController#index as HTML
305673
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.34ms)
305674
+ Completed 403 Forbidden in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
305675
+  (0.1ms) rollback transaction
305676
+  (0.1ms) begin transaction
305677
+ Processing by AnonymousController#index as HTML
305678
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.25ms)
305679
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305680
+  (0.1ms) rollback transaction
305681
+  (0.1ms) begin transaction
305682
+ Processing by AnonymousController#index as HTML
305683
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.32ms)
305684
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
305685
+  (0.1ms) rollback transaction
305686
+  (0.1ms) begin transaction
305687
+ Unable to determine type for anonymous Deserializer
305688
+ Unable to determine type for anonymous Deserializer
305689
+  (0.1ms) rollback transaction
305690
+  (0.1ms) begin transaction
305691
+ Unable to determine type for anonymous Deserializer
305692
+ Unable to determine type for anonymous Deserializer
305693
+  (0.1ms) rollback transaction
305694
+  (0.1ms) begin transaction
305695
+  (0.0ms) rollback transaction
305696
+  (0.1ms) begin transaction
305697
+  (0.1ms) rollback transaction
305698
+  (0.0ms) begin transaction
305699
+  (0.0ms) rollback transaction
305700
+  (0.0ms) begin transaction
305701
+  (0.0ms) rollback transaction
305702
+  (0.0ms) begin transaction
305703
+  (0.0ms) rollback transaction
305704
+  (0.0ms) begin transaction
305705
+  (0.0ms) rollback transaction
305706
+  (0.1ms) begin transaction
305707
+  (0.1ms) rollback transaction
305708
+  (0.0ms) begin transaction
305709
+  (0.1ms) rollback transaction
305710
+  (0.0ms) begin transaction
305711
+  (0.0ms) rollback transaction
305712
+  (0.0ms) begin transaction
305713
+  (0.0ms) rollback transaction
305714
+  (0.0ms) begin transaction
305715
+  (0.1ms) rollback transaction
305716
+  (0.1ms) begin transaction
305717
+  (0.1ms) rollback transaction
305718
+  (0.3ms) begin transaction
305719
+  (0.1ms) rollback transaction
305720
+  (0.1ms) begin transaction
305721
+  (0.0ms) rollback transaction
305722
+  (0.1ms) begin transaction
305723
+  (0.0ms) rollback transaction
305724
+  (0.1ms) begin transaction
305725
+  (0.0ms) rollback transaction
305726
+  (0.0ms) begin transaction
305727
+  (0.0ms) rollback transaction
305728
+  (0.0ms) begin transaction
305729
+  (0.0ms) rollback transaction
305730
+  (0.0ms) begin transaction
305731
+  (0.0ms) rollback transaction
305732
+  (0.1ms) begin transaction
305733
+  (0.0ms) rollback transaction
305734
+  (0.0ms) begin transaction
305735
+  (0.1ms) rollback transaction
305736
+  (0.0ms) begin transaction
305737
+  (0.0ms) rollback transaction
305738
+  (0.0ms) begin transaction
305739
+  (0.0ms) rollback transaction
305740
+  (0.0ms) begin transaction
305741
+  (0.0ms) rollback transaction
305742
+  (0.0ms) begin transaction
305743
+  (0.0ms) rollback transaction
305744
+  (0.0ms) begin transaction
305745
+  (0.0ms) rollback transaction
305746
+  (0.0ms) begin transaction
305747
+  (0.0ms) rollback transaction
305748
+  (0.0ms) begin transaction
305749
+  (0.0ms) rollback transaction
305750
+  (0.0ms) begin transaction
305751
+  (0.1ms) rollback transaction
305752
+  (0.0ms) begin transaction
305753
+  (0.0ms) rollback transaction
305754
+  (0.0ms) begin transaction
305755
+  (0.0ms) rollback transaction
305756
+  (0.0ms) begin transaction
305757
+  (0.0ms) rollback transaction
305758
+  (0.0ms) begin transaction
305759
+  (0.0ms) rollback transaction
305760
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
305761
+  (0.1ms) CREATE TABLE "authors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
305762
+  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contents" text, "author_id" integer, "post_id" integer) 
305763
+  (0.1ms) begin transaction
305764
+  (0.1ms) rollback transaction
305765
+  (0.1ms) begin transaction
305766
+  (0.1ms) rollback transaction
305767
+  (0.0ms) begin transaction
305768
+  (0.1ms) rollback transaction
305769
+  (0.0ms) begin transaction
305770
+  (0.0ms) rollback transaction
305771
+  (0.0ms) begin transaction
305772
+  (0.1ms) rollback transaction
305773
+  (0.1ms) begin transaction
305774
+  (0.0ms) rollback transaction
305775
+  (0.0ms) begin transaction
305776
+  (0.0ms) rollback transaction
305777
+  (0.1ms) begin transaction
305778
+  (0.0ms) rollback transaction
305779
+  (0.1ms) begin transaction
305780
+  (0.0ms) rollback transaction
305781
+  (0.0ms) begin transaction
305782
+  (0.0ms) rollback transaction
305783
+  (0.1ms) begin transaction
305784
+  (0.0ms) rollback transaction
305785
+  (0.1ms) begin transaction
305786
+ Processing by AnonymousController#index as HTML
305787
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (1.98ms)
305788
+ Completed 403 Forbidden in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
305789
+  (0.1ms) rollback transaction
305790
+  (0.1ms) begin transaction
305791
+ Processing by AnonymousController#index as HTML
305792
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.28ms)
305793
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305794
+  (0.1ms) rollback transaction
305795
+  (0.1ms) begin transaction
305796
+ Processing by AnonymousController#index as HTML
305797
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.85ms)
305798
+ Completed 403 Forbidden in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
305799
+  (0.1ms) rollback transaction
305800
+  (0.1ms) begin transaction
305801
+ Processing by AnonymousController#index as HTML
305802
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.27ms)
305803
+ Completed 403 Forbidden in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305804
+  (0.1ms) rollback transaction
305805
+  (0.1ms) begin transaction
305806
+ Processing by AnonymousController#index as HTML
305807
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.25ms)
305808
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305809
+  (0.1ms) rollback transaction
305810
+  (0.0ms) begin transaction
305811
+ Processing by AnonymousController#index as HTML
305812
+ [active_model_serializers] Rendered FunWithJsonApi::ExceptionSerializer with ActiveModelSerializers::Adapter::Json (0.23ms)
305813
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
305814
+  (0.1ms) rollback transaction
305815
+  (0.1ms) begin transaction
305816
+  (0.0ms) rollback transaction
305817
+  (0.0ms) begin transaction
305818
+  (0.0ms) rollback transaction
305819
+  (0.1ms) begin transaction
305820
+  (0.0ms) rollback transaction
305821
+  (0.1ms) begin transaction
305822
+  (0.1ms) rollback transaction
305823
+  (0.1ms) begin transaction
305824
+  (0.0ms) rollback transaction
305825
+  (0.0ms) begin transaction
305826
+  (0.0ms) rollback transaction
305827
+  (0.1ms) begin transaction
305828
+  (0.0ms) rollback transaction
305829
+  (0.1ms) begin transaction
305830
+  (0.1ms) rollback transaction
305831
+  (0.0ms) begin transaction
305832
+  (0.0ms) rollback transaction
305833
+  (0.1ms) begin transaction
305834
+  (0.0ms) rollback transaction
305835
+  (0.1ms) begin transaction
305836
+  (0.0ms) rollback transaction
305837
+  (0.0ms) begin transaction
305838
+  (0.1ms) rollback transaction
305839
+  (0.1ms) begin transaction
305840
+  (0.0ms) rollback transaction
305841
+  (0.0ms) begin transaction
305842
+  (0.0ms) rollback transaction
305843
+  (0.1ms) begin transaction
305844
+  (0.1ms) rollback transaction
305845
+  (0.1ms) begin transaction
305846
+  (0.0ms) rollback transaction
305847
+  (0.1ms) begin transaction
305848
+  (0.0ms) rollback transaction
305849
+  (0.1ms) begin transaction
305850
+  (0.0ms) rollback transaction
305851
+  (0.0ms) begin transaction
305852
+ Processing by AnonymousController#index as HTML
305853
+ Parameters: {"data"=>{"id"=>"42", "type"=>"foobar"}}
305854
+ Rendered text template (0.0ms)
305855
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
305856
+  (0.1ms) rollback transaction
305857
+  (0.1ms) begin transaction
305858
+ Processing by AnonymousController#index as JSON_API
305859
+ Rendered text template (0.0ms)
305860
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
305861
+  (0.1ms) rollback transaction
305862
+  (0.1ms) begin transaction
305863
+ Processing by AnonymousController#index as JSON_API
305864
+ Rendered text template (0.0ms)
305865
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
305866
+  (0.1ms) rollback transaction
305867
+  (0.1ms) begin transaction
305868
+ Processing by AnonymousController#index as HTML
305869
+ [active_model_serializers] ARModels::Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = ? [["author_id", 42]]
305870
+ [active_model_serializers] Rendered ARModels::AuthorSerializer with ActiveModelSerializers::Adapter::JsonApi (20.12ms)
305871
+ Completed 200 OK in 29ms (Views: 22.0ms | ActiveRecord: 1.0ms)
305872
+  (0.1ms) rollback transaction
305873
+  (0.1ms) begin transaction
305874
+ Processing by AnonymousController#index as HTML
305875
+ [active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms)
305876
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
305877
+  (0.1ms) rollback transaction
305878
+  (0.1ms) begin transaction
305879
+  (0.0ms) rollback transaction
305880
+  (0.0ms) begin transaction
305881
+  (0.1ms) rollback transaction
305882
+  (0.0ms) begin transaction
305883
+  (0.0ms) rollback transaction
305884
+  (0.0ms) begin transaction
305885
+  (0.1ms) rollback transaction
305886
+  (0.1ms) begin transaction
305887
+  (0.1ms) rollback transaction
305888
+  (0.1ms) begin transaction
305889
+  (0.0ms) rollback transaction
305890
+  (0.1ms) begin transaction
305891
+  (0.0ms) rollback transaction
305892
+  (0.1ms) begin transaction
305893
+  (0.0ms) rollback transaction
305894
+  (0.1ms) begin transaction
305895
+  (0.0ms) rollback transaction
305896
+  (0.1ms) begin transaction
305897
+  (0.1ms) rollback transaction
305898
+  (0.1ms) begin transaction
305899
+  (0.0ms) rollback transaction
305900
+  (0.1ms) begin transaction
305901
+  (0.0ms) rollback transaction
305902
+  (0.0ms) begin transaction
305903
+  (0.0ms) rollback transaction
305904
+  (0.1ms) begin transaction
305905
+  (0.0ms) rollback transaction
305906
+  (0.0ms) begin transaction
305907
+  (0.0ms) rollback transaction
305908
+  (0.0ms) begin transaction
305909
+  (0.0ms) rollback transaction
305910
+  (0.0ms) begin transaction
305911
+  (0.1ms) rollback transaction
305912
+  (0.1ms) begin transaction
305913
+  (0.0ms) SAVEPOINT active_record_1
305914
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:43.989093"], ["updated_at", "2016-04-04 02:06:43.989093"]]
305915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305916
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 42]]
305917
+  (0.1ms) rollback transaction
305918
+  (0.0ms) begin transaction
305919
+  (0.0ms) SAVEPOINT active_record_1
305920
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:43.996806"], ["updated_at", "2016-04-04 02:06:43.996806"]]
305921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305922
+  (0.0ms) SAVEPOINT active_record_1
305923
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:43.998241"], ["updated_at", "2016-04-04 02:06:43.998241"]]
305924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305925
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" = ? LIMIT 1 [["name", "Jack"], ["code", "foo"]]
305926
+  (0.1ms) rollback transaction
305927
+  (0.0ms) begin transaction
305928
+  (0.1ms) SAVEPOINT active_record_1
305929
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:44.006035"], ["updated_at", "2016-04-04 02:06:44.006035"]]
305930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305931
+  (0.0ms) SAVEPOINT active_record_1
305932
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 9], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:44.007573"], ["updated_at", "2016-04-04 02:06:44.007573"]]
305933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305934
+  (0.1ms) SAVEPOINT active_record_1
305935
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 10], ["name", "John"], ["code", "bar"], ["created_at", "2016-04-04 02:06:44.009449"], ["updated_at", "2016-04-04 02:06:44.009449"]]
305936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305937
+  (0.0ms) SAVEPOINT active_record_1
305938
+ SQL (0.1ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305940
+  (0.0ms) SAVEPOINT active_record_1
305941
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305943
+  (0.2ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305944
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305945
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305946
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? AND "authors"."name" = ? LIMIT 1 [["code", "foo"], ["name", "John"]]
305947
+  (0.1ms) rollback transaction
305948
+  (0.0ms) begin transaction
305949
+  (0.2ms) SAVEPOINT active_record_1
305950
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:44.028336"], ["updated_at", "2016-04-04 02:06:44.028336"]]
305951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305952
+  (0.0ms) SAVEPOINT active_record_1
305953
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305955
+  (0.0ms) SAVEPOINT active_record_1
305956
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
305957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305958
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305959
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305960
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
305961
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305962
+  (0.1ms) rollback transaction
305963
+  (0.0ms) begin transaction
305964
+  (0.0ms) SAVEPOINT active_record_1
305965
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:44.036113"], ["updated_at", "2016-04-04 02:06:44.036113"]]
305966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305967
+  (0.0ms) SAVEPOINT active_record_1
305968
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:44.037574"], ["updated_at", "2016-04-04 02:06:44.037574"]]
305969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305970
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
305971
+  (0.1ms) rollback transaction
305972
+  (0.0ms) begin transaction
305973
+  (0.0ms) SAVEPOINT active_record_1
305974
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:44.041938"], ["updated_at", "2016-04-04 02:06:44.041938"]]
305975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305976
+  (0.0ms) SAVEPOINT active_record_1
305977
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:44.043384"], ["updated_at", "2016-04-04 02:06:44.043384"]]
305978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305979
+  (0.0ms) SAVEPOINT active_record_1
305980
+ SQL (0.1ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 5], ["contents", "Blargh"]]
305981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305982
+  (0.1ms) SAVEPOINT active_record_1
305983
+ SQL (0.0ms) INSERT INTO "comments" ("id", "contents") VALUES (?, ?) [["id", 12], ["contents", "Foobar"]]
305984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305985
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
305986
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
305987
+  (0.1ms) rollback transaction
305988
+  (0.0ms) begin transaction
305989
+  (0.0ms) SAVEPOINT active_record_1
305990
+ SQL (0.1ms) INSERT INTO "posts" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 1], ["created_at", "2016-04-04 02:06:44.050084"], ["updated_at", "2016-04-04 02:06:44.050084"]]
305991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305992
+  (0.0ms) SAVEPOINT active_record_1
305993
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 9], ["created_at", "2016-04-04 02:06:44.051523"], ["updated_at", "2016-04-04 02:06:44.051523"]]
305994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305995
+  (0.0ms) SAVEPOINT active_record_1
305996
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 5]]
305997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305998
+  (0.0ms) SAVEPOINT active_record_1
305999
+ SQL (0.0ms) INSERT INTO "comments" ("id") VALUES (?) [["id", 12]]
306000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306001
+  (0.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."id" IN (5, 12)
306002
+ ARModels::Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" IN (5, 12)
306003
+ ARModels::Comment Load (0.1ms) SELECT "comments"."id" FROM "comments" WHERE "comments"."id" IN (5, 12)
306004
+ ARModels::Author Load (0.0ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" = ? LIMIT 1 [["id", 9]]
306005
+  (0.0ms) rollback transaction
306006
+  (0.0ms) begin transaction
306007
+  (0.0ms) SAVEPOINT active_record_1
306008
+ SQL (0.1ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 42], ["created_at", "2016-04-04 02:06:44.058674"], ["updated_at", "2016-04-04 02:06:44.058674"]]
306009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306010
+  (0.0ms) SAVEPOINT active_record_1
306011
+ SQL (0.0ms) INSERT INTO "authors" ("id", "created_at", "updated_at") VALUES (?, ?, ?) [["id", 43], ["created_at", "2016-04-04 02:06:44.060062"], ["updated_at", "2016-04-04 02:06:44.060062"]]
306012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306013
+  (0.2ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."id" IN (42, 43)
306014
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."id" IN (42, 43)
306015
+  (0.1ms) rollback transaction
306016
+  (0.0ms) begin transaction
306017
+  (0.0ms) SAVEPOINT active_record_1
306018
+ SQL (0.1ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 42], ["name", "Jack"], ["code", "foo"], ["created_at", "2016-04-04 02:06:44.064306"], ["updated_at", "2016-04-04 02:06:44.064306"]]
306019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306020
+  (0.0ms) SAVEPOINT active_record_1
306021
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 43], ["name", "John"], ["code", "foo"], ["created_at", "2016-04-04 02:06:44.065690"], ["updated_at", "2016-04-04 02:06:44.065690"]]
306022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306023
+  (0.0ms) SAVEPOINT active_record_1
306024
+ SQL (0.0ms) INSERT INTO "authors" ("id", "name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["id", 44], ["name", "Jack"], ["code", "bar"], ["created_at", "2016-04-04 02:06:44.066808"], ["updated_at", "2016-04-04 02:06:44.066808"]]
306025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306026
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
306027
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."name" = ? AND "authors"."code" IN ('foo', 'bar') [["name", "Jack"]]
306028
+  (0.0ms) rollback transaction
306029
+  (0.0ms) begin transaction
306030
+  (0.0ms) rollback transaction
306031
+  (0.1ms) begin transaction
306032
+  (0.1ms) rollback transaction
306033
+  (0.2ms) begin transaction
306034
+  (0.0ms) rollback transaction
306035
+  (0.1ms) begin transaction
306036
+  (0.0ms) rollback transaction
306037
+  (0.0ms) begin transaction
306038
+  (0.0ms) rollback transaction
306039
+  (0.1ms) begin transaction
306040
+  (0.0ms) rollback transaction
306041
+  (0.0ms) begin transaction
306042
+  (0.0ms) rollback transaction
306043
+  (0.0ms) begin transaction
306044
+  (0.0ms) rollback transaction
306045
+  (0.0ms) begin transaction
306046
+  (0.1ms) rollback transaction
306047
+  (0.1ms) begin transaction
306048
+  (0.0ms) rollback transaction
306049
+  (0.0ms) begin transaction
306050
+  (0.0ms) rollback transaction
306051
+  (0.0ms) begin transaction
306052
+ Unable to determine type for anonymous Deserializer
306053
+  (0.1ms) rollback transaction
306054
+  (0.0ms) begin transaction
306055
+ Unable to determine type for anonymous Deserializer
306056
+  (0.1ms) rollback transaction
306057
+  (0.0ms) begin transaction
306058
+ Unable to determine type for anonymous Deserializer
306059
+  (0.1ms) rollback transaction
306060
+  (0.1ms) begin transaction
306061
+ Unable to determine type for anonymous Deserializer
306062
+  (0.1ms) rollback transaction
306063
+  (0.0ms) begin transaction
306064
+ Unable to determine type for anonymous Deserializer
306065
+  (0.1ms) rollback transaction
306066
+  (0.1ms) begin transaction
306067
+ Unable to determine type for anonymous Deserializer
306068
+  (0.1ms) rollback transaction
306069
+  (0.0ms) begin transaction
306070
+ Unable to determine type for anonymous Deserializer
306071
+  (0.1ms) rollback transaction
306072
+  (0.1ms) begin transaction
306073
+ Unable to determine type for anonymous Deserializer
306074
+  (0.1ms) rollback transaction
306075
+  (0.0ms) begin transaction
306076
+ Unable to determine type for anonymous Deserializer
306077
+  (0.1ms) rollback transaction
306078
+  (0.2ms) begin transaction
306079
+ Unable to determine type for anonymous Deserializer
306080
+  (0.1ms) rollback transaction
306081
+  (0.1ms) begin transaction
306082
+ Unable to determine type for anonymous Deserializer
306083
+  (0.1ms) rollback transaction
306084
+  (0.0ms) begin transaction
306085
+ Unable to determine type for anonymous Deserializer
306086
+  (0.1ms) rollback transaction
306087
+  (0.0ms) begin transaction
306088
+ Unable to determine type for anonymous Deserializer
306089
+  (0.1ms) rollback transaction
306090
+  (0.1ms) begin transaction
306091
+ Unable to determine type for anonymous Deserializer
306092
+  (0.1ms) rollback transaction
306093
+  (0.1ms) begin transaction
306094
+ Unable to determine type for anonymous Deserializer
306095
+  (0.1ms) rollback transaction
306096
+  (0.1ms) begin transaction
306097
+ Unable to determine type for anonymous Deserializer
306098
+  (0.1ms) rollback transaction
306099
+  (0.1ms) begin transaction
306100
+ Unable to determine type for anonymous Deserializer
306101
+  (0.1ms) rollback transaction
306102
+  (0.1ms) begin transaction
306103
+ Unable to determine type for anonymous Deserializer
306104
+  (0.1ms) rollback transaction
306105
+  (0.0ms) begin transaction
306106
+ Unable to determine type for anonymous Deserializer
306107
+  (0.1ms) rollback transaction
306108
+  (0.1ms) begin transaction
306109
+ Unable to determine type for anonymous Deserializer
306110
+  (0.1ms) rollback transaction
306111
+  (0.1ms) begin transaction
306112
+ Unable to determine type for anonymous Deserializer
306113
+  (0.1ms) rollback transaction
306114
+  (0.0ms) begin transaction
306115
+ Unable to determine type for anonymous Deserializer
306116
+  (0.1ms) rollback transaction
306117
+  (0.0ms) begin transaction
306118
+ Unable to determine type for anonymous Deserializer
306119
+  (0.1ms) rollback transaction
306120
+  (0.1ms) begin transaction
306121
+ Unable to determine type for anonymous Deserializer
306122
+  (0.1ms) rollback transaction
306123
+  (0.0ms) begin transaction
306124
+ Unable to determine type for anonymous Deserializer
306125
+  (0.1ms) rollback transaction
306126
+  (0.1ms) begin transaction
306127
+ Unable to determine type for anonymous Deserializer
306128
+  (0.1ms) rollback transaction
306129
+  (0.1ms) begin transaction
306130
+ Unable to determine type for anonymous Deserializer
306131
+  (0.1ms) rollback transaction
306132
+  (0.0ms) begin transaction
306133
+ Unable to determine type for anonymous Deserializer
306134
+  (0.1ms) rollback transaction
306135
+  (0.0ms) begin transaction
306136
+ Unable to determine type for anonymous Deserializer
306137
+  (0.1ms) rollback transaction
306138
+  (0.1ms) begin transaction
306139
+ Unable to determine type for anonymous Deserializer
306140
+  (0.1ms) rollback transaction
306141
+  (0.1ms) begin transaction
306142
+ Unable to determine type for anonymous Deserializer
306143
+  (0.1ms) rollback transaction
306144
+  (0.0ms) begin transaction
306145
+ Unable to determine type for anonymous Deserializer
306146
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
306147
+  (0.1ms) rollback transaction
306148
+  (0.1ms) begin transaction
306149
+  (0.0ms) SAVEPOINT active_record_1
306150
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:44.173154"], ["updated_at", "2016-04-04 02:06:44.173154"]]
306151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306152
+ Unable to determine type for anonymous Deserializer
306153
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" = ? LIMIT 1 [["code", "foobar"]]
306154
+  (0.1ms) rollback transaction
306155
+  (0.1ms) begin transaction
306156
+ Unable to determine type for anonymous Deserializer
306157
+  (0.1ms) rollback transaction
306158
+  (0.1ms) begin transaction
306159
+ Unable to determine type for anonymous Deserializer
306160
+  (0.1ms) rollback transaction
306161
+  (0.0ms) begin transaction
306162
+ Unable to determine type for anonymous Deserializer
306163
+  (0.1ms) rollback transaction
306164
+  (0.0ms) begin transaction
306165
+ Unable to determine type for anonymous Deserializer
306166
+  (0.1ms) rollback transaction
306167
+  (0.1ms) begin transaction
306168
+ Unable to determine type for anonymous Deserializer
306169
+  (0.1ms) rollback transaction
306170
+  (0.0ms) begin transaction
306171
+ Unable to determine type for anonymous Deserializer
306172
+  (0.1ms) rollback transaction
306173
+  (0.1ms) begin transaction
306174
+ Unable to determine type for anonymous Deserializer
306175
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306176
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306177
+  (0.0ms) rollback transaction
306178
+  (0.0ms) begin transaction
306179
+ Unable to determine type for anonymous Deserializer
306180
+  (0.1ms) rollback transaction
306181
+  (0.1ms) begin transaction
306182
+  (0.0ms) SAVEPOINT active_record_1
306183
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:44.199236"], ["updated_at", "2016-04-04 02:06:44.199236"]]
306184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306185
+ Unable to determine type for anonymous Deserializer
306186
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306187
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306188
+  (0.1ms) rollback transaction
306189
+  (0.1ms) begin transaction
306190
+  (0.0ms) SAVEPOINT active_record_1
306191
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:44.204815"], ["updated_at", "2016-04-04 02:06:44.204815"]]
306192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
306193
+  (0.0ms) SAVEPOINT active_record_1
306194
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:44.206290"], ["updated_at", "2016-04-04 02:06:44.206290"]]
306195
+  (0.1ms) RELEASE SAVEPOINT active_record_1
306196
+ Unable to determine type for anonymous Deserializer
306197
+  (0.4ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306198
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306199
+ ARModels::Author Load (0.1ms) SELECT "authors"."id" FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306200
+  (0.1ms) rollback transaction
306201
+  (0.1ms) begin transaction
306202
+  (0.0ms) SAVEPOINT active_record_1
306203
+ SQL (0.1ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 1], ["code", "foobar"], ["created_at", "2016-04-04 02:06:44.213876"], ["updated_at", "2016-04-04 02:06:44.213876"]]
306204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306205
+  (0.0ms) SAVEPOINT active_record_1
306206
+ SQL (0.0ms) INSERT INTO "authors" ("id", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["id", 2], ["code", "blargh"], ["created_at", "2016-04-04 02:06:44.215224"], ["updated_at", "2016-04-04 02:06:44.215224"]]
306207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306208
+ Unable to determine type for anonymous Deserializer
306209
+  (0.1ms) SELECT COUNT(*) FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306210
+ ARModels::Author Load (0.1ms) SELECT "authors".* FROM "authors" WHERE "authors"."code" IN ('foobar', 'blargh')
306211
+  (0.1ms) rollback transaction
306212
+  (0.1ms) begin transaction
306213
+ Unable to determine type for anonymous Deserializer
306214
+  (0.1ms) rollback transaction
306215
+  (0.0ms) begin transaction
306216
+ Unable to determine type for anonymous Deserializer
306217
+  (0.1ms) rollback transaction
306218
+  (0.0ms) begin transaction
306219
+ Unable to determine type for anonymous Deserializer
306220
+  (0.1ms) rollback transaction
306221
+  (0.1ms) begin transaction
306222
+ Unable to determine type for anonymous Deserializer
306223
+  (0.1ms) rollback transaction
306224
+  (0.0ms) begin transaction
306225
+ Unable to determine type for anonymous Deserializer
306226
+  (0.1ms) rollback transaction
306227
+  (0.1ms) begin transaction
306228
+ Unable to determine type for anonymous Deserializer
306229
+  (0.1ms) rollback transaction
306230
+  (0.1ms) begin transaction
306231
+ Unable to determine type for anonymous Deserializer
306232
+  (0.1ms) rollback transaction
306233
+  (0.0ms) begin transaction
306234
+ Unable to determine type for anonymous Deserializer
306235
+  (0.1ms) rollback transaction
306236
+  (0.0ms) begin transaction
306237
+ Unable to determine type for anonymous Deserializer
306238
+  (0.1ms) rollback transaction
306239
+  (0.0ms) begin transaction
306240
+ Unable to determine type for anonymous Deserializer
306241
+  (0.1ms) rollback transaction
306242
+  (0.1ms) begin transaction
306243
+ Unable to determine type for anonymous Deserializer
306244
+  (0.1ms) rollback transaction
306245
+  (0.1ms) begin transaction
306246
+ Unable to determine type for anonymous Deserializer
306247
+  (0.1ms) rollback transaction
306248
+  (0.0ms) begin transaction
306249
+ Unable to determine type for anonymous Deserializer
306250
+  (0.1ms) rollback transaction
306251
+  (0.1ms) begin transaction
306252
+  (0.0ms) rollback transaction
306253
+  (0.0ms) begin transaction
306254
+  (0.1ms) rollback transaction
306255
+  (0.0ms) begin transaction
306256
+  (0.1ms) rollback transaction
306257
+  (0.0ms) begin transaction
306258
+  (0.0ms) rollback transaction
306259
+  (0.1ms) begin transaction
306260
+  (0.0ms) rollback transaction
306261
+  (0.1ms) begin transaction
306262
+  (0.0ms) rollback transaction
306263
+  (0.0ms) begin transaction
306264
+ Unable to determine type for anonymous Deserializer
306265
+ Unable to determine type for anonymous Deserializer
306266
+  (0.1ms) rollback transaction
306267
+  (0.1ms) begin transaction
306268
+ Unable to determine type for anonymous Deserializer
306269
+ Unable to determine type for anonymous Deserializer
306270
+  (0.1ms) rollback transaction
306271
+  (0.1ms) begin transaction
306272
+  (0.0ms) rollback transaction