spreadsheet_architect 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/LICENSE +4 -671
  4. data/README.md +10 -1
  5. data/lib/spreadsheet_architect/class_methods/xlsx.rb +25 -3
  6. data/lib/spreadsheet_architect/exceptions.rb +12 -6
  7. data/lib/spreadsheet_architect/utils.rb +8 -4
  8. data/lib/spreadsheet_architect/utils/xlsx.rb +6 -6
  9. data/lib/spreadsheet_architect/version.rb +1 -1
  10. data/test/rails_app/Gemfile.lock +1 -1
  11. data/test/rails_app/app/models/custom_post.rb +12 -0
  12. data/test/rails_app/log/test.log +2573 -0
  13. data/test/rails_app/test/models/custom_post_test.rb +7 -0
  14. data/test/rails_app/test/models/spreadsheet_architect_utils_test.rb +6 -0
  15. data/test/rails_app/tmp/active_model_object/csv.csv +20 -20
  16. data/test/rails_app/tmp/active_model_object/ods.ods +0 -0
  17. data/test/rails_app/tmp/active_model_object/xlsx.xlsx +0 -0
  18. data/test/rails_app/tmp/controller_tests/alt_xlsx.xlsx +0 -0
  19. data/test/rails_app/tmp/controller_tests/ods.ods +0 -0
  20. data/test/rails_app/tmp/controller_tests/xlsx.xlsx +0 -0
  21. data/test/rails_app/tmp/custom_posts/empty.xlsx +0 -0
  22. data/test/rails_app/tmp/custom_posts/ods.ods +0 -0
  23. data/test/rails_app/tmp/custom_posts/xlsx.xlsx +0 -0
  24. data/test/rails_app/tmp/empty_model.xlsx +0 -0
  25. data/test/rails_app/tmp/empty_sa.xlsx +0 -0
  26. data/test/rails_app/tmp/extreme.xlsx +0 -0
  27. data/test/rails_app/tmp/model.xlsx +0 -0
  28. data/test/rails_app/tmp/ods/empty_model.ods +0 -0
  29. data/test/rails_app/tmp/ods/empty_sa.ods +0 -0
  30. data/test/rails_app/tmp/ods/model.ods +0 -0
  31. data/test/rails_app/tmp/ods/model_options.ods +0 -0
  32. data/test/rails_app/tmp/ods/sa.ods +0 -0
  33. data/test/rails_app/tmp/plain_ruby_object/csv.csv +3 -3
  34. data/test/rails_app/tmp/plain_ruby_object/ods.ods +0 -0
  35. data/test/rails_app/tmp/plain_ruby_object/xlsx.xlsx +0 -0
  36. data/test/rails_app/tmp/posts/empty.xlsx +0 -0
  37. data/test/rails_app/tmp/posts/ods.ods +0 -0
  38. data/test/rails_app/tmp/posts/xlsx.xlsx +0 -0
  39. data/test/rails_app/tmp/sa.xlsx +0 -0
  40. metadata +2 -2
data/README.md CHANGED
@@ -136,7 +136,7 @@ end
136
136
  File.open('path/to/file.xlsx', 'w+b') do |f|
137
137
  f.write{ Post.order(published_at: :asc).to_xlsx }
138
138
  end
139
- File.open('path/to/file.ods', 'w+b) do |f|
139
+ File.open('path/to/file.ods', 'w+b') do |f|
140
140
  f.write{ Post.order(published_at: :asc).to_ods }
141
141
  end
142
142
  File.open('path/to/file.csv', 'w+b') do |f|
@@ -278,6 +278,15 @@ See this example: (https://github.com/westonganger/spreadsheet_architect/blob/ma
278
278
 
279
279
 
280
280
  # Multi Sheet XLSX or ODS spreadsheets
281
+ ```ruby
282
+ # Returns corresponding spreadsheet libraries object
283
+ package = SpreadsheetArchitect.to_axlsx_package({data: data, headers: headers})
284
+ SpreadsheetArchitect.to_axlsx_package({data: data, headers: headers}, package) # to combine two sheets to one file
285
+
286
+ spreadsheet = SpreadsheetArchitect.to_rodf_spreadsheet({data: data, headers: headers})
287
+ SpreadsheetArchitect.to_rodf_spreadsheet({data: data, headers: headers}, spreadsheet) # to combine two sheets to one file
288
+ ```
289
+
281
290
  See this example: (https://github.com/westonganger/spreadsheet_architect/blob/master/examples/multi_sheet_spreadsheets.rb)
282
291
 
283
292
 
@@ -112,20 +112,42 @@ module SpreadsheetArchitect
112
112
 
113
113
  if options[:column_styles]
114
114
  options[:column_styles].each do |x|
115
- start_row = !x[:include_header] && options[:headers] ? options[:headers].count : 0
115
+ start_row = options[:headers] ? options[:headers].count : 0
116
+
117
+ if x[:include_header] && start_row > 0
118
+ h_style = header_style.merge(SpreadsheetArchitect::Utils::XLSX.convert_styles_to_axlsx(x[:styles]))
119
+ end
116
120
 
117
121
  package.workbook.styles do |s|
118
122
  style = s.add_style row_style.merge(SpreadsheetArchitect::Utils::XLSX.convert_styles_to_axlsx(x[:styles]))
123
+
119
124
  if x[:columns].is_a?(Array) || x[:columns].is_a?(Range)
120
125
  x[:columns].each do |col|
121
126
  if col.is_a?(String)
122
127
  col = col_names.index(col)
123
128
  end
124
129
 
125
- sheet.col_style(col, style, row_offset: start_row)
130
+ if col.is_a?(Integer) && col < max_row_length
131
+ sheet.col_style(col, style, row_offset: start_row)
132
+
133
+ if h_style
134
+ sheet.add_style("#{col_names[col]}1:#{col_names[col]}#{start_row}", h_style)
135
+ end
136
+ else
137
+ raise SpreadsheetArchitect::Exceptions::InvalidColumnError
138
+ end
126
139
  end
127
140
  elsif x[:columns].is_a?(Integer)
128
- sheet.col_style(x[:columns], style, row_offset: start_row)
141
+ col = x[:columns]
142
+ if col < max_row_length
143
+ sheet.col_style(x[:columns], style, row_offset: start_row)
144
+
145
+ if h_style
146
+ sheet.add_style("#{col_names[col]}1:#{col_names[col]}#{start_row}", h_style)
147
+ end
148
+ else
149
+ raise SpreadsheetArchitect::Exceptions::InvalidColumnError
150
+ end
129
151
  end
130
152
  end
131
153
  end
@@ -25,21 +25,27 @@ module SpreadsheetArchitect
25
25
  end
26
26
  end
27
27
 
28
+ class InvalidColumnError < StandardError
29
+ def initialize(range_hash)
30
+ super("Invalid Column `#{range_hash}` given for column_types options")
31
+ end
32
+ end
33
+
28
34
  class InvalidRangeStylesOptionError < StandardError
29
- def initialize(type)
30
- super("Invalid type for range_styles #{type} option. Allowed formats are Integer, Range, or :all")
35
+ def initialize(type, opt)
36
+ super("Invalid or missing :#{type} option for `#{opt}`. :#{type} can be an integer, range, or :all")
31
37
  end
32
38
  end
33
39
 
34
40
  class BadRangeError < StandardError
35
- def initialize(type)
41
+ def initialize(type, range)
36
42
  case type
37
43
  when :columns, :rows
38
- super("Bad range passed. Some of the #{type} specified were greater than the total number of #{type}")
44
+ super("Bad range `#{range}` passed. Some of the #{type} specified were greater than the total number of #{type}")
39
45
  when :format
40
- super('Bad range passed. Format must be as follows: A1:D4')
46
+ super("Bad range `#{range}` passed. Format must be as follows: A1:D4")
41
47
  when :type
42
- super('Incorrect range type. Valid types are String and Hash')
48
+ super("Incorrect range type `#{range}`. Valid types are String and Hash")
43
49
  end
44
50
  end
45
51
  end
@@ -98,9 +98,9 @@ module SpreadsheetArchitect
98
98
  def self.get_options(options={}, klass)
99
99
  if options[:headers]
100
100
  if defined?(klass::SPREADSHEET_OPTIONS)
101
- header_style = SpreadsheetArchitect.default_options[:header_style].merge(klass::SPREADSHEET_OPTIONS[:header_style] || {})
101
+ header_style = deep_clone(SpreadsheetArchitect.default_options[:header_style]).merge(klass::SPREADSHEET_OPTIONS[:header_style] || {})
102
102
  else
103
- header_style = SpreadsheetArchitect.default_options[:header_style]
103
+ header_style = deep_clone(SpreadsheetArchitect.default_options[:header_style])
104
104
  end
105
105
 
106
106
  if options[:header_style]
@@ -116,9 +116,9 @@ module SpreadsheetArchitect
116
116
  row_style = false
117
117
  else
118
118
  if defined?(klass::SPREADSHEET_OPTIONS)
119
- row_style = SpreadsheetArchitect.default_options[:row_style].merge(klass::SPREADSHEET_OPTIONS[:row_style] || {})
119
+ row_style = deep_clone(SpreadsheetArchitect.default_options[:row_style]).merge(klass::SPREADSHEET_OPTIONS[:row_style] || {})
120
120
  else
121
- row_style = SpreadsheetArchitect.default_options[:row_style]
121
+ row_style = deep_clone(SpreadsheetArchitect.default_options[:row_style])
122
122
  end
123
123
 
124
124
  if options[:row_style]
@@ -175,6 +175,10 @@ module SpreadsheetArchitect
175
175
 
176
176
  private
177
177
 
178
+ def self.deep_clone(x)
179
+ Marshal.load(Marshal.dump(x))
180
+ end
181
+
178
182
  def self.check_type(options, option_name, type)
179
183
  unless options[option_name].nil?
180
184
  valid = false
@@ -63,7 +63,7 @@ module SpreadsheetArchitect
63
63
  start_col = 'A'
64
64
  end_col = col_names[num_columns-1]
65
65
  else
66
- raise SpreadsheetArchitect::Exceptions::InvalidRangeStylesOptionError.new(:columns)
66
+ raise SpreadsheetArchitect::Exceptions::InvalidRangeStylesOptionError.new(:columns, hash)
67
67
  end
68
68
 
69
69
  case hash[:rows]
@@ -76,7 +76,7 @@ module SpreadsheetArchitect
76
76
  start_row = 0
77
77
  end_row = num_rows-1
78
78
  else
79
- raise SpreadsheetArchitect::Exceptions::InvalidRangeStylesOptionError.new(:rows)
79
+ raise SpreadsheetArchitect::Exceptions::InvalidRangeStylesOptionError.new(:rows, hash)
80
80
  end
81
81
 
82
82
  return "#{start_col}#{start_row}:#{end_col}#{end_row}"
@@ -90,17 +90,17 @@ module SpreadsheetArchitect
90
90
  end_col, end_row = back.scan(/\d+|\D+/)
91
91
 
92
92
  unless col_names.include?(start_col) && col_names.include?(end_col)
93
- raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:columns)
93
+ raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:columns, range)
94
94
  end
95
95
 
96
96
  unless start_row.to_i <= num_rows && end_row.to_i <= num_rows
97
- raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:rows)
97
+ raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:rows, range)
98
98
  end
99
99
  else
100
- raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:format)
100
+ raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:format, range)
101
101
  end
102
102
  else
103
- raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:type)
103
+ raise SpreadsheetArchitect::Exceptions::BadRangeError.new(:type, range)
104
104
  end
105
105
  end
106
106
 
@@ -1,3 +1,3 @@
1
1
  module SpreadsheetArchitect
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- spreadsheet_architect (2.0.0)
4
+ spreadsheet_architect (2.0.1)
5
5
  axlsx (>= 2.0)
6
6
  axlsx_styler (>= 0.1.7)
7
7
  rodf (>= 1.0.0)
@@ -12,4 +12,16 @@ class CustomPost < ActiveRecord::Base
12
12
  [:asd, 'tadaaa']
13
13
  ]
14
14
  end
15
+
16
+ SPREADSHEET_OPTIONS = {
17
+ headers: true,
18
+ header_style: {background_color: 'AAAAAA', color: 'FFFFFF', align: :center, font_name: 'Arial', font_size: 10, bold: false, italic: false, underline: false},
19
+ row_style: {background_color: nil, color: 'FFFFFF', align: :left, font_name: 'Arial', font_size: 10, bold: false, italic: false, underline: false},
20
+ sheet_name: 'My Project Export',
21
+ column_styles: [],
22
+ range_styles: [],
23
+ merges: [],
24
+ borders: [],
25
+ column_types: []
26
+ }
15
27
  end
@@ -52764,3 +52764,2576 @@ CustomPostTest: test_xlsx
52764
52764
  CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
52765
52765
   (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52766
52766
   (0.1ms) rollback transaction
52767
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52768
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
52769
+  (0.1ms) begin transaction
52770
+  (0.1ms) commit transaction
52771
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52772
+  (0.1ms) begin transaction
52773
+ -------------------------
52774
+ CustomPostTest: test_xlsx
52775
+ -------------------------
52776
+  (0.0ms) SAVEPOINT active_record_1
52777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52778
+  (0.0ms) SAVEPOINT active_record_1
52779
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
52780
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52781
+  (0.0ms) rollback transaction
52782
+  (0.0ms) begin transaction
52783
+ --------------------------
52784
+ CustomPostTest: test_empty
52785
+ --------------------------
52786
+  (0.0ms) SAVEPOINT active_record_1
52787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52788
+  (0.0ms) SAVEPOINT active_record_1
52789
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52790
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
52791
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52792
+  (0.1ms) rollback transaction
52793
+  (0.0ms) begin transaction
52794
+ ------------------------
52795
+ CustomPostTest: test_ods
52796
+ ------------------------
52797
+  (0.0ms) SAVEPOINT active_record_1
52798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52799
+  (0.0ms) SAVEPOINT active_record_1
52800
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
52801
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
52802
+  (0.0ms) rollback transaction
52803
+  (0.1ms) begin transaction
52804
+ ------------------------
52805
+ CustomPostTest: test_csv
52806
+ ------------------------
52807
+  (0.0ms) SAVEPOINT active_record_1
52808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52809
+  (0.0ms) SAVEPOINT active_record_1
52810
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
52811
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
52812
+  (0.0ms) rollback transaction
52813
+  (0.0ms) begin transaction
52814
+ -----------------------
52815
+ XlsxTest: test_empty_sa
52816
+ -----------------------
52817
+  (0.0ms) rollback transaction
52818
+  (0.0ms) begin transaction
52819
+ --------------------------
52820
+ XlsxTest: test_empty_model
52821
+ --------------------------
52822
+ SQL (0.2ms) DELETE FROM "posts"
52823
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
52824
+  (0.1ms) rollback transaction
52825
+  (0.0ms) begin transaction
52826
+ -----------------
52827
+ XlsxTest: test_sa
52828
+ -----------------
52829
+  (0.1ms) rollback transaction
52830
+  (0.0ms) begin transaction
52831
+ ----------------------
52832
+ XlsxTest: test_extreme
52833
+ ----------------------
52834
+  (0.1ms) rollback transaction
52835
+  (0.1ms) begin transaction
52836
+ --------------------
52837
+ XlsxTest: test_model
52838
+ --------------------
52839
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52840
+  (0.1ms) rollback transaction
52841
+  (0.0ms) begin transaction
52842
+ --------------------
52843
+ PostTest: test_empty
52844
+ --------------------
52845
+  (0.0ms) SAVEPOINT active_record_1
52846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52847
+  (0.0ms) SAVEPOINT active_record_1
52848
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52849
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
52850
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52851
+  (0.0ms) rollback transaction
52852
+  (0.0ms) begin transaction
52853
+ -------------------
52854
+ PostTest: test_xlsx
52855
+ -------------------
52856
+  (0.5ms) SAVEPOINT active_record_1
52857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52858
+  (0.0ms) SAVEPOINT active_record_1
52859
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52860
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52861
+  (0.0ms) rollback transaction
52862
+  (0.0ms) begin transaction
52863
+ ------------------
52864
+ PostTest: test_csv
52865
+ ------------------
52866
+  (0.0ms) SAVEPOINT active_record_1
52867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52868
+  (0.5ms) SAVEPOINT active_record_1
52869
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52870
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
52871
+  (0.0ms) rollback transaction
52872
+  (0.0ms) begin transaction
52873
+ ------------------
52874
+ PostTest: test_ods
52875
+ ------------------
52876
+  (0.5ms) SAVEPOINT active_record_1
52877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52878
+  (0.0ms) SAVEPOINT active_record_1
52879
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52880
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
52881
+  (0.4ms) rollback transaction
52882
+  (0.0ms) begin transaction
52883
+ ------------------------------------
52884
+ SpreadsheetsControllerTest: test_csv
52885
+ ------------------------------------
52886
+  (0.1ms) SAVEPOINT active_record_1
52887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52888
+  (0.0ms) SAVEPOINT active_record_1
52889
+ Processing by SpreadsheetsController#csv as HTML
52890
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52891
+ Rendering text template
52892
+ Rendered text template (0.0ms)
52893
+ Sent data data.csv (6.1ms)
52894
+ Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.1ms)
52895
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52896
+  (0.0ms) rollback transaction
52897
+  (0.0ms) begin transaction
52898
+ ------------------------------------
52899
+ SpreadsheetsControllerTest: test_ods
52900
+ ------------------------------------
52901
+  (0.0ms) SAVEPOINT active_record_1
52902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52903
+  (0.0ms) SAVEPOINT active_record_1
52904
+ Processing by SpreadsheetsController#ods as HTML
52905
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52906
+ Rendering text template
52907
+ Rendered text template (0.0ms)
52908
+ Sent data data.ods (0.4ms)
52909
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.1ms)
52910
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52911
+  (0.5ms) rollback transaction
52912
+  (0.0ms) begin transaction
52913
+ -------------------------------------
52914
+ SpreadsheetsControllerTest: test_xlsx
52915
+ -------------------------------------
52916
+  (0.0ms) SAVEPOINT active_record_1
52917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52918
+  (0.0ms) SAVEPOINT active_record_1
52919
+ Processing by SpreadsheetsController#xlsx as HTML
52920
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52921
+ Rendering text template
52922
+ Rendered text template (0.0ms)
52923
+ Sent data Posts.xlsx (0.4ms)
52924
+ Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.1ms)
52925
+ Processing by SpreadsheetsController#alt_xlsx as XLSX
52926
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52927
+ Rendering text template
52928
+ Rendered text template (0.0ms)
52929
+ Sent data Posts.xlsx (0.5ms)
52930
+ Completed 200 OK in 23ms (Views: 18.5ms | ActiveRecord: 0.1ms)
52931
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
52932
+  (0.0ms) rollback transaction
52933
+  (0.0ms) begin transaction
52934
+ -------------------
52935
+ CsvTest: test_model
52936
+ -------------------
52937
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52938
+  (0.0ms) rollback transaction
52939
+  (0.0ms) begin transaction
52940
+ ----------------
52941
+ CsvTest: test_sa
52942
+ ----------------
52943
+  (0.0ms) rollback transaction
52944
+  (0.1ms) begin transaction
52945
+ ----------------------
52946
+ CsvTest: test_empty_sa
52947
+ ----------------------
52948
+  (0.0ms) rollback transaction
52949
+  (0.0ms) begin transaction
52950
+ ---------------------
52951
+ CsvTest: test_options
52952
+ ---------------------
52953
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
52954
+  (0.0ms) rollback transaction
52955
+  (0.0ms) begin transaction
52956
+ -------------------------
52957
+ CsvTest: test_empty_model
52958
+ -------------------------
52959
+ SQL (0.1ms) DELETE FROM "posts"
52960
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
52961
+  (0.1ms) rollback transaction
52962
+  (0.0ms) begin transaction
52963
+ ------------------------------------------------
52964
+ SpreadsheetArchitectUtilsTest: test_str_humanize
52965
+ ------------------------------------------------
52966
+  (0.1ms) rollback transaction
52967
+  (0.0ms) begin transaction
52968
+ ---------------------------------------------------------
52969
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
52970
+ ---------------------------------------------------------
52971
+  (0.0ms) rollback transaction
52972
+  (0.0ms) begin transaction
52973
+ -----------------------------------------------
52974
+ SpreadsheetArchitectUtilsTest: test_get_options
52975
+ -----------------------------------------------
52976
+  (0.0ms) rollback transaction
52977
+  (0.0ms) begin transaction
52978
+ --------------------------------------------
52979
+ SpreadsheetArchitectUtilsTest: test_get_type
52980
+ --------------------------------------------
52981
+  (0.0ms) rollback transaction
52982
+  (0.0ms) begin transaction
52983
+ ---------------------------------------------------------
52984
+ SpreadsheetArchitectUtilsTest: test_constants_dont_change
52985
+ ---------------------------------------------------------
52986
+  (0.1ms) rollback transaction
52987
+  (0.0ms) begin transaction
52988
+ -------------------------------------------------
52989
+ SpreadsheetArchitectUtilsTest: test_get_cell_data
52990
+ -------------------------------------------------
52991
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
52992
+  (0.0ms) rollback transaction
52993
+  (0.0ms) begin transaction
52994
+ -----------------------------------------------------------
52995
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
52996
+ -----------------------------------------------------------
52997
+  (0.0ms) rollback transaction
52998
+  (0.1ms) begin transaction
52999
+ -----------------------------
53000
+ PlainRubyObjectTest: test_ods
53001
+ -----------------------------
53002
+  (0.0ms) SAVEPOINT active_record_1
53003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53004
+  (0.0ms) SAVEPOINT active_record_1
53005
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53006
+  (0.0ms) rollback transaction
53007
+  (0.0ms) begin transaction
53008
+ -----------------------------
53009
+ PlainRubyObjectTest: test_csv
53010
+ -----------------------------
53011
+  (0.0ms) SAVEPOINT active_record_1
53012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53013
+  (0.0ms) SAVEPOINT active_record_1
53014
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53015
+  (0.0ms) rollback transaction
53016
+  (0.0ms) begin transaction
53017
+ ------------------------------
53018
+ PlainRubyObjectTest: test_xlsx
53019
+ ------------------------------
53020
+  (0.0ms) SAVEPOINT active_record_1
53021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53022
+  (0.0ms) SAVEPOINT active_record_1
53023
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53024
+  (0.0ms) rollback transaction
53025
+  (0.1ms) begin transaction
53026
+ --------------------------------
53027
+ BadPlainRubyObjectTest: test_csv
53028
+ --------------------------------
53029
+  (0.0ms) SAVEPOINT active_record_1
53030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53031
+  (0.0ms) SAVEPOINT active_record_1
53032
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53033
+  (0.0ms) rollback transaction
53034
+  (0.1ms) begin transaction
53035
+ --------------------------------
53036
+ BadPlainRubyObjectTest: test_ods
53037
+ --------------------------------
53038
+  (0.0ms) SAVEPOINT active_record_1
53039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53040
+  (0.0ms) SAVEPOINT active_record_1
53041
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53042
+  (0.0ms) rollback transaction
53043
+  (0.0ms) begin transaction
53044
+ ---------------------------------
53045
+ BadPlainRubyObjectTest: test_xlsx
53046
+ ---------------------------------
53047
+  (0.0ms) SAVEPOINT active_record_1
53048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53049
+  (0.0ms) SAVEPOINT active_record_1
53050
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53051
+  (0.0ms) rollback transaction
53052
+  (0.0ms) begin transaction
53053
+ -------------------------------
53054
+ ActiveModelObjectTest: test_csv
53055
+ -------------------------------
53056
+  (0.0ms) SAVEPOINT active_record_1
53057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53058
+  (0.0ms) SAVEPOINT active_record_1
53059
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53060
+  (0.0ms) rollback transaction
53061
+  (0.0ms) begin transaction
53062
+ --------------------------------
53063
+ ActiveModelObjectTest: test_xlsx
53064
+ --------------------------------
53065
+  (0.0ms) SAVEPOINT active_record_1
53066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53067
+  (0.1ms) SAVEPOINT active_record_1
53068
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53069
+  (0.0ms) rollback transaction
53070
+  (0.0ms) begin transaction
53071
+ -------------------------------
53072
+ ActiveModelObjectTest: test_ods
53073
+ -------------------------------
53074
+  (0.0ms) SAVEPOINT active_record_1
53075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53076
+  (0.0ms) SAVEPOINT active_record_1
53077
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53078
+  (0.0ms) rollback transaction
53079
+  (0.0ms) begin transaction
53080
+ -------------------------
53081
+ OdsTest: test_empty_model
53082
+ -------------------------
53083
+  (0.0ms) SAVEPOINT active_record_1
53084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53085
+  (0.0ms) SAVEPOINT active_record_1
53086
+  (0.1ms) SAVEPOINT active_record_2
53087
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0423191c897aa0a0eae48771906b7d5a"], ["content", "5ab3df459df22f97d8d15836cd7d15ad"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53088
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53089
+  (0.0ms) SAVEPOINT active_record_2
53090
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0f1c81d6a02790193c8858cfc54fe38b"], ["content", "bf7422278ff009b2bc95c0668d4d1dd6"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53091
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53092
+  (0.0ms) SAVEPOINT active_record_2
53093
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5d30db3a48942aed5bedeb31ef88bcbd"], ["content", "197660d3abbe5e6259ba923b04ae7668"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53094
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53095
+  (0.0ms) SAVEPOINT active_record_2
53096
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "eb7c348b1d16dce4734c2b3f1084f0b7"], ["content", "fa61984d51d1bb79c0d6b05fdea40c7c"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53097
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53098
+  (0.0ms) SAVEPOINT active_record_2
53099
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "3cc656a501bb577a942d06bf956b3c51"], ["content", "1840d5db04836705ada2d54608270c0a"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53100
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53101
+  (0.0ms) SAVEPOINT active_record_2
53102
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a83c20fc57abe92756a787370f6c5bc0"], ["content", "665e25ad3acb77ba4b0110a9c4812985"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53103
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53104
+  (0.0ms) SAVEPOINT active_record_2
53105
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b5a2bca09d7aa734133ae6d68105b59d"], ["content", "b152c0d667b4914dad558a3c6088a721"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53106
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53107
+  (0.1ms) SAVEPOINT active_record_2
53108
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cd3e3e8b100d04a2527e323752924088"], ["content", "f0210840135caa621c46f95a5c9af33d"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53109
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53110
+  (0.0ms) SAVEPOINT active_record_2
53111
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e6a61ccead6a330b404f84ddea5689f9"], ["content", "fe8c115af147e12526833a5f89fcbac4"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53112
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53113
+  (0.1ms) SAVEPOINT active_record_2
53114
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "de17ec33c7c2582b969f1ade9400443d"], ["content", "9e862c1cab2f6716dc6f698725d9903d"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53115
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53116
+ SQL (0.0ms) DELETE FROM "posts"
53117
+ CustomPost Load (0.0ms) SELECT "posts".* FROM "posts"
53118
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53119
+  (0.1ms) rollback transaction
53120
+  (0.0ms) begin transaction
53121
+ -------------------
53122
+ OdsTest: test_model
53123
+ -------------------
53124
+  (0.0ms) SAVEPOINT active_record_1
53125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53126
+  (0.0ms) SAVEPOINT active_record_1
53127
+  (0.0ms) SAVEPOINT active_record_2
53128
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4d7a043e2ad43aff5dcbb17c62719cca"], ["content", "e889be254e562ada1de91b2dfd01ed02"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53129
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53130
+  (0.0ms) SAVEPOINT active_record_2
53131
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "103dfb83515fbff640580e2517baed32"], ["content", "26c566169ad29787e908396b00e23560"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53132
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53133
+  (0.0ms) SAVEPOINT active_record_2
53134
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "39481031bd560b900886aa3b8c23cd11"], ["content", "070930ffb8bff7f846e5c5dc21a39007"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53135
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53136
+  (0.0ms) SAVEPOINT active_record_2
53137
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a1cf1b5a7c46b775223768613c05cae1"], ["content", "5c622a39eff94b7152705ba970125c9d"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53138
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53139
+  (0.1ms) SAVEPOINT active_record_2
53140
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "86d61d8705db19507ed8d9aa6fbef657"], ["content", "fd240d940e9dc6a233a8c85fcd1a340d"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53141
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53142
+  (0.0ms) SAVEPOINT active_record_2
53143
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "900a0e5d329a869944220972f2b6b418"], ["content", "cdd28f2f50f2ed71bcead1129fc6e209"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53144
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53145
+  (0.0ms) SAVEPOINT active_record_2
53146
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e3e75cdbb855aa95f83f8b04f58b3bac"], ["content", "4984fc9bde1c56b508639cfd54720b6c"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53147
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53148
+  (0.0ms) SAVEPOINT active_record_2
53149
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "aa74f9f064aacc4eaf7f8c12217d656c"], ["content", "d79c4059dadb62e921fa4f12cc65ef0e"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53150
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53151
+  (0.0ms) SAVEPOINT active_record_2
53152
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cc9380d263acd2634d6561ac63d44006"], ["content", "07d26896a3b1ca5b68e5bdc194080331"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53153
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53154
+  (0.0ms) SAVEPOINT active_record_2
53155
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5717a094a3934d15e0ebde4238434d95"], ["content", "6ebe401be5cc892fe4b1d0ebb75ef6a4"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53156
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53157
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53158
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53159
+  (0.1ms) rollback transaction
53160
+  (0.0ms) begin transaction
53161
+ ----------------------
53162
+ OdsTest: test_empty_sa
53163
+ ----------------------
53164
+  (0.0ms) SAVEPOINT active_record_1
53165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53166
+  (0.0ms) SAVEPOINT active_record_1
53167
+  (0.0ms) SAVEPOINT active_record_2
53168
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d7e915ac806b19412b41d04e0b5f66f5"], ["content", "fc80bd6dc9f0fe0736730e80c2b2d5e2"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53169
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53170
+  (0.0ms) SAVEPOINT active_record_2
53171
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e7132808e003c942c3ca744308220963"], ["content", "8bf251a91b9d7809bb668df92551919f"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53172
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53173
+  (0.0ms) SAVEPOINT active_record_2
53174
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e3c0bf1e2020124a1e2446d97f612666"], ["content", "1d83aa767afffa0ab52d7935e5183ab5"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53175
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53176
+  (0.0ms) SAVEPOINT active_record_2
53177
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "624ff40a3666457d15b915867671edfc"], ["content", "600fd3706296f1569f6710f66ff4e037"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53178
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53179
+  (0.0ms) SAVEPOINT active_record_2
53180
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "946076f6c09761d1f97cdb0cde4f7815"], ["content", "cc267b51fb8976a05407b2bd4c83e766"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53181
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53182
+  (0.0ms) SAVEPOINT active_record_2
53183
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5bd2377c2b626b45645fff635d3918fe"], ["content", "f50e4d07b47bb12416fbf84f63b724c6"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53184
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53185
+  (0.0ms) SAVEPOINT active_record_2
53186
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "06307049be52b8e34499c954f3077dcd"], ["content", "82f576ac1678ebed94a7877383b8c65e"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53187
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53188
+  (0.0ms) SAVEPOINT active_record_2
53189
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e32940ac1e17287e17a019e88b2df382"], ["content", "b7ad1148a56f56b6d844ee6656666fda"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53190
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53191
+  (0.0ms) SAVEPOINT active_record_2
53192
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "65f873f2894e032da67a82ce70c81f4c"], ["content", "195dfcef600b1999d717aa23416e9849"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53193
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53194
+  (0.0ms) SAVEPOINT active_record_2
53195
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "89db98598119d7ca84abf1a1ad4b6fad"], ["content", "feb177e69ecd13c575acc97b840166b9"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53196
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53197
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53198
+  (0.1ms) rollback transaction
53199
+  (0.0ms) begin transaction
53200
+ ----------------
53201
+ OdsTest: test_sa
53202
+ ----------------
53203
+  (0.0ms) SAVEPOINT active_record_1
53204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53205
+  (0.0ms) SAVEPOINT active_record_1
53206
+  (0.0ms) SAVEPOINT active_record_2
53207
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0fe8f8d6d4b1d118928624f76b4a6a5d"], ["content", "e1f9af848c870adbb72d6e783fd9c3f5"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53208
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53209
+  (0.0ms) SAVEPOINT active_record_2
53210
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5746def2676802bec1776adb7a43114f"], ["content", "4cb144d0401a0dd2ae5c08fbf3299776"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53211
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53212
+  (0.0ms) SAVEPOINT active_record_2
53213
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7e27a7c47ce70e4dbf1d1ee3d8e410e3"], ["content", "9c1befee0f5c8338443ad01d6c9fb0de"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53214
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53215
+  (0.0ms) SAVEPOINT active_record_2
53216
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2b1bed014c7d4bf6d86bd7bf35521772"], ["content", "2a60622b090a4f662b1b91521393853c"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53217
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53218
+  (0.0ms) SAVEPOINT active_record_2
53219
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "104ef872c5cef26428e14026a819b5a8"], ["content", "fac21e9216dbbf3e4eaca0687c716471"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53220
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53221
+  (0.0ms) SAVEPOINT active_record_2
53222
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "37aba27ac42069351562b668488c7476"], ["content", "4406d59d577a328624f3d6b07096dd2b"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53223
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53224
+  (0.0ms) SAVEPOINT active_record_2
53225
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a6fd00b68041a3f4a50791fa8cb498c9"], ["content", "fa71b60f32dfddc9e7802332c93b66af"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53226
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53227
+  (0.0ms) SAVEPOINT active_record_2
53228
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "344855aacd878df6826a7730302d109e"], ["content", "df723e2ac3590aa59b512f5c3093332b"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53229
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53230
+  (0.1ms) SAVEPOINT active_record_2
53231
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "80928dec4cfa9564a34d2902468d3e93"], ["content", "57aa293593d3f624da8ef78232a45442"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53232
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53233
+  (0.0ms) SAVEPOINT active_record_2
53234
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "3ee1c0cd47a6b9c64547ee8528c6424d"], ["content", "6e79107be408988db35b8f526492ef9a"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53235
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53236
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53237
+  (0.1ms) rollback transaction
53238
+  (0.0ms) begin transaction
53239
+ ---------------------
53240
+ OdsTest: test_options
53241
+ ---------------------
53242
+  (0.0ms) SAVEPOINT active_record_1
53243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53244
+  (0.0ms) SAVEPOINT active_record_1
53245
+  (0.0ms) SAVEPOINT active_record_2
53246
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "823096debbab0ad26f76974f5ea9747d"], ["content", "91cba70e44dec6306317f8bc14980da3"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53247
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53248
+  (0.0ms) SAVEPOINT active_record_2
53249
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "84a5ff6bd8d1291c5e95bca1391ee591"], ["content", "6f903cffb425256dac49c7dcff1fd275"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53250
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53251
+  (0.0ms) SAVEPOINT active_record_2
53252
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "dcb9c773a462ce8f3af660dd51244275"], ["content", "1cf630fae8e8c744ef1e9a46da5a6c30"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53253
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53254
+  (0.0ms) SAVEPOINT active_record_2
53255
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a25522bb148d403e4893fa3b74357ae2"], ["content", "03dd767187f60b1594d31d143d4843b4"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53256
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53257
+  (0.0ms) SAVEPOINT active_record_2
53258
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "27412254fae61171711c7148578988b7"], ["content", "44f91c4eb959f78e78cd2dcbed5eea3d"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53259
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53260
+  (0.1ms) SAVEPOINT active_record_2
53261
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ff68e24ed61f0f44b8febfc31d252767"], ["content", "681dabe68282220f2af01497d6079f63"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53262
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53263
+  (0.0ms) SAVEPOINT active_record_2
53264
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "327cf5f0a288e8d981f62b2df0a4bbb8"], ["content", "d0526d5830144495c1573abb14c451cf"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53265
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53266
+  (0.0ms) SAVEPOINT active_record_2
53267
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b7988d9cf5279e166ed03e1607d239f6"], ["content", "c3ea08942940b7ca29e80afc97912d30"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53268
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53269
+  (0.0ms) SAVEPOINT active_record_2
53270
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "72373abd7914d43bc7f61286dc25c903"], ["content", "47e3ab9e86c96426018f70cbc797e719"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53271
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53272
+  (0.0ms) SAVEPOINT active_record_2
53273
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "47cc6ceb37784147a43105b5c6af337f"], ["content", "942ee4c1b443fb54f3a571a8774ab44e"], ["age", 2], ["created_at", 2017-02-16 17:51:08 UTC], ["updated_at", 2017-02-16 17:51:08 UTC]]
53274
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53275
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53276
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53277
+  (0.1ms) rollback transaction
53278
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53279
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
53280
+  (0.1ms) begin transaction
53281
+  (0.1ms) commit transaction
53282
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53283
+  (0.1ms) begin transaction
53284
+ -----------------------------
53285
+ PlainRubyObjectTest: test_csv
53286
+ -----------------------------
53287
+  (0.0ms) SAVEPOINT active_record_1
53288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53289
+  (0.0ms) SAVEPOINT active_record_1
53290
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53291
+  (0.0ms) rollback transaction
53292
+  (0.0ms) begin transaction
53293
+ -----------------------------
53294
+ PlainRubyObjectTest: test_ods
53295
+ -----------------------------
53296
+  (0.0ms) SAVEPOINT active_record_1
53297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53298
+  (0.0ms) SAVEPOINT active_record_1
53299
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53300
+  (0.0ms) rollback transaction
53301
+  (0.0ms) begin transaction
53302
+ ------------------------------
53303
+ PlainRubyObjectTest: test_xlsx
53304
+ ------------------------------
53305
+  (0.1ms) SAVEPOINT active_record_1
53306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53307
+  (0.0ms) SAVEPOINT active_record_1
53308
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53309
+  (0.0ms) rollback transaction
53310
+  (0.0ms) begin transaction
53311
+ ---------------------------------------------------------
53312
+ SpreadsheetArchitectUtilsTest: test_constants_dont_change
53313
+ ---------------------------------------------------------
53314
+  (0.0ms) rollback transaction
53315
+  (0.0ms) begin transaction
53316
+ --------------------------------------------
53317
+ SpreadsheetArchitectUtilsTest: test_get_type
53318
+ --------------------------------------------
53319
+  (0.0ms) rollback transaction
53320
+  (0.0ms) begin transaction
53321
+ ---------------------------------------------------------
53322
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
53323
+ ---------------------------------------------------------
53324
+  (0.0ms) rollback transaction
53325
+  (0.0ms) begin transaction
53326
+ -----------------------------------------------------------
53327
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
53328
+ -----------------------------------------------------------
53329
+  (0.0ms) rollback transaction
53330
+  (0.0ms) begin transaction
53331
+ ------------------------------------------------
53332
+ SpreadsheetArchitectUtilsTest: test_str_humanize
53333
+ ------------------------------------------------
53334
+  (0.0ms) rollback transaction
53335
+  (0.0ms) begin transaction
53336
+ -------------------------------------------------
53337
+ SpreadsheetArchitectUtilsTest: test_get_cell_data
53338
+ -------------------------------------------------
53339
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
53340
+  (0.1ms) rollback transaction
53341
+  (0.0ms) begin transaction
53342
+ -----------------------------------------------
53343
+ SpreadsheetArchitectUtilsTest: test_get_options
53344
+ -----------------------------------------------
53345
+  (0.0ms) rollback transaction
53346
+  (0.1ms) begin transaction
53347
+ ---------------------------------
53348
+ BadPlainRubyObjectTest: test_xlsx
53349
+ ---------------------------------
53350
+  (0.0ms) SAVEPOINT active_record_1
53351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53352
+  (0.0ms) SAVEPOINT active_record_1
53353
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53354
+  (0.0ms) rollback transaction
53355
+  (0.0ms) begin transaction
53356
+ --------------------------------
53357
+ BadPlainRubyObjectTest: test_csv
53358
+ --------------------------------
53359
+  (0.0ms) SAVEPOINT active_record_1
53360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53361
+  (0.0ms) SAVEPOINT active_record_1
53362
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53363
+  (0.0ms) rollback transaction
53364
+  (0.0ms) begin transaction
53365
+ --------------------------------
53366
+ BadPlainRubyObjectTest: test_ods
53367
+ --------------------------------
53368
+  (0.0ms) SAVEPOINT active_record_1
53369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53370
+  (0.0ms) SAVEPOINT active_record_1
53371
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53372
+  (0.0ms) rollback transaction
53373
+  (0.0ms) begin transaction
53374
+ -------------------------------------
53375
+ SpreadsheetsControllerTest: test_xlsx
53376
+ -------------------------------------
53377
+  (0.0ms) SAVEPOINT active_record_1
53378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53379
+  (0.0ms) SAVEPOINT active_record_1
53380
+ Processing by SpreadsheetsController#xlsx as HTML
53381
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53382
+ Rendering text template
53383
+ Rendered text template (0.0ms)
53384
+ Sent data Posts.xlsx (3.6ms)
53385
+ Completed 200 OK in 10ms (Views: 3.7ms | ActiveRecord: 0.1ms)
53386
+ Processing by SpreadsheetsController#alt_xlsx as XLSX
53387
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53388
+ Rendering text template
53389
+ Rendered text template (0.0ms)
53390
+ Sent data Posts.xlsx (0.4ms)
53391
+ Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.1ms)
53392
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53393
+  (0.0ms) rollback transaction
53394
+  (0.0ms) begin transaction
53395
+ ------------------------------------
53396
+ SpreadsheetsControllerTest: test_ods
53397
+ ------------------------------------
53398
+  (0.0ms) SAVEPOINT active_record_1
53399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
53400
+  (0.0ms) SAVEPOINT active_record_1
53401
+ Processing by SpreadsheetsController#ods as HTML
53402
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53403
+ Rendering text template
53404
+ Rendered text template (0.0ms)
53405
+ Sent data data.ods (0.3ms)
53406
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms)
53407
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53408
+  (0.0ms) rollback transaction
53409
+  (0.1ms) begin transaction
53410
+ ------------------------------------
53411
+ SpreadsheetsControllerTest: test_csv
53412
+ ------------------------------------
53413
+  (0.0ms) SAVEPOINT active_record_1
53414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53415
+  (0.0ms) SAVEPOINT active_record_1
53416
+ Processing by SpreadsheetsController#csv as HTML
53417
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53418
+ Rendering text template
53419
+ Rendered text template (0.0ms)
53420
+ Sent data data.csv (0.3ms)
53421
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
53422
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53423
+  (0.0ms) rollback transaction
53424
+  (0.0ms) begin transaction
53425
+ -------------------
53426
+ CsvTest: test_model
53427
+ -------------------
53428
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53429
+  (0.0ms) rollback transaction
53430
+  (0.0ms) begin transaction
53431
+ ---------------------
53432
+ CsvTest: test_options
53433
+ ---------------------
53434
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53435
+  (0.1ms) rollback transaction
53436
+  (0.0ms) begin transaction
53437
+ ----------------
53438
+ CsvTest: test_sa
53439
+ ----------------
53440
+  (0.0ms) rollback transaction
53441
+  (0.0ms) begin transaction
53442
+ ----------------------
53443
+ CsvTest: test_empty_sa
53444
+ ----------------------
53445
+  (0.0ms) rollback transaction
53446
+  (0.0ms) begin transaction
53447
+ -------------------------
53448
+ CsvTest: test_empty_model
53449
+ -------------------------
53450
+ SQL (0.2ms) DELETE FROM "posts"
53451
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53452
+  (0.1ms) rollback transaction
53453
+  (0.0ms) begin transaction
53454
+ ------------------
53455
+ PostTest: test_csv
53456
+ ------------------
53457
+  (0.0ms) SAVEPOINT active_record_1
53458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53459
+  (0.0ms) SAVEPOINT active_record_1
53460
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53461
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53462
+  (0.1ms) rollback transaction
53463
+  (0.0ms) begin transaction
53464
+ --------------------
53465
+ PostTest: test_empty
53466
+ --------------------
53467
+  (0.0ms) SAVEPOINT active_record_1
53468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53469
+  (0.0ms) SAVEPOINT active_record_1
53470
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53471
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53472
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53473
+  (0.0ms) rollback transaction
53474
+  (0.0ms) begin transaction
53475
+ ------------------
53476
+ PostTest: test_ods
53477
+ ------------------
53478
+  (0.0ms) SAVEPOINT active_record_1
53479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53480
+  (0.0ms) SAVEPOINT active_record_1
53481
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53482
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53483
+  (0.0ms) rollback transaction
53484
+  (0.0ms) begin transaction
53485
+ -------------------
53486
+ PostTest: test_xlsx
53487
+ -------------------
53488
+  (0.1ms) SAVEPOINT active_record_1
53489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53490
+  (0.0ms) SAVEPOINT active_record_1
53491
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53492
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53493
+  (0.0ms) rollback transaction
53494
+  (0.0ms) begin transaction
53495
+ -------------------------------
53496
+ ActiveModelObjectTest: test_csv
53497
+ -------------------------------
53498
+  (0.0ms) SAVEPOINT active_record_1
53499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53500
+  (0.0ms) SAVEPOINT active_record_1
53501
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53502
+  (0.0ms) rollback transaction
53503
+  (0.0ms) begin transaction
53504
+ -------------------------------
53505
+ ActiveModelObjectTest: test_ods
53506
+ -------------------------------
53507
+  (0.0ms) SAVEPOINT active_record_1
53508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53509
+  (0.0ms) SAVEPOINT active_record_1
53510
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53511
+  (0.0ms) rollback transaction
53512
+  (0.1ms) begin transaction
53513
+ --------------------------------
53514
+ ActiveModelObjectTest: test_xlsx
53515
+ --------------------------------
53516
+  (0.0ms) SAVEPOINT active_record_1
53517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53518
+  (0.0ms) SAVEPOINT active_record_1
53519
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53520
+  (0.0ms) rollback transaction
53521
+  (0.0ms) begin transaction
53522
+ -----------------
53523
+ XlsxTest: test_sa
53524
+ -----------------
53525
+  (0.1ms) rollback transaction
53526
+  (0.0ms) begin transaction
53527
+ ----------------------
53528
+ XlsxTest: test_extreme
53529
+ ----------------------
53530
+  (0.1ms) rollback transaction
53531
+  (0.0ms) begin transaction
53532
+ -----------------------
53533
+ XlsxTest: test_empty_sa
53534
+ -----------------------
53535
+  (0.0ms) rollback transaction
53536
+  (0.0ms) begin transaction
53537
+ --------------------------
53538
+ XlsxTest: test_empty_model
53539
+ --------------------------
53540
+ SQL (0.1ms) DELETE FROM "posts"
53541
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53542
+  (0.1ms) rollback transaction
53543
+  (0.0ms) begin transaction
53544
+ --------------------
53545
+ XlsxTest: test_model
53546
+ --------------------
53547
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53548
+  (0.1ms) rollback transaction
53549
+  (0.0ms) begin transaction
53550
+ ------------------------
53551
+ CustomPostTest: test_csv
53552
+ ------------------------
53553
+  (0.0ms) SAVEPOINT active_record_1
53554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53555
+  (0.0ms) SAVEPOINT active_record_1
53556
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53557
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53558
+  (0.0ms) rollback transaction
53559
+  (0.0ms) begin transaction
53560
+ ------------------------
53561
+ CustomPostTest: test_ods
53562
+ ------------------------
53563
+  (0.0ms) SAVEPOINT active_record_1
53564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53565
+  (0.0ms) SAVEPOINT active_record_1
53566
+ CustomPost Load (0.0ms) SELECT "posts".* FROM "posts"
53567
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53568
+  (0.0ms) rollback transaction
53569
+  (0.0ms) begin transaction
53570
+ -------------------------
53571
+ CustomPostTest: test_xlsx
53572
+ -------------------------
53573
+  (0.0ms) SAVEPOINT active_record_1
53574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53575
+  (0.0ms) SAVEPOINT active_record_1
53576
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53577
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53578
+  (0.0ms) rollback transaction
53579
+  (0.0ms) begin transaction
53580
+ --------------------------
53581
+ CustomPostTest: test_empty
53582
+ --------------------------
53583
+  (0.0ms) SAVEPOINT active_record_1
53584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53585
+  (0.0ms) SAVEPOINT active_record_1
53586
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
53587
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
53588
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53589
+  (0.0ms) rollback transaction
53590
+  (0.0ms) begin transaction
53591
+ -------------------
53592
+ OdsTest: test_model
53593
+ -------------------
53594
+  (0.0ms) SAVEPOINT active_record_1
53595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53596
+  (0.0ms) SAVEPOINT active_record_1
53597
+  (0.1ms) SAVEPOINT active_record_2
53598
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a1be59bd9f2aa35e563e1b30f94c0643"], ["content", "b5ed382f64c11730c62d056e28a94bdf"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53599
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53600
+  (0.0ms) SAVEPOINT active_record_2
53601
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "de4ea95e6b0499b0cb3bb1fd66808b53"], ["content", "e55e05a6e7a8d8748c5de90b468c3dac"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53602
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53603
+  (0.0ms) SAVEPOINT active_record_2
53604
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a0b1c7e20ab31b0a4e35385689e1121d"], ["content", "24de9e6e2d2a3d9dce48cca6871a149e"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53605
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53606
+  (0.0ms) SAVEPOINT active_record_2
53607
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "587e5634e25e7ce1582815378fb5de64"], ["content", "437b7d35f4108428e69a913c264ffe21"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53608
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53609
+  (0.0ms) SAVEPOINT active_record_2
53610
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a124123e32b11623bff7403328eafc63"], ["content", "5920bf2d27259fcbe55dd57304d29dfc"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53611
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53612
+  (0.0ms) SAVEPOINT active_record_2
53613
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "53828c970b6756f391f40d97499c45df"], ["content", "b4af53e670a6ac1764c7fe314048e2b1"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53614
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53615
+  (0.0ms) SAVEPOINT active_record_2
53616
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7b5b6eab2fb1af345786ca313044cda2"], ["content", "7e6f4c0f1132acd0ab3cbb1c5834f497"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53617
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53618
+  (0.0ms) SAVEPOINT active_record_2
53619
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6dc0402154c50a830d8d449e6b06136b"], ["content", "b9246e0e0696464c393a04e00576608a"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53620
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53621
+  (0.0ms) SAVEPOINT active_record_2
53622
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4fa44d8d99ff689118b69e3511499fa0"], ["content", "ead93babfd6b145aae1d89356f1a4838"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53623
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53624
+  (0.0ms) SAVEPOINT active_record_2
53625
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "1dde28ccfb6387d00283c2330ce19eff"], ["content", "37bf7910fa61a9ca8b2c4d97db7964d0"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53626
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53627
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53628
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53629
+  (0.1ms) rollback transaction
53630
+  (0.0ms) begin transaction
53631
+ -------------------------
53632
+ OdsTest: test_empty_model
53633
+ -------------------------
53634
+  (0.0ms) SAVEPOINT active_record_1
53635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53636
+  (0.0ms) SAVEPOINT active_record_1
53637
+  (0.0ms) SAVEPOINT active_record_2
53638
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "3d4fd6ae113d0920b1b61dfc6cea4942"], ["content", "782ecb7c5f2dde1e98fa59049f35ca0a"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53639
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53640
+  (0.0ms) SAVEPOINT active_record_2
53641
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2b415f1fffb2fc206e861e41d7e6c307"], ["content", "e55f42b6f3014ae3b6399de32a972eeb"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53642
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53643
+  (0.0ms) SAVEPOINT active_record_2
53644
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2bc764b23669a705284d9789782cae22"], ["content", "4ad124e0bf58245af19496959af94dbb"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53645
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53646
+  (0.0ms) SAVEPOINT active_record_2
53647
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "573e9a251cafa913efb96774160958e1"], ["content", "64ef3bc6ccbdd63e4357378bb4b09ba0"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53648
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53649
+  (0.0ms) SAVEPOINT active_record_2
53650
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8f500f034b183a74af9b481a8b0ff502"], ["content", "a88c5e64509446bc006fe9361d4945f8"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53651
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53652
+  (0.0ms) SAVEPOINT active_record_2
53653
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bb5025baebf9ac538d7538dbc5a0cf2f"], ["content", "0f0cac22064ef0c83e689c11bd31afd3"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53654
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53655
+  (0.0ms) SAVEPOINT active_record_2
53656
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "46ece15b0bbf602b7446cb1866d24c61"], ["content", "a44ca846a558dbd56884ed62ca8b5304"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53657
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53658
+  (0.0ms) SAVEPOINT active_record_2
53659
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "50bb83cf852e00cad77f300ac41c0102"], ["content", "955afc5a383012625aadc47e722b0e18"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53660
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53661
+  (0.0ms) SAVEPOINT active_record_2
53662
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "510b970f7edb7214ebda30bd24ff7f3c"], ["content", "7f1d8dc3249aec67addb3add60f9b916"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53663
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53664
+  (0.0ms) SAVEPOINT active_record_2
53665
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "1462f6786443e173fe9081ef36b20dc7"], ["content", "641947375f189d48e2d5e2b830d6b33c"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53666
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53667
+ SQL (0.0ms) DELETE FROM "posts"
53668
+ CustomPost Load (0.0ms) SELECT "posts".* FROM "posts"
53669
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53670
+  (0.1ms) rollback transaction
53671
+  (0.0ms) begin transaction
53672
+ ---------------------
53673
+ OdsTest: test_options
53674
+ ---------------------
53675
+  (0.0ms) SAVEPOINT active_record_1
53676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
53677
+  (0.0ms) SAVEPOINT active_record_1
53678
+  (0.0ms) SAVEPOINT active_record_2
53679
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b42568384dd8df4c9bcc669287172342"], ["content", "30d626f53c0ec89d28c461551453ce75"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53680
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53681
+  (0.0ms) SAVEPOINT active_record_2
53682
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "84478661432b298bbfbf71802213c220"], ["content", "e5292fc1d7e6eb9834c6725607297417"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53683
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53684
+  (0.1ms) SAVEPOINT active_record_2
53685
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6515042440b19e82bbcc605f7498a21a"], ["content", "848cd6fc8230ba0fc22cc5bd3bf5c687"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53686
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53687
+  (0.0ms) SAVEPOINT active_record_2
53688
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c2ec2480e04cc6810b4e1404cd9dd680"], ["content", "6b7576c7334bf7fce7585084303d46e3"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53689
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53690
+  (0.0ms) SAVEPOINT active_record_2
53691
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c7432fa6f10f8cb2ae52faf8f005e739"], ["content", "1104d1436a45beaaa673dbb5582e5128"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53692
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53693
+  (0.0ms) SAVEPOINT active_record_2
53694
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7f258f0f9a881740a2f442ebcc8642c9"], ["content", "a8810cb6acb1de38aeb3d9b015449cd4"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53695
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53696
+  (0.0ms) SAVEPOINT active_record_2
53697
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "472e53fa0d2f56a664d577b6656cc394"], ["content", "ff96152f256ead32655ac02e04551871"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53698
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53699
+  (0.0ms) SAVEPOINT active_record_2
53700
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0683df6677a7fabb38a650abd200c344"], ["content", "793eefe904eccae6de7620055660b77a"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53701
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53702
+  (0.0ms) SAVEPOINT active_record_2
53703
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "89586a97f9793b1acd97d470e7c82db5"], ["content", "f2db52a0cf057472f1e4ab06edef3fd9"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53704
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53705
+  (0.0ms) SAVEPOINT active_record_2
53706
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0b0f0e3c998d36e67711b30df1a78429"], ["content", "57bb1ed484f9e2c1ed141edfdd72c917"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53707
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53708
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53709
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53710
+  (0.1ms) rollback transaction
53711
+  (0.0ms) begin transaction
53712
+ ----------------------
53713
+ OdsTest: test_empty_sa
53714
+ ----------------------
53715
+  (0.0ms) SAVEPOINT active_record_1
53716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53717
+  (0.0ms) SAVEPOINT active_record_1
53718
+  (0.0ms) SAVEPOINT active_record_2
53719
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a66ac54d5df11636b95b6f2d3e88da10"], ["content", "e8a4c014e0a156990e50a5e7da2b7080"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53720
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53721
+  (0.0ms) SAVEPOINT active_record_2
53722
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0e05e2069c18aa94446c6d464f3eb522"], ["content", "91448887f0f810de6b09f42e87068b97"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53723
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53724
+  (0.0ms) SAVEPOINT active_record_2
53725
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b73034483cbde40a8e7e57be560b8d82"], ["content", "b06efedd511738f3bcacf4c20bc43c96"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53726
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53727
+  (0.0ms) SAVEPOINT active_record_2
53728
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e13aeffea3ebfa2ced8237ee0102bef0"], ["content", "e61d252d49411eeb0e0bda1d17ac2847"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53729
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53730
+  (0.0ms) SAVEPOINT active_record_2
53731
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6eb6099b56c755b77730b163a8684129"], ["content", "738e4c79a52ce0a28138a129e47796ae"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53732
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53733
+  (0.0ms) SAVEPOINT active_record_2
53734
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "aa91286268fc62d11850aa5547d2b0e6"], ["content", "c5f133a20d11ee85a417f4349dd8c154"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53735
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53736
+  (0.0ms) SAVEPOINT active_record_2
53737
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "fce07d5249ef39a14dad83d882b512ca"], ["content", "f15e9172a506937a9bbd99f4763289f2"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53738
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53739
+  (0.0ms) SAVEPOINT active_record_2
53740
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0a91d943d46b0eb2a2035d5771f58396"], ["content", "190d947c06737fa667cf9ff9c77de99f"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53741
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53742
+  (0.0ms) SAVEPOINT active_record_2
53743
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ee416ba15efdea7c96dff6230a80a84e"], ["content", "1181290615120addcc48c99a64cc8bee"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53744
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53745
+  (0.0ms) SAVEPOINT active_record_2
53746
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "63522dc40aa4d8959103385a7d02ba8b"], ["content", "8f3257a45f008e684fedda20fdeb645d"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53747
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53748
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53749
+  (0.1ms) rollback transaction
53750
+  (0.0ms) begin transaction
53751
+ ----------------
53752
+ OdsTest: test_sa
53753
+ ----------------
53754
+  (0.0ms) SAVEPOINT active_record_1
53755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53756
+  (0.0ms) SAVEPOINT active_record_1
53757
+  (0.0ms) SAVEPOINT active_record_2
53758
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b3408ae3029b6020af71950a62c92f17"], ["content", "40c91a672a7b4f6fcbaca505fe509e2f"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53759
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53760
+  (0.0ms) SAVEPOINT active_record_2
53761
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8bbadd459c512b9e462ad2d57e455814"], ["content", "1b9bcbee5c0755114044466aa7e10039"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53762
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53763
+  (0.0ms) SAVEPOINT active_record_2
53764
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d8c717fe1b45665027cdb16618224d43"], ["content", "f811b0e0497811b950b1ed7c48b9f425"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53765
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53766
+  (0.0ms) SAVEPOINT active_record_2
53767
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "09a55aa4202a2c900af92ed316092fa7"], ["content", "6d6840099cb4dafcb53d5ad713ec1084"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53768
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53769
+  (0.0ms) SAVEPOINT active_record_2
53770
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "fb656e59093ed275110b2a4fd833d6bd"], ["content", "ac341b0d3b1718bbfabb1047f851a4ec"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53771
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53772
+  (0.0ms) SAVEPOINT active_record_2
53773
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e741951329a50556a55d86cf1544dfcd"], ["content", "4b48847754f6b8205a2a66ba83ea3b27"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53774
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53775
+  (0.0ms) SAVEPOINT active_record_2
53776
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e44d043f28fff38a95dceba07a4f7321"], ["content", "b344b1671fcc064bb90759b06f6e65be"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53777
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53778
+  (0.0ms) SAVEPOINT active_record_2
53779
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "aab65a29f52d337ce695decbd41daeed"], ["content", "72c2c98f6fe751286522b97286341d15"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53780
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53781
+  (0.0ms) SAVEPOINT active_record_2
53782
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "34946744bd056b31f5e194ba44d2e308"], ["content", "22c8bfce4874e28f0bb87124e2aad7ec"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53783
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53784
+  (0.0ms) SAVEPOINT active_record_2
53785
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "3c06220b0e680dc8d3113e40d640abce"], ["content", "01a47e2d879674930fc568417e728e6b"], ["age", 2], ["created_at", 2017-02-16 17:53:32 UTC], ["updated_at", 2017-02-16 17:53:32 UTC]]
53786
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53787
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53788
+  (0.1ms) rollback transaction
53789
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53790
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
53791
+  (0.1ms) begin transaction
53792
+  (0.1ms) commit transaction
53793
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53794
+  (0.1ms) begin transaction
53795
+ -------------------------------
53796
+ ActiveModelObjectTest: test_csv
53797
+ -------------------------------
53798
+  (0.0ms) SAVEPOINT active_record_1
53799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53800
+  (0.0ms) SAVEPOINT active_record_1
53801
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53802
+  (0.0ms) rollback transaction
53803
+  (0.0ms) begin transaction
53804
+ --------------------------------
53805
+ ActiveModelObjectTest: test_xlsx
53806
+ --------------------------------
53807
+  (0.0ms) SAVEPOINT active_record_1
53808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53809
+  (0.0ms) SAVEPOINT active_record_1
53810
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53811
+  (0.0ms) rollback transaction
53812
+  (0.0ms) begin transaction
53813
+ -------------------------------
53814
+ ActiveModelObjectTest: test_ods
53815
+ -------------------------------
53816
+  (0.0ms) SAVEPOINT active_record_1
53817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53818
+  (0.0ms) SAVEPOINT active_record_1
53819
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
53820
+  (0.0ms) rollback transaction
53821
+  (0.0ms) begin transaction
53822
+ -------------------------
53823
+ OdsTest: test_empty_model
53824
+ -------------------------
53825
+  (0.0ms) SAVEPOINT active_record_1
53826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53827
+  (0.0ms) SAVEPOINT active_record_1
53828
+  (0.1ms) SAVEPOINT active_record_2
53829
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "883ad632ee7e7fc1b3ea97a7c84a2734"], ["content", "ed25cad3a83f85a42d2edeebdc5a2596"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53830
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53831
+  (0.0ms) SAVEPOINT active_record_2
53832
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "51b5891ef7d6900a3ef8d8f005c324c5"], ["content", "b5f3b4d7ae86ce538d53615822304436"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53833
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53834
+  (0.0ms) SAVEPOINT active_record_2
53835
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c53857e2a45540a2e4820b03cfc48b9b"], ["content", "fca4d9b93bc0a57d50ddfbcd11686220"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53836
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53837
+  (0.0ms) SAVEPOINT active_record_2
53838
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "f476544efff31c735538a66ff70d5b59"], ["content", "2e9b3c9d4148b222fe22b0e7c3e81fc3"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53839
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53840
+  (0.0ms) SAVEPOINT active_record_2
53841
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5a4b3d845828391b42f884c7908d9eb0"], ["content", "de3bffe8af9270025fd3e198e5a5059b"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53842
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53843
+  (0.0ms) SAVEPOINT active_record_2
53844
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "eec7776f3e81b59d8ff5dece6982f448"], ["content", "edc0724f829dd55e20d4fd9da7298ff9"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53845
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53846
+  (0.0ms) SAVEPOINT active_record_2
53847
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bf22a18b66c76b9d4bb02b0e389558af"], ["content", "e674191829f2115b9bbcdd4dbfd261ce"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53848
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53849
+  (0.0ms) SAVEPOINT active_record_2
53850
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "450eea79afc90f8d9ca32c7ff955288c"], ["content", "ffbebd6dddb365058d266233842dfa59"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53851
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53852
+  (0.0ms) SAVEPOINT active_record_2
53853
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8b90554b3502d57288c1458d04d5888b"], ["content", "6ed047cc46e4ada359574626460d69c6"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53854
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53855
+  (0.1ms) SAVEPOINT active_record_2
53856
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4d749096066c0c21c72b39bb6e0e35b6"], ["content", "9e4ecd419473603630ee25d063ede378"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53857
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53858
+ SQL (0.0ms) DELETE FROM "posts"
53859
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53860
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53861
+  (0.1ms) rollback transaction
53862
+  (0.0ms) begin transaction
53863
+ ----------------------
53864
+ OdsTest: test_empty_sa
53865
+ ----------------------
53866
+  (0.0ms) SAVEPOINT active_record_1
53867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53868
+  (0.0ms) SAVEPOINT active_record_1
53869
+  (0.1ms) SAVEPOINT active_record_2
53870
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "11414e8039d76eb03c287ca942038365"], ["content", "68505d2ebba77a919364bd6ec3e155a8"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53871
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53872
+  (0.0ms) SAVEPOINT active_record_2
53873
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "87ab12d7157e7fecf7e6ece9e9dbf261"], ["content", "1e08f85d8a07df5dffe82590a5c70c4b"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53874
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53875
+  (0.0ms) SAVEPOINT active_record_2
53876
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bdf40cb00ff8b98d6ba2b5b2d0d74456"], ["content", "9652a6882837ada00a87a906c31a7121"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53877
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53878
+  (0.0ms) SAVEPOINT active_record_2
53879
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "efea8fdd5da228c3235a9343b9dd5e3f"], ["content", "de2aba8f84f5b77f6a194aa879c83c4d"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53880
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53881
+  (0.0ms) SAVEPOINT active_record_2
53882
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4b51f411bdd9b09c296317b9304608cf"], ["content", "5dfc87388af801f84abdf60fa4dc161c"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53883
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53884
+  (0.0ms) SAVEPOINT active_record_2
53885
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "249168dd60691b7beac6eabe25efdd3a"], ["content", "cd1940a5506c83c913e166f0e9b82443"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53886
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53887
+  (0.0ms) SAVEPOINT active_record_2
53888
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b27b2d4c845644a0334294edf55bc415"], ["content", "f42c3f5fac53b07c5783cfc5352fbeaa"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53889
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53890
+  (0.0ms) SAVEPOINT active_record_2
53891
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "140f0b3305732786e0522d63303086c7"], ["content", "03afeff04f08657dc1a5b2ed88dbad07"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53892
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53893
+  (0.1ms) SAVEPOINT active_record_2
53894
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4889d869e83fd57047bb9a9d8f9f994f"], ["content", "30def354ab9a109a410615d60941d5d0"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53895
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53896
+  (0.0ms) SAVEPOINT active_record_2
53897
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a27280be5d10b7d0aa7c422e22261705"], ["content", "ff6b4d09d61d423356a2dccf8224aa1f"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53898
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53899
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53900
+  (0.1ms) rollback transaction
53901
+  (0.0ms) begin transaction
53902
+ -------------------
53903
+ OdsTest: test_model
53904
+ -------------------
53905
+  (0.0ms) SAVEPOINT active_record_1
53906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53907
+  (0.0ms) SAVEPOINT active_record_1
53908
+  (0.0ms) SAVEPOINT active_record_2
53909
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "74ee60b566a862a660d579ec806135ad"], ["content", "b36a55163d44e25de7bebeabdba2fb1d"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53910
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53911
+  (0.0ms) SAVEPOINT active_record_2
53912
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b589cdf051c99ce5af1ad2a806925928"], ["content", "fbba870bafbc0fcc1e2e6f60fe995a06"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53913
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53914
+  (0.0ms) SAVEPOINT active_record_2
53915
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "827c0a4c391bdfb1de8109c48020766b"], ["content", "bbed4a81c13d44b4e3d65b755b187bec"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53916
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53917
+  (0.0ms) SAVEPOINT active_record_2
53918
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "332ff1e9cf67b3eb8572363caa6d3f45"], ["content", "eb3a1de24eb2e016d11175c323cf4b90"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53919
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53920
+  (0.0ms) SAVEPOINT active_record_2
53921
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "25f123111877f38abb1cc3f6d0cc2b40"], ["content", "8cb9fc0a4cec6cfe562171180e51e38d"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53922
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53923
+  (0.0ms) SAVEPOINT active_record_2
53924
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b4ed60e4aaec2d676f7f4e0c44b5276b"], ["content", "61c01d9da3b2d755cecd049a93e88534"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53925
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53926
+  (0.0ms) SAVEPOINT active_record_2
53927
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "df5e0729ca76e56a92c839471abcb47f"], ["content", "5e469da4d88b845195b85d5493b3daba"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53928
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53929
+  (0.0ms) SAVEPOINT active_record_2
53930
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "f1c68111b471ef319ed661cc834338cb"], ["content", "d4758d91615f08dfde69c0c48a09ef71"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53931
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53932
+  (0.0ms) SAVEPOINT active_record_2
53933
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9bfba48b1e35563bffcb940f6c27a3f2"], ["content", "c51e48b4e18c6b00c7565c7d0eef1ae4"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53934
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53935
+  (0.1ms) SAVEPOINT active_record_2
53936
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7bed4b527c19325bec60f74badfe123d"], ["content", "eb2a30f1fa9cf663e60e1b270c1ca084"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53937
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53938
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53939
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53940
+  (0.1ms) rollback transaction
53941
+  (0.0ms) begin transaction
53942
+ ---------------------
53943
+ OdsTest: test_options
53944
+ ---------------------
53945
+  (0.0ms) SAVEPOINT active_record_1
53946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53947
+  (0.0ms) SAVEPOINT active_record_1
53948
+  (0.0ms) SAVEPOINT active_record_2
53949
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c5bb0fa27ad02fdf4496fcd42cea54d5"], ["content", "28844f0971dd42de31fee28c3120ba96"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53950
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53951
+  (0.0ms) SAVEPOINT active_record_2
53952
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9323dc6c65b809f3173b63d2d1a6c34a"], ["content", "b9b68e160c3d75a6e81c05c8dea20a7a"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53953
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53954
+  (0.1ms) SAVEPOINT active_record_2
53955
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0440c45ac8aac631e7b4f88034ffe7be"], ["content", "99b33b2345b4d094511d69fb9743e005"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53956
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53957
+  (0.0ms) SAVEPOINT active_record_2
53958
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "46aa674f68229ba77755441c8617ec02"], ["content", "291ecc98c6712ad5c808eb2f31c87932"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53959
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53960
+  (0.0ms) SAVEPOINT active_record_2
53961
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d054a8fd50f4d3993ad648f6b94ff5fc"], ["content", "c9072b52406e850b149fab950eff1ec1"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53962
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53963
+  (0.1ms) SAVEPOINT active_record_2
53964
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0b0e50029e3513ed247b7c8b397261eb"], ["content", "e1234b6508e1d18a207d49fbe9893235"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53965
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53966
+  (0.0ms) SAVEPOINT active_record_2
53967
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8c5a6c9a6155d6b3744846feed57da00"], ["content", "787c03ad989ec95aa559acbdedd3b8e1"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53968
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53969
+  (0.0ms) SAVEPOINT active_record_2
53970
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "90bbb940565a4f8c78d531830f8878fe"], ["content", "c9b5face5731eae0eaa143681c632468"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53971
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53972
+  (0.0ms) SAVEPOINT active_record_2
53973
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "dbd828a0c5e0d5ff844a30c3f6051f5d"], ["content", "796504016ae3e89bc662162cc18ff973"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53974
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53975
+  (0.0ms) SAVEPOINT active_record_2
53976
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "f4e397f64fe92028baf24c15584a3800"], ["content", "503a53b555259f20eb4c3b0597f34b90"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53977
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53978
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
53979
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
53980
+  (0.1ms) rollback transaction
53981
+  (0.0ms) begin transaction
53982
+ ----------------
53983
+ OdsTest: test_sa
53984
+ ----------------
53985
+  (0.0ms) SAVEPOINT active_record_1
53986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53987
+  (0.0ms) SAVEPOINT active_record_1
53988
+  (0.0ms) SAVEPOINT active_record_2
53989
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c0032b95cdf6b86d1bb936c1d2b73342"], ["content", "7f62a9f341ce9f73ba789c2362d5cd15"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53990
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53991
+  (0.0ms) SAVEPOINT active_record_2
53992
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "90757fc754699d1f0d577f853127bb12"], ["content", "26998b7cbd2edd866b6b9c07a3f174ec"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53993
+  (0.0ms) RELEASE SAVEPOINT active_record_2
53994
+  (0.0ms) SAVEPOINT active_record_2
53995
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d393bcd52ff7eafd2a0687171ea9755e"], ["content", "792b2b95320fce11acb68099c5936555"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53996
+  (0.1ms) RELEASE SAVEPOINT active_record_2
53997
+  (0.0ms) SAVEPOINT active_record_2
53998
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cbc272313c235199ea4eb1e8743a986e"], ["content", "00c9218d86b3ae8c769b37f1d3f797c1"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
53999
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54000
+  (0.0ms) SAVEPOINT active_record_2
54001
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "53992cada670e4f90defdf15ce284574"], ["content", "e9dba72cab38b152066784b973cf211d"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54002
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54003
+  (0.0ms) SAVEPOINT active_record_2
54004
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ec03a7ff3b4b3468a17d037fbe133a6d"], ["content", "47ee8169e69b5950f2914cfa6df70488"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54005
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54006
+  (0.0ms) SAVEPOINT active_record_2
54007
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "21eca9d5a0e6dc5a8218cbaa52dce9f3"], ["content", "836de678fe87d8a06c7909d8a51debf4"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54008
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54009
+  (0.0ms) SAVEPOINT active_record_2
54010
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ac7e4b66baa0f39bdfd3fa90c8d9b30f"], ["content", "84b3fd08ab89898404e034f96fcc3bd2"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54011
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54012
+  (0.0ms) SAVEPOINT active_record_2
54013
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6b5c130e8c1a0b9d86cdf01734b16dc8"], ["content", "27548d84bec128fcbb49975a9b46f8b4"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54014
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54015
+  (0.0ms) SAVEPOINT active_record_2
54016
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e8407bcb5f38e6949ac4afaaf73d5fbd"], ["content", "cbd43ddeae410de803270fc2720b810d"], ["age", 2], ["created_at", 2017-02-16 17:55:27 UTC], ["updated_at", 2017-02-16 17:55:27 UTC]]
54017
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54018
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54019
+  (0.1ms) rollback transaction
54020
+  (0.0ms) begin transaction
54021
+ ------------------------------------
54022
+ SpreadsheetsControllerTest: test_csv
54023
+ ------------------------------------
54024
+  (0.0ms) SAVEPOINT active_record_1
54025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54026
+  (0.0ms) SAVEPOINT active_record_1
54027
+ Processing by SpreadsheetsController#csv as HTML
54028
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54029
+ Rendering text template
54030
+ Rendered text template (0.0ms)
54031
+ Sent data data.csv (3.6ms)
54032
+ Completed 200 OK in 7ms (Views: 3.7ms | ActiveRecord: 0.1ms)
54033
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54034
+  (0.1ms) rollback transaction
54035
+  (0.0ms) begin transaction
54036
+ -------------------------------------
54037
+ SpreadsheetsControllerTest: test_xlsx
54038
+ -------------------------------------
54039
+  (0.0ms) SAVEPOINT active_record_1
54040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54041
+  (0.0ms) SAVEPOINT active_record_1
54042
+ Processing by SpreadsheetsController#xlsx as HTML
54043
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54044
+ Rendering text template
54045
+ Rendered text template (0.0ms)
54046
+ Sent data Posts.xlsx (0.5ms)
54047
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.1ms)
54048
+ Processing by SpreadsheetsController#alt_xlsx as XLSX
54049
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54050
+ Rendering text template
54051
+ Rendered text template (0.0ms)
54052
+ Sent data Posts.xlsx (0.4ms)
54053
+ Completed 200 OK in 10ms (Views: 7.1ms | ActiveRecord: 0.1ms)
54054
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54055
+  (0.0ms) rollback transaction
54056
+  (0.0ms) begin transaction
54057
+ ------------------------------------
54058
+ SpreadsheetsControllerTest: test_ods
54059
+ ------------------------------------
54060
+  (0.0ms) SAVEPOINT active_record_1
54061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54062
+  (0.0ms) SAVEPOINT active_record_1
54063
+ Processing by SpreadsheetsController#ods as HTML
54064
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54065
+ Rendering text template
54066
+ Rendered text template (0.0ms)
54067
+ Sent data data.ods (0.3ms)
54068
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.1ms)
54069
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54070
+  (0.0ms) rollback transaction
54071
+  (0.0ms) begin transaction
54072
+ -----------------------
54073
+ XlsxTest: test_empty_sa
54074
+ -----------------------
54075
+  (0.1ms) rollback transaction
54076
+  (0.0ms) begin transaction
54077
+ --------------------
54078
+ XlsxTest: test_model
54079
+ --------------------
54080
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54081
+  (0.1ms) rollback transaction
54082
+  (0.0ms) begin transaction
54083
+ -----------------
54084
+ XlsxTest: test_sa
54085
+ -----------------
54086
+  (0.1ms) rollback transaction
54087
+  (0.1ms) begin transaction
54088
+ ----------------------
54089
+ XlsxTest: test_extreme
54090
+ ----------------------
54091
+  (0.1ms) rollback transaction
54092
+  (0.0ms) begin transaction
54093
+ --------------------------
54094
+ XlsxTest: test_empty_model
54095
+ --------------------------
54096
+ SQL (0.1ms) DELETE FROM "posts"
54097
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54098
+  (0.1ms) rollback transaction
54099
+  (0.0ms) begin transaction
54100
+ ------------------------------
54101
+ PlainRubyObjectTest: test_xlsx
54102
+ ------------------------------
54103
+  (0.0ms) SAVEPOINT active_record_1
54104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54105
+  (0.0ms) SAVEPOINT active_record_1
54106
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54107
+  (0.0ms) rollback transaction
54108
+  (0.0ms) begin transaction
54109
+ -----------------------------
54110
+ PlainRubyObjectTest: test_csv
54111
+ -----------------------------
54112
+  (0.0ms) SAVEPOINT active_record_1
54113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54114
+  (0.0ms) SAVEPOINT active_record_1
54115
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54116
+  (0.0ms) rollback transaction
54117
+  (0.0ms) begin transaction
54118
+ -----------------------------
54119
+ PlainRubyObjectTest: test_ods
54120
+ -----------------------------
54121
+  (0.0ms) SAVEPOINT active_record_1
54122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54123
+  (0.0ms) SAVEPOINT active_record_1
54124
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54125
+  (0.0ms) rollback transaction
54126
+  (0.1ms) begin transaction
54127
+ ------------------------
54128
+ CustomPostTest: test_csv
54129
+ ------------------------
54130
+  (0.0ms) SAVEPOINT active_record_1
54131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54132
+  (0.0ms) SAVEPOINT active_record_1
54133
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54134
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54135
+  (0.0ms) rollback transaction
54136
+  (0.0ms) begin transaction
54137
+ ------------------------
54138
+ CustomPostTest: test_ods
54139
+ ------------------------
54140
+  (0.0ms) SAVEPOINT active_record_1
54141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54142
+  (0.0ms) SAVEPOINT active_record_1
54143
+ CustomPost Load (0.0ms) SELECT "posts".* FROM "posts"
54144
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54145
+  (0.0ms) rollback transaction
54146
+  (0.0ms) begin transaction
54147
+ -------------------------
54148
+ CustomPostTest: test_xlsx
54149
+ -------------------------
54150
+  (0.0ms) SAVEPOINT active_record_1
54151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54152
+  (0.0ms) SAVEPOINT active_record_1
54153
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54154
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54155
+  (0.0ms) rollback transaction
54156
+  (0.0ms) begin transaction
54157
+ --------------------------
54158
+ CustomPostTest: test_empty
54159
+ --------------------------
54160
+  (0.0ms) SAVEPOINT active_record_1
54161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54162
+  (0.0ms) SAVEPOINT active_record_1
54163
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54164
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54165
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54166
+  (0.0ms) rollback transaction
54167
+  (0.0ms) begin transaction
54168
+ ---------------------------------
54169
+ BadPlainRubyObjectTest: test_xlsx
54170
+ ---------------------------------
54171
+  (0.0ms) SAVEPOINT active_record_1
54172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54173
+  (0.0ms) SAVEPOINT active_record_1
54174
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54175
+  (0.0ms) rollback transaction
54176
+  (0.0ms) begin transaction
54177
+ --------------------------------
54178
+ BadPlainRubyObjectTest: test_csv
54179
+ --------------------------------
54180
+  (0.0ms) SAVEPOINT active_record_1
54181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54182
+  (0.0ms) SAVEPOINT active_record_1
54183
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54184
+  (0.0ms) rollback transaction
54185
+  (0.0ms) begin transaction
54186
+ --------------------------------
54187
+ BadPlainRubyObjectTest: test_ods
54188
+ --------------------------------
54189
+  (0.0ms) SAVEPOINT active_record_1
54190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54191
+  (0.0ms) SAVEPOINT active_record_1
54192
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54193
+  (0.0ms) rollback transaction
54194
+  (0.0ms) begin transaction
54195
+ --------------------------------------------
54196
+ SpreadsheetArchitectUtilsTest: test_get_type
54197
+ --------------------------------------------
54198
+  (0.0ms) rollback transaction
54199
+  (0.0ms) begin transaction
54200
+ ---------------------------------------------------------
54201
+ SpreadsheetArchitectUtilsTest: test_constants_dont_change
54202
+ ---------------------------------------------------------
54203
+  (0.1ms) rollback transaction
54204
+  (0.0ms) begin transaction
54205
+ -----------------------------------------------------------
54206
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
54207
+ -----------------------------------------------------------
54208
+  (0.0ms) rollback transaction
54209
+  (0.0ms) begin transaction
54210
+ ---------------------------------------------------------
54211
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
54212
+ ---------------------------------------------------------
54213
+  (0.0ms) rollback transaction
54214
+  (0.0ms) begin transaction
54215
+ -----------------------------------------------
54216
+ SpreadsheetArchitectUtilsTest: test_get_options
54217
+ -----------------------------------------------
54218
+  (0.0ms) rollback transaction
54219
+  (0.0ms) begin transaction
54220
+ ------------------------------------------------
54221
+ SpreadsheetArchitectUtilsTest: test_str_humanize
54222
+ ------------------------------------------------
54223
+  (0.0ms) rollback transaction
54224
+  (0.0ms) begin transaction
54225
+ -------------------------------------------------
54226
+ SpreadsheetArchitectUtilsTest: test_get_cell_data
54227
+ -------------------------------------------------
54228
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54229
+  (0.0ms) rollback transaction
54230
+  (0.1ms) begin transaction
54231
+ -------------------------
54232
+ CsvTest: test_empty_model
54233
+ -------------------------
54234
+ SQL (0.1ms) DELETE FROM "posts"
54235
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54236
+  (0.1ms) rollback transaction
54237
+  (0.0ms) begin transaction
54238
+ -------------------
54239
+ CsvTest: test_model
54240
+ -------------------
54241
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54242
+  (0.0ms) rollback transaction
54243
+  (0.0ms) begin transaction
54244
+ ----------------------
54245
+ CsvTest: test_empty_sa
54246
+ ----------------------
54247
+  (0.0ms) rollback transaction
54248
+  (0.0ms) begin transaction
54249
+ ---------------------
54250
+ CsvTest: test_options
54251
+ ---------------------
54252
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54253
+  (0.0ms) rollback transaction
54254
+  (0.1ms) begin transaction
54255
+ ----------------
54256
+ CsvTest: test_sa
54257
+ ----------------
54258
+  (0.0ms) rollback transaction
54259
+  (0.0ms) begin transaction
54260
+ ------------------
54261
+ PostTest: test_ods
54262
+ ------------------
54263
+  (0.0ms) SAVEPOINT active_record_1
54264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54265
+  (0.0ms) SAVEPOINT active_record_1
54266
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54267
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54268
+  (0.0ms) rollback transaction
54269
+  (0.0ms) begin transaction
54270
+ -------------------
54271
+ PostTest: test_xlsx
54272
+ -------------------
54273
+  (0.0ms) SAVEPOINT active_record_1
54274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54275
+  (0.0ms) SAVEPOINT active_record_1
54276
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54277
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54278
+  (0.0ms) rollback transaction
54279
+  (0.0ms) begin transaction
54280
+ ------------------
54281
+ PostTest: test_csv
54282
+ ------------------
54283
+  (0.0ms) SAVEPOINT active_record_1
54284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54285
+  (0.0ms) SAVEPOINT active_record_1
54286
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54287
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54288
+  (0.0ms) rollback transaction
54289
+  (0.1ms) begin transaction
54290
+ --------------------
54291
+ PostTest: test_empty
54292
+ --------------------
54293
+  (0.0ms) SAVEPOINT active_record_1
54294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54295
+  (0.0ms) SAVEPOINT active_record_1
54296
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54297
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
54298
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54299
+  (0.0ms) rollback transaction
54300
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
54301
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
54302
+  (0.1ms) begin transaction
54303
+  (0.1ms) commit transaction
54304
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54305
+  (0.1ms) begin transaction
54306
+ --------------------------
54307
+ CustomPostTest: test_empty
54308
+ --------------------------
54309
+  (0.1ms) SAVEPOINT active_record_1
54310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54311
+  (0.0ms) SAVEPOINT active_record_1
54312
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
54313
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54314
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54315
+  (0.1ms) rollback transaction
54316
+  (0.1ms) begin transaction
54317
+ ------------------------
54318
+ CustomPostTest: test_csv
54319
+ ------------------------
54320
+  (0.1ms) SAVEPOINT active_record_1
54321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54322
+  (0.0ms) SAVEPOINT active_record_1
54323
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54324
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54325
+  (0.1ms) rollback transaction
54326
+  (0.1ms) begin transaction
54327
+ -------------------------
54328
+ CustomPostTest: test_xlsx
54329
+ -------------------------
54330
+  (0.1ms) SAVEPOINT active_record_1
54331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54332
+  (0.0ms) SAVEPOINT active_record_1
54333
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54334
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54335
+  (0.1ms) rollback transaction
54336
+  (0.1ms) begin transaction
54337
+ ------------------------------------------
54338
+ CustomPostTest: test_constants_dont_change
54339
+ ------------------------------------------
54340
+  (0.1ms) SAVEPOINT active_record_1
54341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54342
+  (0.0ms) SAVEPOINT active_record_1
54343
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54344
+  (0.1ms) rollback transaction
54345
+  (0.1ms) begin transaction
54346
+ ------------------------
54347
+ CustomPostTest: test_ods
54348
+ ------------------------
54349
+  (0.1ms) SAVEPOINT active_record_1
54350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54351
+  (0.0ms) SAVEPOINT active_record_1
54352
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54353
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54354
+  (0.1ms) rollback transaction
54355
+  (0.1ms) begin transaction
54356
+ -------------------------
54357
+ CsvTest: test_empty_model
54358
+ -------------------------
54359
+ SQL (0.2ms) DELETE FROM "posts"
54360
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54361
+  (0.2ms) rollback transaction
54362
+  (0.1ms) begin transaction
54363
+ -------------------
54364
+ CsvTest: test_model
54365
+ -------------------
54366
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54367
+  (0.1ms) rollback transaction
54368
+  (0.1ms) begin transaction
54369
+ ---------------------
54370
+ CsvTest: test_options
54371
+ ---------------------
54372
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54373
+  (0.1ms) rollback transaction
54374
+  (0.1ms) begin transaction
54375
+ ----------------------
54376
+ CsvTest: test_empty_sa
54377
+ ----------------------
54378
+  (0.1ms) rollback transaction
54379
+  (0.1ms) begin transaction
54380
+ ----------------
54381
+ CsvTest: test_sa
54382
+ ----------------
54383
+  (0.1ms) rollback transaction
54384
+  (0.1ms) begin transaction
54385
+ -----------------------
54386
+ XlsxTest: test_empty_sa
54387
+ -----------------------
54388
+  (0.1ms) rollback transaction
54389
+  (0.1ms) begin transaction
54390
+ -----------------
54391
+ XlsxTest: test_sa
54392
+ -----------------
54393
+  (0.1ms) rollback transaction
54394
+  (0.1ms) begin transaction
54395
+ ----------------------
54396
+ XlsxTest: test_extreme
54397
+ ----------------------
54398
+  (0.1ms) rollback transaction
54399
+  (0.1ms) begin transaction
54400
+ --------------------------
54401
+ XlsxTest: test_empty_model
54402
+ --------------------------
54403
+ SQL (0.2ms) DELETE FROM "posts"
54404
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54405
+  (0.2ms) rollback transaction
54406
+  (0.1ms) begin transaction
54407
+ --------------------
54408
+ XlsxTest: test_model
54409
+ --------------------
54410
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54411
+  (0.1ms) rollback transaction
54412
+  (0.1ms) begin transaction
54413
+ ------------------------------------
54414
+ SpreadsheetsControllerTest: test_csv
54415
+ ------------------------------------
54416
+  (0.1ms) SAVEPOINT active_record_1
54417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54418
+  (0.0ms) SAVEPOINT active_record_1
54419
+ Processing by SpreadsheetsController#csv as HTML
54420
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54421
+ Rendering text template
54422
+ Rendered text template (0.0ms)
54423
+ Sent data data.csv (7.2ms)
54424
+ Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.1ms)
54425
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54426
+  (0.1ms) rollback transaction
54427
+  (0.1ms) begin transaction
54428
+ -------------------------------------
54429
+ SpreadsheetsControllerTest: test_xlsx
54430
+ -------------------------------------
54431
+  (0.1ms) SAVEPOINT active_record_1
54432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54433
+  (0.1ms) SAVEPOINT active_record_1
54434
+ Processing by SpreadsheetsController#xlsx as HTML
54435
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54436
+ Rendering text template
54437
+ Rendered text template (0.0ms)
54438
+ Sent data Posts.xlsx (1.1ms)
54439
+ Completed 200 OK in 16ms (Views: 1.3ms | ActiveRecord: 0.1ms)
54440
+ Processing by SpreadsheetsController#alt_xlsx as XLSX
54441
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54442
+ Rendering text template
54443
+ Rendered text template (0.0ms)
54444
+ Sent data Posts.xlsx (0.5ms)
54445
+ Completed 200 OK in 19ms (Views: 14.2ms | ActiveRecord: 0.2ms)
54446
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54447
+  (0.1ms) rollback transaction
54448
+  (0.1ms) begin transaction
54449
+ ------------------------------------
54450
+ SpreadsheetsControllerTest: test_ods
54451
+ ------------------------------------
54452
+  (0.1ms) SAVEPOINT active_record_1
54453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54454
+  (0.1ms) SAVEPOINT active_record_1
54455
+ Processing by SpreadsheetsController#ods as HTML
54456
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54457
+ Rendering text template
54458
+ Rendered text template (0.0ms)
54459
+ Sent data data.ods (0.5ms)
54460
+ Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.1ms)
54461
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54462
+  (0.1ms) rollback transaction
54463
+  (0.1ms) begin transaction
54464
+ --------------------
54465
+ PostTest: test_empty
54466
+ --------------------
54467
+  (0.1ms) SAVEPOINT active_record_1
54468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54469
+  (0.0ms) SAVEPOINT active_record_1
54470
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54471
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54472
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54473
+  (0.1ms) rollback transaction
54474
+  (0.1ms) begin transaction
54475
+ -------------------
54476
+ PostTest: test_xlsx
54477
+ -------------------
54478
+  (0.1ms) SAVEPOINT active_record_1
54479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54480
+  (0.0ms) SAVEPOINT active_record_1
54481
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54482
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54483
+  (0.1ms) rollback transaction
54484
+  (0.1ms) begin transaction
54485
+ ------------------
54486
+ PostTest: test_csv
54487
+ ------------------
54488
+  (0.1ms) SAVEPOINT active_record_1
54489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54490
+  (0.0ms) SAVEPOINT active_record_1
54491
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54492
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54493
+  (0.0ms) rollback transaction
54494
+  (0.1ms) begin transaction
54495
+ ------------------
54496
+ PostTest: test_ods
54497
+ ------------------
54498
+  (0.1ms) SAVEPOINT active_record_1
54499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54500
+  (0.1ms) SAVEPOINT active_record_1
54501
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54502
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54503
+  (0.1ms) rollback transaction
54504
+  (0.1ms) begin transaction
54505
+ ----------------
54506
+ OdsTest: test_sa
54507
+ ----------------
54508
+  (0.0ms) SAVEPOINT active_record_1
54509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54510
+  (0.0ms) SAVEPOINT active_record_1
54511
+  (0.1ms) SAVEPOINT active_record_2
54512
+ SQL (0.3ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9cc56adb0a5681731e6c707711fece5a"], ["content", "9795a67b277862a68574f667ac7ff044"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54513
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54514
+  (0.1ms) SAVEPOINT active_record_2
54515
+ SQL (0.3ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "560a5d74597e855e03ef896416940d8e"], ["content", "01997e42c20905440db877e38b6a49d9"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54516
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54517
+  (0.1ms) SAVEPOINT active_record_2
54518
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "243f97193e19ff3f832f5b21bf0fc87e"], ["content", "4fb6e233a7eb6e0a1da903b2786b7f65"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54519
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54520
+  (0.1ms) SAVEPOINT active_record_2
54521
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "758c5db00021d183da383e5876d5cac7"], ["content", "4be76669206a73d9d3dfa8e7435b114e"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54522
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54523
+  (0.1ms) SAVEPOINT active_record_2
54524
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "254a7675436fddbf8983a05946f4f6dd"], ["content", "77b32c5ccce4a39b33edfaad3485dffb"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54525
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54526
+  (0.1ms) SAVEPOINT active_record_2
54527
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "50729853e3f6aa7cf0f61a4d7dc4974e"], ["content", "aa03eec554b7b5c8d1eb5caa6bda4881"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54528
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54529
+  (0.1ms) SAVEPOINT active_record_2
54530
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "791d53403227860b2c1be7f024d35d28"], ["content", "6ffc8c6509a2a0e11a3073693907c2ac"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54531
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54532
+  (0.1ms) SAVEPOINT active_record_2
54533
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2dbc6d6d50e7274ac10fec71126020b5"], ["content", "1841f62451b3d4b5dca4a16b9bcbcec9"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54534
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54535
+  (0.1ms) SAVEPOINT active_record_2
54536
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5c791550706a016668f735b747be1f0a"], ["content", "8ebfe9f0933f4c652c7b6c661ea4b09d"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54537
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54538
+  (0.1ms) SAVEPOINT active_record_2
54539
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b6e5929c4e2aba3bb95abc9771070a5e"], ["content", "0ae073769c319f386c1b221efe7a0750"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54540
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54541
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54542
+  (0.2ms) rollback transaction
54543
+  (0.1ms) begin transaction
54544
+ -------------------
54545
+ OdsTest: test_model
54546
+ -------------------
54547
+  (0.0ms) SAVEPOINT active_record_1
54548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54549
+  (0.0ms) SAVEPOINT active_record_1
54550
+  (0.1ms) SAVEPOINT active_record_2
54551
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5442f777d7ca90abc063061c511069f9"], ["content", "aac5347a5b551c6a94713abf432b92f9"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54552
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54553
+  (0.1ms) SAVEPOINT active_record_2
54554
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "15e6658fb9932779c26513172c52ed1e"], ["content", "19c12adfb8e73710050bf253338f2010"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54555
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54556
+  (0.1ms) SAVEPOINT active_record_2
54557
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7ac0bb4d0c064d1716ddafb1636b43d8"], ["content", "fcac0edd94d60972eeedb7dd75212c1f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54558
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54559
+  (0.1ms) SAVEPOINT active_record_2
54560
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8e04ed96f6428accb0bfd45fe02c4553"], ["content", "ed30d6154bea33a5a5b754fd51202739"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54561
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54562
+  (0.1ms) SAVEPOINT active_record_2
54563
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c4a8f3bdee01aef0f08c96dac8bdd685"], ["content", "4ca46483800973a54c9890e0cd6bfa8c"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54564
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54565
+  (0.1ms) SAVEPOINT active_record_2
54566
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "1653b372ade07dfc2d8a53235d659bb4"], ["content", "75dcd995ea654e93415ab5c48a982b0f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54567
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54568
+  (0.1ms) SAVEPOINT active_record_2
54569
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8563e5ea3b1fab34c7b36d80bba9962b"], ["content", "f06ccfdbee31d5c4bae683bb540b9c8b"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54570
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54571
+  (0.1ms) SAVEPOINT active_record_2
54572
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8d6c4eb8656c3b8e3e525923364cb99f"], ["content", "154ee60848a836388f4bb0b167167783"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54573
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54574
+  (0.1ms) SAVEPOINT active_record_2
54575
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2540091ee64009f1bdcd65a739d6b533"], ["content", "259620b8b758f5539120f80c67b5b565"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54576
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54577
+  (0.1ms) SAVEPOINT active_record_2
54578
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "66e55b6eb493193b2ddc60c93b884488"], ["content", "63aa871b61cde43be0c58e7d78bed48b"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54579
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54580
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54581
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54582
+  (0.2ms) rollback transaction
54583
+  (0.1ms) begin transaction
54584
+ ---------------------
54585
+ OdsTest: test_options
54586
+ ---------------------
54587
+  (0.0ms) SAVEPOINT active_record_1
54588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54589
+  (0.0ms) SAVEPOINT active_record_1
54590
+  (0.1ms) SAVEPOINT active_record_2
54591
+ SQL (0.3ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "aa5fba81f2c7d0864d61f4730fe4b246"], ["content", "423fa5e2ee73927248b38aff63db7d77"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54592
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54593
+  (0.1ms) SAVEPOINT active_record_2
54594
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9a61479888417e194d8c89a0a67dd38b"], ["content", "20247d5fa42eb1aed7f3fa4a0f210c98"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54595
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54596
+  (0.1ms) SAVEPOINT active_record_2
54597
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "627230a1c2ec118f4ba4d62c450552b7"], ["content", "a7a3430310993aa205fcbc0208932af4"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54598
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54599
+  (0.1ms) SAVEPOINT active_record_2
54600
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "487dba0993f32bbb2c1d15b8038093d4"], ["content", "992a58b849fce0d38327f1a59ded20c7"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54601
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54602
+  (0.1ms) SAVEPOINT active_record_2
54603
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a0befe168f08f0644099c297d7d2ac24"], ["content", "b4e7bc1abf85eeeaf2ddf05c62b60672"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54604
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54605
+  (0.1ms) SAVEPOINT active_record_2
54606
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "561073996438965d5e5059d28cc124e2"], ["content", "f0c0e5e2ddd1908151ec50e91f2fc36b"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54607
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54608
+  (0.1ms) SAVEPOINT active_record_2
54609
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "33576a378732de057c3f9b555e06aed4"], ["content", "f51d42d1d8e40b74f517cd3b36581aab"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54610
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54611
+  (0.1ms) SAVEPOINT active_record_2
54612
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0725b6f69e856a8391ef055ede8edbef"], ["content", "9cddef64e0624f827886f641344c9c9d"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54613
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54614
+  (0.1ms) SAVEPOINT active_record_2
54615
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9f39e9690e283c68d226fbb2e590c308"], ["content", "552c4213b90b825df11043b06130b261"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54616
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54617
+  (0.1ms) SAVEPOINT active_record_2
54618
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a6bb03cdfdc4383adaa935544b06a961"], ["content", "387732c82fc694383e9096c95a0ceb22"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54619
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54620
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54621
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54622
+  (0.2ms) rollback transaction
54623
+  (0.1ms) begin transaction
54624
+ -------------------------
54625
+ OdsTest: test_empty_model
54626
+ -------------------------
54627
+  (0.1ms) SAVEPOINT active_record_1
54628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54629
+  (0.0ms) SAVEPOINT active_record_1
54630
+  (0.1ms) SAVEPOINT active_record_2
54631
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a15c3843612cc74ecd464f9508a3875a"], ["content", "6471192b8be66f7de6dfe2544687430f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54632
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54633
+  (0.1ms) SAVEPOINT active_record_2
54634
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7d6978700f9695d5af067dccaf0f3074"], ["content", "0c0f5af69b096bca467a79688d2ec0cf"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54635
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54636
+  (0.1ms) SAVEPOINT active_record_2
54637
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "039c07973a7d0d1acd6ab9269a7405c7"], ["content", "39a896e4bf116b94b37887f4695f304f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54638
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54639
+  (0.1ms) SAVEPOINT active_record_2
54640
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5bc157ec029513f20eddb5567d88bb90"], ["content", "933d4a992e44bd45a8be3e08a888ee50"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54641
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54642
+  (0.1ms) SAVEPOINT active_record_2
54643
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e95f9e618ebb6f920429cb745251729b"], ["content", "7b4446aa54923ad3dbe2a8ad4c317b4f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54644
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54645
+  (0.1ms) SAVEPOINT active_record_2
54646
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "55ff7ffc2c5b227a97b714f012938cd5"], ["content", "1c82cd4eed01606b5899e86abd73ee2a"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54647
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54648
+  (0.1ms) SAVEPOINT active_record_2
54649
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "69ccb8df7d06638809f095605702955f"], ["content", "b8834c522425836b8029b28c85aa34c9"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54650
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54651
+  (0.1ms) SAVEPOINT active_record_2
54652
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "4afa516ae7d991a912fb9a8d76f114dc"], ["content", "441d21de7a5acb22a8cb2ee430cb1fc8"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54653
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54654
+  (0.1ms) SAVEPOINT active_record_2
54655
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8df93c6ffc2b8a2efd3891af803f1c9e"], ["content", "a49315b4724aaab29505206e932c7114"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54656
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54657
+  (0.1ms) SAVEPOINT active_record_2
54658
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a56f40b2423eb3438a4e19bde7fedf1f"], ["content", "87b7d68b2b230d030de1fd4cb394bd4f"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54659
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54660
+ SQL (0.1ms) DELETE FROM "posts"
54661
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54662
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54663
+  (0.2ms) rollback transaction
54664
+  (0.1ms) begin transaction
54665
+ ----------------------
54666
+ OdsTest: test_empty_sa
54667
+ ----------------------
54668
+  (0.1ms) SAVEPOINT active_record_1
54669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54670
+  (0.0ms) SAVEPOINT active_record_1
54671
+  (0.1ms) SAVEPOINT active_record_2
54672
+ SQL (0.3ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8eef1f28c3783cc787d6c501c6e0a246"], ["content", "18934f2c108eb8de634d467198e5bdd5"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54673
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54674
+  (0.1ms) SAVEPOINT active_record_2
54675
+ SQL (0.3ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a05772cafe1f6769e2490d7eb8cd16d8"], ["content", "f1b8b943ab80c4f823e55f88829b8387"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54676
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54677
+  (0.1ms) SAVEPOINT active_record_2
54678
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5b22a7926582ce70e7a765cac799c8fb"], ["content", "68a1934984f6a18ebb570d84fe94ab33"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54679
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54680
+  (0.1ms) SAVEPOINT active_record_2
54681
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "47e7e2a0c3068c98c02fc3a74d8ded7a"], ["content", "8aa756bad50b1e561afa8adc76354c0e"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54682
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54683
+  (0.1ms) SAVEPOINT active_record_2
54684
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "f89a1406e03a44403c15c8e9f2a4d0f8"], ["content", "412037b81fdf952000a5ba6a4a16ad50"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54685
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54686
+  (0.1ms) SAVEPOINT active_record_2
54687
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5bbf6a251f26b13102bf5709f71d602d"], ["content", "9ceddfbd1a21ddea72308d369fae6bb5"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54688
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54689
+  (0.1ms) SAVEPOINT active_record_2
54690
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "acd345f3eb3e36a6bafb2f3fce944e0d"], ["content", "339c014a76bac6cee2d785823bda79c4"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54691
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54692
+  (0.1ms) SAVEPOINT active_record_2
54693
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "874a41b4346ab3ae5684ae9849a48979"], ["content", "5981cd913bd056ddeb1e58d2be2ebe58"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54694
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54695
+  (0.1ms) SAVEPOINT active_record_2
54696
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "77055d88723a0677fd2da9d9143bcbd1"], ["content", "2c7417597d7bdb446ea7808a458ba965"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54697
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54698
+  (0.1ms) SAVEPOINT active_record_2
54699
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "5cada816aa500b6171436fad5656ed8c"], ["content", "38e1972edf5caa78c511195ccd604485"], ["age", 2], ["created_at", 2017-02-16 17:58:37 UTC], ["updated_at", 2017-02-16 17:58:37 UTC]]
54700
+  (0.1ms) RELEASE SAVEPOINT active_record_2
54701
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
54702
+  (0.2ms) rollback transaction
54703
+  (0.1ms) begin transaction
54704
+ --------------------------------
54705
+ BadPlainRubyObjectTest: test_csv
54706
+ --------------------------------
54707
+  (0.0ms) SAVEPOINT active_record_1
54708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54709
+  (0.0ms) SAVEPOINT active_record_1
54710
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54711
+  (0.1ms) rollback transaction
54712
+  (0.1ms) begin transaction
54713
+ --------------------------------
54714
+ BadPlainRubyObjectTest: test_ods
54715
+ --------------------------------
54716
+  (0.1ms) SAVEPOINT active_record_1
54717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54718
+  (0.0ms) SAVEPOINT active_record_1
54719
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54720
+  (0.0ms) rollback transaction
54721
+  (0.1ms) begin transaction
54722
+ ---------------------------------
54723
+ BadPlainRubyObjectTest: test_xlsx
54724
+ ---------------------------------
54725
+  (0.1ms) SAVEPOINT active_record_1
54726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54727
+  (0.1ms) SAVEPOINT active_record_1
54728
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54729
+  (0.0ms) rollback transaction
54730
+  (0.1ms) begin transaction
54731
+ -----------------------------
54732
+ PlainRubyObjectTest: test_csv
54733
+ -----------------------------
54734
+  (0.1ms) SAVEPOINT active_record_1
54735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54736
+  (0.0ms) SAVEPOINT active_record_1
54737
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54738
+  (0.0ms) rollback transaction
54739
+  (0.1ms) begin transaction
54740
+ -----------------------------
54741
+ PlainRubyObjectTest: test_ods
54742
+ -----------------------------
54743
+  (0.1ms) SAVEPOINT active_record_1
54744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54745
+  (0.0ms) SAVEPOINT active_record_1
54746
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54747
+  (0.1ms) rollback transaction
54748
+  (0.1ms) begin transaction
54749
+ ------------------------------
54750
+ PlainRubyObjectTest: test_xlsx
54751
+ ------------------------------
54752
+  (0.1ms) SAVEPOINT active_record_1
54753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54754
+  (0.0ms) SAVEPOINT active_record_1
54755
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54756
+  (0.0ms) rollback transaction
54757
+  (0.1ms) begin transaction
54758
+ ---------------------------------------------------------
54759
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
54760
+ ---------------------------------------------------------
54761
+  (0.1ms) rollback transaction
54762
+  (0.1ms) begin transaction
54763
+ ---------------------------------------------------------
54764
+ SpreadsheetArchitectUtilsTest: test_constants_dont_change
54765
+ ---------------------------------------------------------
54766
+  (0.1ms) rollback transaction
54767
+  (0.1ms) begin transaction
54768
+ -------------------------------------------------
54769
+ SpreadsheetArchitectUtilsTest: test_get_cell_data
54770
+ -------------------------------------------------
54771
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54772
+  (0.1ms) rollback transaction
54773
+  (0.1ms) begin transaction
54774
+ -----------------------------------------------
54775
+ SpreadsheetArchitectUtilsTest: test_get_options
54776
+ -----------------------------------------------
54777
+  (0.1ms) rollback transaction
54778
+  (0.1ms) begin transaction
54779
+ ------------------------------------------------
54780
+ SpreadsheetArchitectUtilsTest: test_str_humanize
54781
+ ------------------------------------------------
54782
+  (0.1ms) rollback transaction
54783
+  (0.1ms) begin transaction
54784
+ -----------------------------------------------------------
54785
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
54786
+ -----------------------------------------------------------
54787
+  (0.1ms) rollback transaction
54788
+  (0.1ms) begin transaction
54789
+ --------------------------------------------
54790
+ SpreadsheetArchitectUtilsTest: test_get_type
54791
+ --------------------------------------------
54792
+  (0.1ms) rollback transaction
54793
+  (0.1ms) begin transaction
54794
+ -------------------------------
54795
+ ActiveModelObjectTest: test_ods
54796
+ -------------------------------
54797
+  (0.1ms) SAVEPOINT active_record_1
54798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54799
+  (0.0ms) SAVEPOINT active_record_1
54800
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54801
+  (0.0ms) rollback transaction
54802
+  (0.1ms) begin transaction
54803
+ -------------------------------
54804
+ ActiveModelObjectTest: test_csv
54805
+ -------------------------------
54806
+  (0.1ms) SAVEPOINT active_record_1
54807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54808
+  (0.0ms) SAVEPOINT active_record_1
54809
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54810
+  (0.0ms) rollback transaction
54811
+  (0.1ms) begin transaction
54812
+ --------------------------------
54813
+ ActiveModelObjectTest: test_xlsx
54814
+ --------------------------------
54815
+  (0.1ms) SAVEPOINT active_record_1
54816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54817
+  (0.1ms) SAVEPOINT active_record_1
54818
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54819
+  (0.1ms) rollback transaction
54820
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
54821
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
54822
+  (0.1ms) begin transaction
54823
+  (0.1ms) commit transaction
54824
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54825
+  (0.1ms) begin transaction
54826
+ -----------------------------
54827
+ PlainRubyObjectTest: test_ods
54828
+ -----------------------------
54829
+  (0.1ms) SAVEPOINT active_record_1
54830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54831
+  (0.0ms) SAVEPOINT active_record_1
54832
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
54833
+  (0.1ms) rollback transaction
54834
+  (0.1ms) begin transaction
54835
+ ------------------------------
54836
+ PlainRubyObjectTest: test_xlsx
54837
+ ------------------------------
54838
+  (0.1ms) SAVEPOINT active_record_1
54839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54840
+  (0.2ms) SAVEPOINT active_record_1
54841
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54842
+  (0.0ms) rollback transaction
54843
+  (0.0ms) begin transaction
54844
+ -----------------------------
54845
+ PlainRubyObjectTest: test_csv
54846
+ -----------------------------
54847
+  (0.0ms) SAVEPOINT active_record_1
54848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54849
+  (0.0ms) SAVEPOINT active_record_1
54850
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54851
+  (0.0ms) rollback transaction
54852
+  (0.0ms) begin transaction
54853
+ ------------------------------------
54854
+ SpreadsheetsControllerTest: test_csv
54855
+ ------------------------------------
54856
+  (0.0ms) SAVEPOINT active_record_1
54857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54858
+  (0.0ms) SAVEPOINT active_record_1
54859
+ Processing by SpreadsheetsController#csv as HTML
54860
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54861
+ Rendering text template
54862
+ Rendered text template (0.0ms)
54863
+ Sent data data.csv (3.5ms)
54864
+ Completed 200 OK in 7ms (Views: 3.6ms | ActiveRecord: 0.3ms)
54865
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54866
+  (0.0ms) rollback transaction
54867
+  (0.0ms) begin transaction
54868
+ ------------------------------------
54869
+ SpreadsheetsControllerTest: test_ods
54870
+ ------------------------------------
54871
+  (0.0ms) SAVEPOINT active_record_1
54872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54873
+  (0.0ms) SAVEPOINT active_record_1
54874
+ Processing by SpreadsheetsController#ods as HTML
54875
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54876
+ Rendering text template
54877
+ Rendered text template (0.0ms)
54878
+ Sent data data.ods (0.4ms)
54879
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.1ms)
54880
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54881
+  (0.0ms) rollback transaction
54882
+  (0.0ms) begin transaction
54883
+ -------------------------------------
54884
+ SpreadsheetsControllerTest: test_xlsx
54885
+ -------------------------------------
54886
+  (0.1ms) SAVEPOINT active_record_1
54887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54888
+  (0.0ms) SAVEPOINT active_record_1
54889
+ Processing by SpreadsheetsController#xlsx as HTML
54890
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54891
+ Rendering text template
54892
+ Rendered text template (0.0ms)
54893
+ Sent data Posts.xlsx (0.3ms)
54894
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.1ms)
54895
+ Processing by SpreadsheetsController#alt_xlsx as XLSX
54896
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
54897
+ Rendering text template
54898
+ Rendered text template (0.0ms)
54899
+ Sent data Posts.xlsx (0.4ms)
54900
+ Completed 200 OK in 10ms (Views: 7.1ms | ActiveRecord: 0.1ms)
54901
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54902
+  (0.1ms) rollback transaction
54903
+  (0.0ms) begin transaction
54904
+ -------------------------------
54905
+ ActiveModelObjectTest: test_csv
54906
+ -------------------------------
54907
+  (0.0ms) SAVEPOINT active_record_1
54908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54909
+  (0.0ms) SAVEPOINT active_record_1
54910
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54911
+  (0.0ms) rollback transaction
54912
+  (0.0ms) begin transaction
54913
+ -------------------------------
54914
+ ActiveModelObjectTest: test_ods
54915
+ -------------------------------
54916
+  (0.0ms) SAVEPOINT active_record_1
54917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54918
+  (0.0ms) SAVEPOINT active_record_1
54919
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54920
+  (0.0ms) rollback transaction
54921
+  (0.0ms) begin transaction
54922
+ --------------------------------
54923
+ ActiveModelObjectTest: test_xlsx
54924
+ --------------------------------
54925
+  (0.0ms) SAVEPOINT active_record_1
54926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54927
+  (0.0ms) SAVEPOINT active_record_1
54928
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54929
+  (0.0ms) rollback transaction
54930
+  (0.0ms) begin transaction
54931
+ --------------------------------
54932
+ BadPlainRubyObjectTest: test_csv
54933
+ --------------------------------
54934
+  (0.0ms) SAVEPOINT active_record_1
54935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54936
+  (0.0ms) SAVEPOINT active_record_1
54937
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54938
+  (0.0ms) rollback transaction
54939
+  (0.0ms) begin transaction
54940
+ --------------------------------
54941
+ BadPlainRubyObjectTest: test_ods
54942
+ --------------------------------
54943
+  (0.0ms) SAVEPOINT active_record_1
54944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54945
+  (0.0ms) SAVEPOINT active_record_1
54946
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54947
+  (0.0ms) rollback transaction
54948
+  (0.0ms) begin transaction
54949
+ ---------------------------------
54950
+ BadPlainRubyObjectTest: test_xlsx
54951
+ ---------------------------------
54952
+  (0.0ms) SAVEPOINT active_record_1
54953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54954
+  (0.0ms) SAVEPOINT active_record_1
54955
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54956
+  (0.0ms) rollback transaction
54957
+  (0.0ms) begin transaction
54958
+ -------------------
54959
+ OdsTest: test_model
54960
+ -------------------
54961
+  (0.0ms) SAVEPOINT active_record_1
54962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
54963
+  (0.0ms) SAVEPOINT active_record_1
54964
+  (0.1ms) SAVEPOINT active_record_2
54965
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "38fc9c4b334a6ad07d5451236c7f29e6"], ["content", "21e4cd7491679f1a0f5b66350d507b4a"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54966
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54967
+  (0.0ms) SAVEPOINT active_record_2
54968
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7e56db75fec5d6242475c8a0bdc31f08"], ["content", "e8e1b4cab120c6d41690c8ca36ec292a"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54969
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54970
+  (0.0ms) SAVEPOINT active_record_2
54971
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "56345ab621ec9d4b9b52dd269e49b780"], ["content", "8b80f9f9ca86415781520e095b9f2613"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54972
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54973
+  (0.1ms) SAVEPOINT active_record_2
54974
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b5a3af53c0176a4adfe451bad70c78c9"], ["content", "d2749e8deb9c3ac2f0552da88878f7d7"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54975
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54976
+  (0.0ms) SAVEPOINT active_record_2
54977
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c74183dc9c9ec21b7b9ddb657b3f20c3"], ["content", "9a671a148994a07080e03f8b36f4d672"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54978
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54979
+  (0.1ms) SAVEPOINT active_record_2
54980
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a49fbe2493e3d7d7827ecd5648ba5263"], ["content", "b745b9349bc9c22c6c69121499f4f05c"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54981
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54982
+  (0.0ms) SAVEPOINT active_record_2
54983
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ee9c636de7b9163761a969a455648bfb"], ["content", "0c7c74da8d37f72296a05384c979e6ee"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54984
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54985
+  (0.0ms) SAVEPOINT active_record_2
54986
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d2ad64face952af8c8b303a381932fae"], ["content", "58a4558230b25d9b262bf69f6f9bc282"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54987
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54988
+  (0.0ms) SAVEPOINT active_record_2
54989
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2d5efad46d5c8d069825a6837cbc91af"], ["content", "d2a54012c0ff92689aa2215e63529c8f"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54990
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54991
+  (0.0ms) SAVEPOINT active_record_2
54992
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e0e4df176917881456992e19d0a607a8"], ["content", "b89280d9b3152c4f0976c4d9ee6d8e58"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
54993
+  (0.0ms) RELEASE SAVEPOINT active_record_2
54994
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
54995
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
54996
+  (0.2ms) rollback transaction
54997
+  (0.1ms) begin transaction
54998
+ ----------------
54999
+ OdsTest: test_sa
55000
+ ----------------
55001
+  (0.0ms) SAVEPOINT active_record_1
55002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55003
+  (0.0ms) SAVEPOINT active_record_1
55004
+  (0.1ms) SAVEPOINT active_record_2
55005
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9531774a7be787b23c6467f1610f31a3"], ["content", "27cfe93abebb8a0a68ab985fcdfc9ff0"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55006
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55007
+  (0.0ms) SAVEPOINT active_record_2
55008
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2c4d64e38b5365d32c71f48ed01d33ad"], ["content", "cd5ec6442b0a77a9aba3befd4ad792a2"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55009
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55010
+  (0.0ms) SAVEPOINT active_record_2
55011
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7ff8537e9b2e713f3a348a0d4b8487f4"], ["content", "e03da319ab2bd29d30005de2b62493f2"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55012
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55013
+  (0.0ms) SAVEPOINT active_record_2
55014
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "243f588eeeb9068fa25b2d831b6c77ab"], ["content", "4dc8fececaf0f64ff0d20123ff380105"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55015
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55016
+  (0.0ms) SAVEPOINT active_record_2
55017
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cc16465fb739fa53668c12c750b4b701"], ["content", "47e5f52a816917b6675dad6e0f6cf187"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55018
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55019
+  (0.0ms) SAVEPOINT active_record_2
55020
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d8e9b6bb1056b20a4ba4c8844da7b515"], ["content", "5b7e84ce3ed252f4bccc16e9cf61cc06"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55021
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55022
+  (0.0ms) SAVEPOINT active_record_2
55023
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "86d72880b021792938a372409b894768"], ["content", "b21750c7578fe125fb94ef682c496ce6"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55024
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55025
+  (0.0ms) SAVEPOINT active_record_2
55026
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6a761f8b468c83679b6c22786b4a4752"], ["content", "940a8ee9c2cd5a517b31d73097e7f80e"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55027
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55028
+  (0.0ms) SAVEPOINT active_record_2
55029
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "0900c5bb35464d9acafc820d22939b44"], ["content", "f67802784b74868e5fdcee92ee270ed5"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55030
+  (0.1ms) RELEASE SAVEPOINT active_record_2
55031
+  (0.0ms) SAVEPOINT active_record_2
55032
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cc2adcc421fba424d9c00975d349bf06"], ["content", "2e82a57c380139d58f0da5b108c6b6dc"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55033
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55034
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55035
+  (0.1ms) rollback transaction
55036
+  (0.0ms) begin transaction
55037
+ ---------------------
55038
+ OdsTest: test_options
55039
+ ---------------------
55040
+  (0.1ms) SAVEPOINT active_record_1
55041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55042
+  (0.0ms) SAVEPOINT active_record_1
55043
+  (0.0ms) SAVEPOINT active_record_2
55044
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a150b4d431c9b45b1ae1d082fd792e0c"], ["content", "b9c7c1399e1bc4a01f9412d2bf1a1d6e"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55045
+  (0.1ms) RELEASE SAVEPOINT active_record_2
55046
+  (0.0ms) SAVEPOINT active_record_2
55047
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "84373d296bdf4a64b7f51986c7a4e43c"], ["content", "5faeb2f3f1df910fb4a0ae1e902dc927"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55048
+  (0.1ms) RELEASE SAVEPOINT active_record_2
55049
+  (0.0ms) SAVEPOINT active_record_2
55050
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "9df163db2df71302278acb8c6dcf8f5f"], ["content", "6a459312fd421307b820a0772c31445f"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55051
+  (0.1ms) RELEASE SAVEPOINT active_record_2
55052
+  (0.0ms) SAVEPOINT active_record_2
55053
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "7a5269f7c8946d41a7d47d4b7b871ffc"], ["content", "2da4360a43fa1db6a2b4a82cb276e2d7"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55054
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55055
+  (0.0ms) SAVEPOINT active_record_2
55056
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "76c036a61269dc45c699b592ea607a8c"], ["content", "175e54f00a62a2c2b320ffe45e2b2dc9"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55057
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55058
+  (0.0ms) SAVEPOINT active_record_2
55059
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "aadfe8b2feb5d2e6e2fdc2d17a7c34e9"], ["content", "d55297eaa86bddfdbf782dabb3f84f82"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55060
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55061
+  (0.0ms) SAVEPOINT active_record_2
55062
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "e04079edc4d03eb23ea753dcbc98bb80"], ["content", "ee0780bffe252ec417a55e5912e842bb"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55063
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55064
+  (0.0ms) SAVEPOINT active_record_2
55065
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "25e4a617f3acb4bc960736f97fd47821"], ["content", "8c7a4514ee533617117dda515f994f7c"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55066
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55067
+  (0.0ms) SAVEPOINT active_record_2
55068
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "69e1a74f0c1899ad90e47089fc37d693"], ["content", "88d53b860d64cfac811123b25f4e7380"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55069
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55070
+  (0.0ms) SAVEPOINT active_record_2
55071
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "28dcd0fee108993b63c43e3ea8e35218"], ["content", "0add4a1a9bd96d60537d10d9a18f200d"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55072
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55073
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
55074
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55075
+  (0.1ms) rollback transaction
55076
+  (0.0ms) begin transaction
55077
+ -------------------------
55078
+ OdsTest: test_empty_model
55079
+ -------------------------
55080
+  (0.0ms) SAVEPOINT active_record_1
55081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55082
+  (0.0ms) SAVEPOINT active_record_1
55083
+  (0.0ms) SAVEPOINT active_record_2
55084
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "457dcd027d465c0de4ac46e5ff4c88a0"], ["content", "81a74b04985704e43d3c1b10e0281d3e"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55085
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55086
+  (0.0ms) SAVEPOINT active_record_2
55087
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "8be9f015adc272e1dd1dc49120cf478c"], ["content", "a15cc12797e3a5f995a0cd3d9b280451"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55088
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55089
+  (0.0ms) SAVEPOINT active_record_2
55090
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "cf95941e8e28b159b1759e952293bf75"], ["content", "eda1da8e7cbd51719d6758aec8fb359a"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55091
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55092
+  (0.0ms) SAVEPOINT active_record_2
55093
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "785b19d5a09424e268d7e7a95ca1da34"], ["content", "a1346838adcd1c272eba5f3dcb0776e8"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55094
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55095
+  (0.0ms) SAVEPOINT active_record_2
55096
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2bc2d82148803a601a4c67ab45eb0ac0"], ["content", "95e9ddc0e125e53b41bed4c5d80b2df9"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55097
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55098
+  (0.0ms) SAVEPOINT active_record_2
55099
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bbcc88db5dc56e78bb000614496b52b1"], ["content", "474f7676c08098494066fd697c0e2762"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55100
+  (0.4ms) RELEASE SAVEPOINT active_record_2
55101
+  (0.0ms) SAVEPOINT active_record_2
55102
+ SQL (0.5ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a5e4985b41881ea9a5c540214d33cf69"], ["content", "097f1dcb5064ab9d301ab59b62c3f1c6"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55103
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55104
+  (0.0ms) SAVEPOINT active_record_2
55105
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "500f6a92db3a83bbe0b766acdd0b7833"], ["content", "bd3fd31350e1b3fae8ca5ff5ff214c0e"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55106
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55107
+  (0.0ms) SAVEPOINT active_record_2
55108
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "71b3d26f8268ccdd917d4cafeec13c01"], ["content", "06b070c91c68a720155e32aef05032b6"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55109
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55110
+  (0.0ms) SAVEPOINT active_record_2
55111
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "a43fb23ddfaaffd3166844fd20138d46"], ["content", "3b19858c59473cef42160f0fc10ffcd6"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55112
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55113
+ SQL (0.0ms) DELETE FROM "posts"
55114
+ CustomPost Load (0.0ms) SELECT "posts".* FROM "posts"
55115
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55116
+  (0.1ms) rollback transaction
55117
+  (0.0ms) begin transaction
55118
+ ----------------------
55119
+ OdsTest: test_empty_sa
55120
+ ----------------------
55121
+  (0.0ms) SAVEPOINT active_record_1
55122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55123
+  (0.0ms) SAVEPOINT active_record_1
55124
+  (0.0ms) SAVEPOINT active_record_2
55125
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "03f857a75db7d8eaeb1097b697dc30aa"], ["content", "06c14072893533a0f1bb310eb7ff3953"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55126
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55127
+  (0.0ms) SAVEPOINT active_record_2
55128
+ SQL (0.2ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "d9dc8695b667e8702db229ade853bb40"], ["content", "84743eb14fde3d0f78adf807be90fa3d"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55129
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55130
+  (0.0ms) SAVEPOINT active_record_2
55131
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ab897ec14831deaadb1a123974f2555c"], ["content", "913b604188e78f1116ac017a8cc9acd3"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55132
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55133
+  (0.0ms) SAVEPOINT active_record_2
55134
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "6deac254fb12a9e17608253f348b2e57"], ["content", "6a7c6dba54e88dc3272e99088a41930a"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55135
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55136
+  (0.0ms) SAVEPOINT active_record_2
55137
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "c7c5852cb1d16830d8800138370ef2e2"], ["content", "eae2df63868be9aca7fc967312d7c138"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55138
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55139
+  (0.0ms) SAVEPOINT active_record_2
55140
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b1b6899b5ac6c11fb80c4362fd0e5f97"], ["content", "e5640e4a0384ed9afcc6375ee2a2cc3c"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55141
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55142
+  (0.0ms) SAVEPOINT active_record_2
55143
+ SQL (0.6ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "59f19440e33573e700c72a48ffef6d38"], ["content", "e816a8736465a2324d41e2b681818805"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55144
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55145
+  (0.0ms) SAVEPOINT active_record_2
55146
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "b28666e3780fa7d94d7cfcf516a1b6d7"], ["content", "804a1e84886c8516c73250faccc05af0"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55147
+  (0.1ms) RELEASE SAVEPOINT active_record_2
55148
+  (0.0ms) SAVEPOINT active_record_2
55149
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "ed02189268788a4fcb4ae439237e2686"], ["content", "83e45058f03e5efed414c20dff863a55"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55150
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55151
+  (0.0ms) SAVEPOINT active_record_2
55152
+ SQL (0.1ms) INSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "474b5fb2b0b8ec26b16136118dc3ba23"], ["content", "78f027e5c39789794218a4cadc8aec7f"], ["age", 2], ["created_at", 2017-02-16 18:29:03 UTC], ["updated_at", 2017-02-16 18:29:03 UTC]]
55153
+  (0.0ms) RELEASE SAVEPOINT active_record_2
55154
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55155
+  (0.1ms) rollback transaction
55156
+  (0.0ms) begin transaction
55157
+ ------------------------------------------
55158
+ CustomPostTest: test_constants_dont_change
55159
+ ------------------------------------------
55160
+  (0.0ms) SAVEPOINT active_record_1
55161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55162
+  (0.0ms) SAVEPOINT active_record_1
55163
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55164
+  (0.0ms) rollback transaction
55165
+  (0.0ms) begin transaction
55166
+ --------------------------
55167
+ CustomPostTest: test_empty
55168
+ --------------------------
55169
+  (0.0ms) SAVEPOINT active_record_1
55170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55171
+  (0.0ms) SAVEPOINT active_record_1
55172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55173
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55174
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55175
+  (0.0ms) rollback transaction
55176
+  (0.1ms) begin transaction
55177
+ ------------------------
55178
+ CustomPostTest: test_ods
55179
+ ------------------------
55180
+  (0.0ms) SAVEPOINT active_record_1
55181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55182
+  (0.0ms) SAVEPOINT active_record_1
55183
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
55184
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55185
+  (0.1ms) rollback transaction
55186
+  (0.0ms) begin transaction
55187
+ -------------------------
55188
+ CustomPostTest: test_xlsx
55189
+ -------------------------
55190
+  (0.0ms) SAVEPOINT active_record_1
55191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55192
+  (0.1ms) SAVEPOINT active_record_1
55193
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
55194
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
55195
+  (0.0ms) rollback transaction
55196
+  (0.0ms) begin transaction
55197
+ ------------------------
55198
+ CustomPostTest: test_csv
55199
+ ------------------------
55200
+  (0.0ms) SAVEPOINT active_record_1
55201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55202
+  (0.0ms) SAVEPOINT active_record_1
55203
+ CustomPost Load (0.1ms) SELECT "posts".* FROM "posts"
55204
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
55205
+  (0.0ms) rollback transaction
55206
+  (0.0ms) begin transaction
55207
+ --------------------------
55208
+ XlsxTest: test_empty_model
55209
+ --------------------------
55210
+ SQL (0.1ms) DELETE FROM "posts"
55211
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55212
+  (0.1ms) rollback transaction
55213
+  (0.1ms) begin transaction
55214
+ ----------------------
55215
+ XlsxTest: test_extreme
55216
+ ----------------------
55217
+  (0.1ms) rollback transaction
55218
+  (0.0ms) begin transaction
55219
+ --------------------
55220
+ XlsxTest: test_model
55221
+ --------------------
55222
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55223
+  (0.1ms) rollback transaction
55224
+  (0.0ms) begin transaction
55225
+ -----------------
55226
+ XlsxTest: test_sa
55227
+ -----------------
55228
+  (0.1ms) rollback transaction
55229
+  (0.0ms) begin transaction
55230
+ -----------------------
55231
+ XlsxTest: test_empty_sa
55232
+ -----------------------
55233
+  (0.1ms) rollback transaction
55234
+  (0.0ms) begin transaction
55235
+ ---------------------
55236
+ CsvTest: test_options
55237
+ ---------------------
55238
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55239
+  (0.1ms) rollback transaction
55240
+  (0.0ms) begin transaction
55241
+ -------------------------
55242
+ CsvTest: test_empty_model
55243
+ -------------------------
55244
+ SQL (0.1ms) DELETE FROM "posts"
55245
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55246
+  (0.1ms) rollback transaction
55247
+  (0.0ms) begin transaction
55248
+ ----------------------
55249
+ CsvTest: test_empty_sa
55250
+ ----------------------
55251
+  (0.0ms) rollback transaction
55252
+  (0.0ms) begin transaction
55253
+ -------------------
55254
+ CsvTest: test_model
55255
+ -------------------
55256
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55257
+  (0.0ms) rollback transaction
55258
+  (0.0ms) begin transaction
55259
+ ----------------
55260
+ CsvTest: test_sa
55261
+ ----------------
55262
+  (0.0ms) rollback transaction
55263
+  (0.0ms) begin transaction
55264
+ ---------------------------------------------------------
55265
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
55266
+ ---------------------------------------------------------
55267
+  (0.0ms) rollback transaction
55268
+  (0.0ms) begin transaction
55269
+ ---------------------------------------------------------
55270
+ SpreadsheetArchitectUtilsTest: test_constants_dont_change
55271
+ ---------------------------------------------------------
55272
+  (0.0ms) rollback transaction
55273
+  (0.0ms) begin transaction
55274
+ -----------------------------------------------------------
55275
+ SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
55276
+ -----------------------------------------------------------
55277
+  (0.0ms) rollback transaction
55278
+  (0.1ms) begin transaction
55279
+ -----------------------------------------------
55280
+ SpreadsheetArchitectUtilsTest: test_get_options
55281
+ -----------------------------------------------
55282
+  (0.0ms) rollback transaction
55283
+  (0.1ms) begin transaction
55284
+ ------------------------------------------------
55285
+ SpreadsheetArchitectUtilsTest: test_str_humanize
55286
+ ------------------------------------------------
55287
+  (0.0ms) rollback transaction
55288
+  (0.0ms) begin transaction
55289
+ --------------------------------------------
55290
+ SpreadsheetArchitectUtilsTest: test_get_type
55291
+ --------------------------------------------
55292
+  (0.0ms) rollback transaction
55293
+  (0.0ms) begin transaction
55294
+ -------------------------------------------------
55295
+ SpreadsheetArchitectUtilsTest: test_get_cell_data
55296
+ -------------------------------------------------
55297
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55298
+  (0.0ms) rollback transaction
55299
+  (0.1ms) begin transaction
55300
+ --------------------
55301
+ PostTest: test_empty
55302
+ --------------------
55303
+  (0.0ms) SAVEPOINT active_record_1
55304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55305
+  (0.0ms) SAVEPOINT active_record_1
55306
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55307
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55308
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55309
+  (0.0ms) rollback transaction
55310
+  (0.0ms) begin transaction
55311
+ ------------------
55312
+ PostTest: test_ods
55313
+ ------------------
55314
+  (0.0ms) SAVEPOINT active_record_1
55315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55316
+  (0.0ms) SAVEPOINT active_record_1
55317
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
55318
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
55319
+  (0.0ms) rollback transaction
55320
+  (0.0ms) begin transaction
55321
+ ------------------
55322
+ PostTest: test_csv
55323
+ ------------------
55324
+  (0.0ms) SAVEPOINT active_record_1
55325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55326
+  (0.0ms) SAVEPOINT active_record_1
55327
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55328
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
55329
+  (0.0ms) rollback transaction
55330
+  (0.0ms) begin transaction
55331
+ -------------------
55332
+ PostTest: test_xlsx
55333
+ -------------------
55334
+  (0.0ms) SAVEPOINT active_record_1
55335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55336
+  (0.0ms) SAVEPOINT active_record_1
55337
+ Post Load (0.0ms) SELECT "posts".* FROM "posts"
55338
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55339
+  (0.0ms) rollback transaction