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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/LICENSE +4 -671
- data/README.md +10 -1
- data/lib/spreadsheet_architect/class_methods/xlsx.rb +25 -3
- data/lib/spreadsheet_architect/exceptions.rb +12 -6
- data/lib/spreadsheet_architect/utils.rb +8 -4
- data/lib/spreadsheet_architect/utils/xlsx.rb +6 -6
- data/lib/spreadsheet_architect/version.rb +1 -1
- data/test/rails_app/Gemfile.lock +1 -1
- data/test/rails_app/app/models/custom_post.rb +12 -0
- data/test/rails_app/log/test.log +2573 -0
- data/test/rails_app/test/models/custom_post_test.rb +7 -0
- data/test/rails_app/test/models/spreadsheet_architect_utils_test.rb +6 -0
- data/test/rails_app/tmp/active_model_object/csv.csv +20 -20
- data/test/rails_app/tmp/active_model_object/ods.ods +0 -0
- data/test/rails_app/tmp/active_model_object/xlsx.xlsx +0 -0
- data/test/rails_app/tmp/controller_tests/alt_xlsx.xlsx +0 -0
- data/test/rails_app/tmp/controller_tests/ods.ods +0 -0
- data/test/rails_app/tmp/controller_tests/xlsx.xlsx +0 -0
- data/test/rails_app/tmp/custom_posts/empty.xlsx +0 -0
- data/test/rails_app/tmp/custom_posts/ods.ods +0 -0
- data/test/rails_app/tmp/custom_posts/xlsx.xlsx +0 -0
- data/test/rails_app/tmp/empty_model.xlsx +0 -0
- data/test/rails_app/tmp/empty_sa.xlsx +0 -0
- data/test/rails_app/tmp/extreme.xlsx +0 -0
- data/test/rails_app/tmp/model.xlsx +0 -0
- data/test/rails_app/tmp/ods/empty_model.ods +0 -0
- data/test/rails_app/tmp/ods/empty_sa.ods +0 -0
- data/test/rails_app/tmp/ods/model.ods +0 -0
- data/test/rails_app/tmp/ods/model_options.ods +0 -0
- data/test/rails_app/tmp/ods/sa.ods +0 -0
- data/test/rails_app/tmp/plain_ruby_object/csv.csv +3 -3
- data/test/rails_app/tmp/plain_ruby_object/ods.ods +0 -0
- data/test/rails_app/tmp/plain_ruby_object/xlsx.xlsx +0 -0
- data/test/rails_app/tmp/posts/empty.xlsx +0 -0
- data/test/rails_app/tmp/posts/ods.ods +0 -0
- data/test/rails_app/tmp/posts/xlsx.xlsx +0 -0
- data/test/rails_app/tmp/sa.xlsx +0 -0
- 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 =
|
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
|
-
|
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
|
-
|
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
|
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(
|
46
|
+
super("Bad range `#{range}` passed. Format must be as follows: A1:D4")
|
41
47
|
when :type
|
42
|
-
super(
|
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
|
|
data/test/rails_app/Gemfile.lock
CHANGED
@@ -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
|
data/test/rails_app/log/test.log
CHANGED
@@ -52764,3 +52764,2576 @@ CustomPostTest: test_xlsx
|
|
52764
52764
|
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52765
52765
|
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52766
52766
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52767
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
52768
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
52769
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52770
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
52771
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
52772
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52773
|
+
-------------------------
|
52774
|
+
CustomPostTest: test_xlsx
|
52775
|
+
-------------------------
|
52776
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52777
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52778
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52779
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52780
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52781
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52782
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52783
|
+
--------------------------
|
52784
|
+
CustomPostTest: test_empty
|
52785
|
+
--------------------------
|
52786
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52787
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52788
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52789
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52790
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52791
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52792
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52793
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52794
|
+
------------------------
|
52795
|
+
CustomPostTest: test_ods
|
52796
|
+
------------------------
|
52797
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52798
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52799
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52800
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52801
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52802
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52803
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52804
|
+
------------------------
|
52805
|
+
CustomPostTest: test_csv
|
52806
|
+
------------------------
|
52807
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52808
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52809
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52810
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52811
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52812
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52813
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52814
|
+
-----------------------
|
52815
|
+
XlsxTest: test_empty_sa
|
52816
|
+
-----------------------
|
52817
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52818
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52819
|
+
--------------------------
|
52820
|
+
XlsxTest: test_empty_model
|
52821
|
+
--------------------------
|
52822
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "posts"[0m
|
52823
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52824
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52825
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52826
|
+
-----------------
|
52827
|
+
XlsxTest: test_sa
|
52828
|
+
-----------------
|
52829
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52830
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52831
|
+
----------------------
|
52832
|
+
XlsxTest: test_extreme
|
52833
|
+
----------------------
|
52834
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52835
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52836
|
+
--------------------
|
52837
|
+
XlsxTest: test_model
|
52838
|
+
--------------------
|
52839
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52840
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52841
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52842
|
+
--------------------
|
52843
|
+
PostTest: test_empty
|
52844
|
+
--------------------
|
52845
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52846
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52847
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52848
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52849
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52850
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52851
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52852
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52853
|
+
-------------------
|
52854
|
+
PostTest: test_xlsx
|
52855
|
+
-------------------
|
52856
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52857
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52858
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52859
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52860
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52861
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52862
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52863
|
+
------------------
|
52864
|
+
PostTest: test_csv
|
52865
|
+
------------------
|
52866
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52867
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52868
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52869
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52870
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52871
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52872
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52873
|
+
------------------
|
52874
|
+
PostTest: test_ods
|
52875
|
+
------------------
|
52876
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52877
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52878
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52879
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52880
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52881
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
52882
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52883
|
+
------------------------------------
|
52884
|
+
SpreadsheetsControllerTest: test_csv
|
52885
|
+
------------------------------------
|
52886
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52887
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52888
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52889
|
+
Processing by SpreadsheetsController#csv as HTML
|
52890
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52896
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52897
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52898
|
+
------------------------------------
|
52899
|
+
SpreadsheetsControllerTest: test_ods
|
52900
|
+
------------------------------------
|
52901
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52902
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52903
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52904
|
+
Processing by SpreadsheetsController#ods as HTML
|
52905
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52911
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
52912
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52913
|
+
-------------------------------------
|
52914
|
+
SpreadsheetsControllerTest: test_xlsx
|
52915
|
+
-------------------------------------
|
52916
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52917
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52918
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
52919
|
+
Processing by SpreadsheetsController#xlsx as HTML
|
52920
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
52932
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52933
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52934
|
+
-------------------
|
52935
|
+
CsvTest: test_model
|
52936
|
+
-------------------
|
52937
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52938
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52939
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52940
|
+
----------------
|
52941
|
+
CsvTest: test_sa
|
52942
|
+
----------------
|
52943
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52944
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52945
|
+
----------------------
|
52946
|
+
CsvTest: test_empty_sa
|
52947
|
+
----------------------
|
52948
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52949
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52950
|
+
---------------------
|
52951
|
+
CsvTest: test_options
|
52952
|
+
---------------------
|
52953
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52954
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52955
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52956
|
+
-------------------------
|
52957
|
+
CsvTest: test_empty_model
|
52958
|
+
-------------------------
|
52959
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
52960
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52961
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52962
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52963
|
+
------------------------------------------------
|
52964
|
+
SpreadsheetArchitectUtilsTest: test_str_humanize
|
52965
|
+
------------------------------------------------
|
52966
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52967
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52968
|
+
---------------------------------------------------------
|
52969
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
|
52970
|
+
---------------------------------------------------------
|
52971
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52972
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52973
|
+
-----------------------------------------------
|
52974
|
+
SpreadsheetArchitectUtilsTest: test_get_options
|
52975
|
+
-----------------------------------------------
|
52976
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52977
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52978
|
+
--------------------------------------------
|
52979
|
+
SpreadsheetArchitectUtilsTest: test_get_type
|
52980
|
+
--------------------------------------------
|
52981
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52982
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52983
|
+
---------------------------------------------------------
|
52984
|
+
SpreadsheetArchitectUtilsTest: test_constants_dont_change
|
52985
|
+
---------------------------------------------------------
|
52986
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
52987
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52988
|
+
-------------------------------------------------
|
52989
|
+
SpreadsheetArchitectUtilsTest: test_get_cell_data
|
52990
|
+
-------------------------------------------------
|
52991
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
52992
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52993
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
52994
|
+
-----------------------------------------------------------
|
52995
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
|
52996
|
+
-----------------------------------------------------------
|
52997
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
52998
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
52999
|
+
-----------------------------
|
53000
|
+
PlainRubyObjectTest: test_ods
|
53001
|
+
-----------------------------
|
53002
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53003
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53004
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53005
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53006
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53007
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53008
|
+
-----------------------------
|
53009
|
+
PlainRubyObjectTest: test_csv
|
53010
|
+
-----------------------------
|
53011
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53012
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53013
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53014
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53015
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53016
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53017
|
+
------------------------------
|
53018
|
+
PlainRubyObjectTest: test_xlsx
|
53019
|
+
------------------------------
|
53020
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53021
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53022
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53023
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53024
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53025
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53026
|
+
--------------------------------
|
53027
|
+
BadPlainRubyObjectTest: test_csv
|
53028
|
+
--------------------------------
|
53029
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53030
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53031
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53032
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53033
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53034
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53035
|
+
--------------------------------
|
53036
|
+
BadPlainRubyObjectTest: test_ods
|
53037
|
+
--------------------------------
|
53038
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53039
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53040
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53041
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53042
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53043
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53044
|
+
---------------------------------
|
53045
|
+
BadPlainRubyObjectTest: test_xlsx
|
53046
|
+
---------------------------------
|
53047
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53048
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53049
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53050
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53051
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53052
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53053
|
+
-------------------------------
|
53054
|
+
ActiveModelObjectTest: test_csv
|
53055
|
+
-------------------------------
|
53056
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53057
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53058
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53059
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53060
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53061
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53062
|
+
--------------------------------
|
53063
|
+
ActiveModelObjectTest: test_xlsx
|
53064
|
+
--------------------------------
|
53065
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53066
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53067
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53068
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53069
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53070
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53071
|
+
-------------------------------
|
53072
|
+
ActiveModelObjectTest: test_ods
|
53073
|
+
-------------------------------
|
53074
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53075
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53076
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53077
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53078
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53079
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53080
|
+
-------------------------
|
53081
|
+
OdsTest: test_empty_model
|
53082
|
+
-------------------------
|
53083
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53084
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53085
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53086
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53087
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53089
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53090
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53092
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53093
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53095
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53096
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53098
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53099
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53101
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53102
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53104
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53105
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53107
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53108
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53110
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53111
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53113
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53114
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53116
|
+
[1m[35mSQL (0.0ms)[0m [1m[31mDELETE FROM "posts"[0m
|
53117
|
+
[1m[36mCustomPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53118
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53119
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53120
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53121
|
+
-------------------
|
53122
|
+
OdsTest: test_model
|
53123
|
+
-------------------
|
53124
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53125
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53126
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53127
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53128
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53130
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53131
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53133
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53134
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53136
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53137
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53139
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53140
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53142
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53143
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53145
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53146
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53148
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53149
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53151
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53152
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53154
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53155
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53157
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53158
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53159
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53160
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53161
|
+
----------------------
|
53162
|
+
OdsTest: test_empty_sa
|
53163
|
+
----------------------
|
53164
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53165
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53166
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53167
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53168
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53170
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53171
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53173
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53174
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53176
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53177
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53179
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53180
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53182
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53183
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53185
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53186
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53188
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53189
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53191
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53192
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53194
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53195
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53197
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53198
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53199
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53200
|
+
----------------
|
53201
|
+
OdsTest: test_sa
|
53202
|
+
----------------
|
53203
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53204
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53205
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53206
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53207
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53209
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53210
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53212
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53213
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53215
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53216
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53218
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53219
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53221
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53222
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53224
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53225
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53227
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53228
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53230
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53231
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53233
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53234
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53236
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53237
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53238
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53239
|
+
---------------------
|
53240
|
+
OdsTest: test_options
|
53241
|
+
---------------------
|
53242
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53243
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53244
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53245
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53246
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53248
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53249
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53251
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53252
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53254
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53255
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53257
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53258
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53260
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53261
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53263
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53264
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53266
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53267
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53269
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53270
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53272
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53273
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53275
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53276
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53277
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53278
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
53279
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
53280
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53281
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
53282
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
53283
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53284
|
+
-----------------------------
|
53285
|
+
PlainRubyObjectTest: test_csv
|
53286
|
+
-----------------------------
|
53287
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53288
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53289
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53290
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53291
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53292
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53293
|
+
-----------------------------
|
53294
|
+
PlainRubyObjectTest: test_ods
|
53295
|
+
-----------------------------
|
53296
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53297
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53298
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53299
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53300
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53301
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53302
|
+
------------------------------
|
53303
|
+
PlainRubyObjectTest: test_xlsx
|
53304
|
+
------------------------------
|
53305
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53306
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53307
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53308
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53309
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53310
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53311
|
+
---------------------------------------------------------
|
53312
|
+
SpreadsheetArchitectUtilsTest: test_constants_dont_change
|
53313
|
+
---------------------------------------------------------
|
53314
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53315
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53316
|
+
--------------------------------------------
|
53317
|
+
SpreadsheetArchitectUtilsTest: test_get_type
|
53318
|
+
--------------------------------------------
|
53319
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53320
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53321
|
+
---------------------------------------------------------
|
53322
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
|
53323
|
+
---------------------------------------------------------
|
53324
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53325
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53326
|
+
-----------------------------------------------------------
|
53327
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
|
53328
|
+
-----------------------------------------------------------
|
53329
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53330
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53331
|
+
------------------------------------------------
|
53332
|
+
SpreadsheetArchitectUtilsTest: test_str_humanize
|
53333
|
+
------------------------------------------------
|
53334
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53335
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53336
|
+
-------------------------------------------------
|
53337
|
+
SpreadsheetArchitectUtilsTest: test_get_cell_data
|
53338
|
+
-------------------------------------------------
|
53339
|
+
[1m[36mPost Load (0.2ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53340
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53341
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53342
|
+
-----------------------------------------------
|
53343
|
+
SpreadsheetArchitectUtilsTest: test_get_options
|
53344
|
+
-----------------------------------------------
|
53345
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53346
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53347
|
+
---------------------------------
|
53348
|
+
BadPlainRubyObjectTest: test_xlsx
|
53349
|
+
---------------------------------
|
53350
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53351
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53352
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53353
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53354
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53355
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53356
|
+
--------------------------------
|
53357
|
+
BadPlainRubyObjectTest: test_csv
|
53358
|
+
--------------------------------
|
53359
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53360
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53361
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53362
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53363
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53364
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53365
|
+
--------------------------------
|
53366
|
+
BadPlainRubyObjectTest: test_ods
|
53367
|
+
--------------------------------
|
53368
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53369
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53370
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53371
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53372
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53373
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53374
|
+
-------------------------------------
|
53375
|
+
SpreadsheetsControllerTest: test_xlsx
|
53376
|
+
-------------------------------------
|
53377
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53378
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53379
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53380
|
+
Processing by SpreadsheetsController#xlsx as HTML
|
53381
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53393
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53394
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53395
|
+
------------------------------------
|
53396
|
+
SpreadsheetsControllerTest: test_ods
|
53397
|
+
------------------------------------
|
53398
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53399
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53400
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53401
|
+
Processing by SpreadsheetsController#ods as HTML
|
53402
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53408
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53409
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53410
|
+
------------------------------------
|
53411
|
+
SpreadsheetsControllerTest: test_csv
|
53412
|
+
------------------------------------
|
53413
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53414
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53415
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53416
|
+
Processing by SpreadsheetsController#csv as HTML
|
53417
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53423
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53424
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53425
|
+
-------------------
|
53426
|
+
CsvTest: test_model
|
53427
|
+
-------------------
|
53428
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53429
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53430
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53431
|
+
---------------------
|
53432
|
+
CsvTest: test_options
|
53433
|
+
---------------------
|
53434
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53435
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53436
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53437
|
+
----------------
|
53438
|
+
CsvTest: test_sa
|
53439
|
+
----------------
|
53440
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53441
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53442
|
+
----------------------
|
53443
|
+
CsvTest: test_empty_sa
|
53444
|
+
----------------------
|
53445
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53446
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53447
|
+
-------------------------
|
53448
|
+
CsvTest: test_empty_model
|
53449
|
+
-------------------------
|
53450
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "posts"[0m
|
53451
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53452
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53453
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53454
|
+
------------------
|
53455
|
+
PostTest: test_csv
|
53456
|
+
------------------
|
53457
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53458
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53459
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53460
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53461
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53462
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53463
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53464
|
+
--------------------
|
53465
|
+
PostTest: test_empty
|
53466
|
+
--------------------
|
53467
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53468
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53469
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53470
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53471
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53472
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53473
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53474
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53475
|
+
------------------
|
53476
|
+
PostTest: test_ods
|
53477
|
+
------------------
|
53478
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53479
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53480
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53481
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53482
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53483
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53484
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53485
|
+
-------------------
|
53486
|
+
PostTest: test_xlsx
|
53487
|
+
-------------------
|
53488
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53489
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53490
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53491
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53492
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53493
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53494
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53495
|
+
-------------------------------
|
53496
|
+
ActiveModelObjectTest: test_csv
|
53497
|
+
-------------------------------
|
53498
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53499
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53500
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53501
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53502
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53503
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53504
|
+
-------------------------------
|
53505
|
+
ActiveModelObjectTest: test_ods
|
53506
|
+
-------------------------------
|
53507
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53508
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53509
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53510
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53511
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53512
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53513
|
+
--------------------------------
|
53514
|
+
ActiveModelObjectTest: test_xlsx
|
53515
|
+
--------------------------------
|
53516
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53517
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53518
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53519
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53520
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53521
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53522
|
+
-----------------
|
53523
|
+
XlsxTest: test_sa
|
53524
|
+
-----------------
|
53525
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53526
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53527
|
+
----------------------
|
53528
|
+
XlsxTest: test_extreme
|
53529
|
+
----------------------
|
53530
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53531
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53532
|
+
-----------------------
|
53533
|
+
XlsxTest: test_empty_sa
|
53534
|
+
-----------------------
|
53535
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53536
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53537
|
+
--------------------------
|
53538
|
+
XlsxTest: test_empty_model
|
53539
|
+
--------------------------
|
53540
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
53541
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53542
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53543
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53544
|
+
--------------------
|
53545
|
+
XlsxTest: test_model
|
53546
|
+
--------------------
|
53547
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53548
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53549
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53550
|
+
------------------------
|
53551
|
+
CustomPostTest: test_csv
|
53552
|
+
------------------------
|
53553
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53554
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53555
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53556
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53557
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53558
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53559
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53560
|
+
------------------------
|
53561
|
+
CustomPostTest: test_ods
|
53562
|
+
------------------------
|
53563
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53564
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53565
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53566
|
+
[1m[36mCustomPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53567
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53568
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53569
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53570
|
+
-------------------------
|
53571
|
+
CustomPostTest: test_xlsx
|
53572
|
+
-------------------------
|
53573
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53574
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53575
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53576
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53577
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53578
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53579
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53580
|
+
--------------------------
|
53581
|
+
CustomPostTest: test_empty
|
53582
|
+
--------------------------
|
53583
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53584
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53585
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53586
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53587
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53588
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53589
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53590
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53591
|
+
-------------------
|
53592
|
+
OdsTest: test_model
|
53593
|
+
-------------------
|
53594
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53595
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53596
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53597
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53598
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53600
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53601
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53603
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53604
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53606
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53607
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53609
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53610
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53612
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53613
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53615
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53616
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53618
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53619
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53621
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53622
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53624
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53625
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53627
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53628
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53629
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53630
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53631
|
+
-------------------------
|
53632
|
+
OdsTest: test_empty_model
|
53633
|
+
-------------------------
|
53634
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53635
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53636
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53637
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53638
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53640
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53641
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53643
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53644
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53646
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53647
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53649
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53650
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53652
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53653
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53655
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53656
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53658
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53659
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53661
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53662
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53664
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53665
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53667
|
+
[1m[35mSQL (0.0ms)[0m [1m[31mDELETE FROM "posts"[0m
|
53668
|
+
[1m[36mCustomPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53669
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53670
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53671
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53672
|
+
---------------------
|
53673
|
+
OdsTest: test_options
|
53674
|
+
---------------------
|
53675
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53676
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53677
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53678
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53679
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53681
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53682
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53684
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53685
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53687
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53688
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53690
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53691
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53693
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53694
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53696
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53697
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53699
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53700
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53702
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53703
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53705
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53706
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53708
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53709
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53710
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53711
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53712
|
+
----------------------
|
53713
|
+
OdsTest: test_empty_sa
|
53714
|
+
----------------------
|
53715
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53716
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53717
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53718
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53719
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53721
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53722
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53724
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53725
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53727
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53728
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53730
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53731
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53733
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53734
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53736
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53737
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53739
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53740
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53742
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53743
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53745
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53746
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53748
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53749
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53750
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53751
|
+
----------------
|
53752
|
+
OdsTest: test_sa
|
53753
|
+
----------------
|
53754
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53755
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53756
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53757
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53758
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53760
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53761
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53763
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53764
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53766
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53767
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53769
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53770
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53772
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53773
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53775
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53776
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53778
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53779
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53781
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53782
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53784
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53785
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53787
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53788
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53789
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
53790
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
53791
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53792
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
53793
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
53794
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53795
|
+
-------------------------------
|
53796
|
+
ActiveModelObjectTest: test_csv
|
53797
|
+
-------------------------------
|
53798
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53799
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53800
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53801
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53802
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53803
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53804
|
+
--------------------------------
|
53805
|
+
ActiveModelObjectTest: test_xlsx
|
53806
|
+
--------------------------------
|
53807
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53808
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53809
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53810
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53811
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53812
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53813
|
+
-------------------------------
|
53814
|
+
ActiveModelObjectTest: test_ods
|
53815
|
+
-------------------------------
|
53816
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53817
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53818
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53819
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53820
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53821
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53822
|
+
-------------------------
|
53823
|
+
OdsTest: test_empty_model
|
53824
|
+
-------------------------
|
53825
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53826
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53827
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53828
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53829
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53831
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53832
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53834
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53835
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53837
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53838
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53840
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53841
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53843
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53844
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53846
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53847
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53849
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53850
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53852
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53853
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53855
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53856
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53858
|
+
[1m[35mSQL (0.0ms)[0m [1m[31mDELETE FROM "posts"[0m
|
53859
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53860
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53861
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53862
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53863
|
+
----------------------
|
53864
|
+
OdsTest: test_empty_sa
|
53865
|
+
----------------------
|
53866
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53867
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53868
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53869
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53870
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53872
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53873
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53875
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53876
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53878
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53879
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53881
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53882
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53884
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53885
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53887
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53888
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53890
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53891
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53893
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53894
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53896
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53897
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53899
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53900
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53901
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53902
|
+
-------------------
|
53903
|
+
OdsTest: test_model
|
53904
|
+
-------------------
|
53905
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53906
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53907
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53908
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53909
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53911
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53912
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53914
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53915
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53917
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53918
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53920
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53921
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53923
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53924
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53926
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53927
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53929
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53930
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53932
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53933
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53935
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53936
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53938
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53939
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53940
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53941
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53942
|
+
---------------------
|
53943
|
+
OdsTest: test_options
|
53944
|
+
---------------------
|
53945
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53946
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53947
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53948
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53949
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53951
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53952
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53954
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53955
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53957
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53958
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53960
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53961
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53963
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53964
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53966
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53967
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53969
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53970
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53972
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53973
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53975
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53976
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53978
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
53979
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
53980
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
53981
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53982
|
+
----------------
|
53983
|
+
OdsTest: test_sa
|
53984
|
+
----------------
|
53985
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53986
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
53987
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53988
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53989
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53991
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53992
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53994
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53995
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
53997
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
53998
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54000
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54001
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54003
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54004
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54006
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54007
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54009
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54010
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54012
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54013
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54015
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54016
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54018
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54019
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54020
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54021
|
+
------------------------------------
|
54022
|
+
SpreadsheetsControllerTest: test_csv
|
54023
|
+
------------------------------------
|
54024
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54025
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54026
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54027
|
+
Processing by SpreadsheetsController#csv as HTML
|
54028
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54034
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54035
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54036
|
+
-------------------------------------
|
54037
|
+
SpreadsheetsControllerTest: test_xlsx
|
54038
|
+
-------------------------------------
|
54039
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54040
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54041
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54042
|
+
Processing by SpreadsheetsController#xlsx as HTML
|
54043
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54055
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54056
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54057
|
+
------------------------------------
|
54058
|
+
SpreadsheetsControllerTest: test_ods
|
54059
|
+
------------------------------------
|
54060
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54061
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54062
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54063
|
+
Processing by SpreadsheetsController#ods as HTML
|
54064
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54070
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54071
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54072
|
+
-----------------------
|
54073
|
+
XlsxTest: test_empty_sa
|
54074
|
+
-----------------------
|
54075
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54076
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54077
|
+
--------------------
|
54078
|
+
XlsxTest: test_model
|
54079
|
+
--------------------
|
54080
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54081
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54082
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54083
|
+
-----------------
|
54084
|
+
XlsxTest: test_sa
|
54085
|
+
-----------------
|
54086
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54087
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54088
|
+
----------------------
|
54089
|
+
XlsxTest: test_extreme
|
54090
|
+
----------------------
|
54091
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54092
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54093
|
+
--------------------------
|
54094
|
+
XlsxTest: test_empty_model
|
54095
|
+
--------------------------
|
54096
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
54097
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54098
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54099
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54100
|
+
------------------------------
|
54101
|
+
PlainRubyObjectTest: test_xlsx
|
54102
|
+
------------------------------
|
54103
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54104
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54105
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54106
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54107
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54108
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54109
|
+
-----------------------------
|
54110
|
+
PlainRubyObjectTest: test_csv
|
54111
|
+
-----------------------------
|
54112
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54113
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54114
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54115
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54116
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54117
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54118
|
+
-----------------------------
|
54119
|
+
PlainRubyObjectTest: test_ods
|
54120
|
+
-----------------------------
|
54121
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54122
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54123
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54124
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54125
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54126
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54127
|
+
------------------------
|
54128
|
+
CustomPostTest: test_csv
|
54129
|
+
------------------------
|
54130
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54131
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54132
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54133
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54134
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54135
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54136
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54137
|
+
------------------------
|
54138
|
+
CustomPostTest: test_ods
|
54139
|
+
------------------------
|
54140
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54141
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54142
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54143
|
+
[1m[36mCustomPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54144
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54145
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54146
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54147
|
+
-------------------------
|
54148
|
+
CustomPostTest: test_xlsx
|
54149
|
+
-------------------------
|
54150
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54151
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54152
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54153
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54154
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54155
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54157
|
+
--------------------------
|
54158
|
+
CustomPostTest: test_empty
|
54159
|
+
--------------------------
|
54160
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54161
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54162
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54163
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54164
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54165
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54166
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54167
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54168
|
+
---------------------------------
|
54169
|
+
BadPlainRubyObjectTest: test_xlsx
|
54170
|
+
---------------------------------
|
54171
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54172
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54173
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54174
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54175
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54176
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54177
|
+
--------------------------------
|
54178
|
+
BadPlainRubyObjectTest: test_csv
|
54179
|
+
--------------------------------
|
54180
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54181
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54182
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54183
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54184
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54185
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54186
|
+
--------------------------------
|
54187
|
+
BadPlainRubyObjectTest: test_ods
|
54188
|
+
--------------------------------
|
54189
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54190
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54191
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54192
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54193
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54194
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54195
|
+
--------------------------------------------
|
54196
|
+
SpreadsheetArchitectUtilsTest: test_get_type
|
54197
|
+
--------------------------------------------
|
54198
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54199
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54200
|
+
---------------------------------------------------------
|
54201
|
+
SpreadsheetArchitectUtilsTest: test_constants_dont_change
|
54202
|
+
---------------------------------------------------------
|
54203
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54204
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54205
|
+
-----------------------------------------------------------
|
54206
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
|
54207
|
+
-----------------------------------------------------------
|
54208
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54209
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54210
|
+
---------------------------------------------------------
|
54211
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
|
54212
|
+
---------------------------------------------------------
|
54213
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54214
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54215
|
+
-----------------------------------------------
|
54216
|
+
SpreadsheetArchitectUtilsTest: test_get_options
|
54217
|
+
-----------------------------------------------
|
54218
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54219
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54220
|
+
------------------------------------------------
|
54221
|
+
SpreadsheetArchitectUtilsTest: test_str_humanize
|
54222
|
+
------------------------------------------------
|
54223
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54224
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54225
|
+
-------------------------------------------------
|
54226
|
+
SpreadsheetArchitectUtilsTest: test_get_cell_data
|
54227
|
+
-------------------------------------------------
|
54228
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54229
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54230
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54231
|
+
-------------------------
|
54232
|
+
CsvTest: test_empty_model
|
54233
|
+
-------------------------
|
54234
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
54235
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54236
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54237
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54238
|
+
-------------------
|
54239
|
+
CsvTest: test_model
|
54240
|
+
-------------------
|
54241
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54242
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54243
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54244
|
+
----------------------
|
54245
|
+
CsvTest: test_empty_sa
|
54246
|
+
----------------------
|
54247
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54248
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54249
|
+
---------------------
|
54250
|
+
CsvTest: test_options
|
54251
|
+
---------------------
|
54252
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54253
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54254
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54255
|
+
----------------
|
54256
|
+
CsvTest: test_sa
|
54257
|
+
----------------
|
54258
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54259
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54260
|
+
------------------
|
54261
|
+
PostTest: test_ods
|
54262
|
+
------------------
|
54263
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54264
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54265
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54266
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54267
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54268
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54269
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54270
|
+
-------------------
|
54271
|
+
PostTest: test_xlsx
|
54272
|
+
-------------------
|
54273
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54274
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54275
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54276
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54277
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54278
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54279
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54280
|
+
------------------
|
54281
|
+
PostTest: test_csv
|
54282
|
+
------------------
|
54283
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54284
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54285
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54286
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54287
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54288
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54289
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54290
|
+
--------------------
|
54291
|
+
PostTest: test_empty
|
54292
|
+
--------------------
|
54293
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54294
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54295
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54296
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54297
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54298
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54299
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54300
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54301
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
54302
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54303
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
54304
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54305
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54306
|
+
--------------------------
|
54307
|
+
CustomPostTest: test_empty
|
54308
|
+
--------------------------
|
54309
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54310
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54311
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54312
|
+
[1m[36mPost Load (0.2ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54313
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54314
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54315
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54316
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54317
|
+
------------------------
|
54318
|
+
CustomPostTest: test_csv
|
54319
|
+
------------------------
|
54320
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54321
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54322
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54323
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54324
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54325
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54326
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54327
|
+
-------------------------
|
54328
|
+
CustomPostTest: test_xlsx
|
54329
|
+
-------------------------
|
54330
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54331
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54332
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54333
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54334
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54335
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54336
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54337
|
+
------------------------------------------
|
54338
|
+
CustomPostTest: test_constants_dont_change
|
54339
|
+
------------------------------------------
|
54340
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54341
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54342
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54343
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54344
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54345
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54346
|
+
------------------------
|
54347
|
+
CustomPostTest: test_ods
|
54348
|
+
------------------------
|
54349
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54350
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54351
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54352
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54353
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54354
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54355
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54356
|
+
-------------------------
|
54357
|
+
CsvTest: test_empty_model
|
54358
|
+
-------------------------
|
54359
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "posts"[0m
|
54360
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54361
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54362
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54363
|
+
-------------------
|
54364
|
+
CsvTest: test_model
|
54365
|
+
-------------------
|
54366
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54367
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54368
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54369
|
+
---------------------
|
54370
|
+
CsvTest: test_options
|
54371
|
+
---------------------
|
54372
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54373
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54374
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54375
|
+
----------------------
|
54376
|
+
CsvTest: test_empty_sa
|
54377
|
+
----------------------
|
54378
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54379
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54380
|
+
----------------
|
54381
|
+
CsvTest: test_sa
|
54382
|
+
----------------
|
54383
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54384
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54385
|
+
-----------------------
|
54386
|
+
XlsxTest: test_empty_sa
|
54387
|
+
-----------------------
|
54388
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54389
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54390
|
+
-----------------
|
54391
|
+
XlsxTest: test_sa
|
54392
|
+
-----------------
|
54393
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54394
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54395
|
+
----------------------
|
54396
|
+
XlsxTest: test_extreme
|
54397
|
+
----------------------
|
54398
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54399
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54400
|
+
--------------------------
|
54401
|
+
XlsxTest: test_empty_model
|
54402
|
+
--------------------------
|
54403
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "posts"[0m
|
54404
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54405
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54406
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54407
|
+
--------------------
|
54408
|
+
XlsxTest: test_model
|
54409
|
+
--------------------
|
54410
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54411
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54412
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54413
|
+
------------------------------------
|
54414
|
+
SpreadsheetsControllerTest: test_csv
|
54415
|
+
------------------------------------
|
54416
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54417
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54418
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54419
|
+
Processing by SpreadsheetsController#csv as HTML
|
54420
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54426
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54427
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54428
|
+
-------------------------------------
|
54429
|
+
SpreadsheetsControllerTest: test_xlsx
|
54430
|
+
-------------------------------------
|
54431
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54432
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54433
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54434
|
+
Processing by SpreadsheetsController#xlsx as HTML
|
54435
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54447
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54448
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54449
|
+
------------------------------------
|
54450
|
+
SpreadsheetsControllerTest: test_ods
|
54451
|
+
------------------------------------
|
54452
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54453
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54454
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54455
|
+
Processing by SpreadsheetsController#ods as HTML
|
54456
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54462
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54463
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54464
|
+
--------------------
|
54465
|
+
PostTest: test_empty
|
54466
|
+
--------------------
|
54467
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54468
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54469
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54470
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54471
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54472
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54473
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54474
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54475
|
+
-------------------
|
54476
|
+
PostTest: test_xlsx
|
54477
|
+
-------------------
|
54478
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54479
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54480
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54481
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54482
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54483
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54484
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54485
|
+
------------------
|
54486
|
+
PostTest: test_csv
|
54487
|
+
------------------
|
54488
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54489
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54490
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54491
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54492
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54493
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54494
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54495
|
+
------------------
|
54496
|
+
PostTest: test_ods
|
54497
|
+
------------------
|
54498
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54499
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54500
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54501
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54502
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54503
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54504
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54505
|
+
----------------
|
54506
|
+
OdsTest: test_sa
|
54507
|
+
----------------
|
54508
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54509
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54510
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54511
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54512
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54514
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54515
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54517
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54518
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54520
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54521
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54523
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54524
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54526
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54527
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54529
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54530
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54532
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54533
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54535
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54536
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54538
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54539
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54541
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54542
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54543
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54544
|
+
-------------------
|
54545
|
+
OdsTest: test_model
|
54546
|
+
-------------------
|
54547
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54548
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54549
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54550
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54551
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54553
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54554
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54556
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54557
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54559
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54560
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54562
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54563
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54565
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54566
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54568
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54569
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54571
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54572
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54574
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54575
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54577
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54578
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54580
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54581
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54582
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54583
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54584
|
+
---------------------
|
54585
|
+
OdsTest: test_options
|
54586
|
+
---------------------
|
54587
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54588
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54589
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54590
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54591
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54593
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54594
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54596
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54597
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54599
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54600
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54602
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54603
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54605
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54606
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54608
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54609
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54611
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54612
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54614
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54615
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54617
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54618
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54620
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54621
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54622
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54623
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54624
|
+
-------------------------
|
54625
|
+
OdsTest: test_empty_model
|
54626
|
+
-------------------------
|
54627
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54628
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54629
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54630
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54631
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54633
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54634
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54636
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54637
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54639
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54640
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54642
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54643
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54645
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54646
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54648
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54649
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54651
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54652
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54654
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54655
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54657
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54658
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54660
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
54661
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54662
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54663
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54664
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54665
|
+
----------------------
|
54666
|
+
OdsTest: test_empty_sa
|
54667
|
+
----------------------
|
54668
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54669
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54670
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54671
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54672
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54674
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54675
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54677
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54678
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54680
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54681
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54683
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54684
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54686
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54687
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54689
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54690
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54692
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54693
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54695
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54696
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54698
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54699
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54701
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54702
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54703
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54704
|
+
--------------------------------
|
54705
|
+
BadPlainRubyObjectTest: test_csv
|
54706
|
+
--------------------------------
|
54707
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54708
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54709
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54710
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54711
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54712
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54713
|
+
--------------------------------
|
54714
|
+
BadPlainRubyObjectTest: test_ods
|
54715
|
+
--------------------------------
|
54716
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54717
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54718
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54719
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54720
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54721
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54722
|
+
---------------------------------
|
54723
|
+
BadPlainRubyObjectTest: test_xlsx
|
54724
|
+
---------------------------------
|
54725
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54726
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54727
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54728
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54729
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54730
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54731
|
+
-----------------------------
|
54732
|
+
PlainRubyObjectTest: test_csv
|
54733
|
+
-----------------------------
|
54734
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54735
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54736
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54737
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54738
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54739
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54740
|
+
-----------------------------
|
54741
|
+
PlainRubyObjectTest: test_ods
|
54742
|
+
-----------------------------
|
54743
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54744
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54745
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54746
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54747
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54748
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54749
|
+
------------------------------
|
54750
|
+
PlainRubyObjectTest: test_xlsx
|
54751
|
+
------------------------------
|
54752
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54753
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54754
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54755
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54756
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54757
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54758
|
+
---------------------------------------------------------
|
54759
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
|
54760
|
+
---------------------------------------------------------
|
54761
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54762
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54763
|
+
---------------------------------------------------------
|
54764
|
+
SpreadsheetArchitectUtilsTest: test_constants_dont_change
|
54765
|
+
---------------------------------------------------------
|
54766
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54767
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54768
|
+
-------------------------------------------------
|
54769
|
+
SpreadsheetArchitectUtilsTest: test_get_cell_data
|
54770
|
+
-------------------------------------------------
|
54771
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54772
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54773
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54774
|
+
-----------------------------------------------
|
54775
|
+
SpreadsheetArchitectUtilsTest: test_get_options
|
54776
|
+
-----------------------------------------------
|
54777
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54778
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54779
|
+
------------------------------------------------
|
54780
|
+
SpreadsheetArchitectUtilsTest: test_str_humanize
|
54781
|
+
------------------------------------------------
|
54782
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54783
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54784
|
+
-----------------------------------------------------------
|
54785
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
|
54786
|
+
-----------------------------------------------------------
|
54787
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54788
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54789
|
+
--------------------------------------------
|
54790
|
+
SpreadsheetArchitectUtilsTest: test_get_type
|
54791
|
+
--------------------------------------------
|
54792
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54793
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54794
|
+
-------------------------------
|
54795
|
+
ActiveModelObjectTest: test_ods
|
54796
|
+
-------------------------------
|
54797
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54798
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54799
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54800
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54801
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54802
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54803
|
+
-------------------------------
|
54804
|
+
ActiveModelObjectTest: test_csv
|
54805
|
+
-------------------------------
|
54806
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54807
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54808
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54809
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54810
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54811
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54812
|
+
--------------------------------
|
54813
|
+
ActiveModelObjectTest: test_xlsx
|
54814
|
+
--------------------------------
|
54815
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54816
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54817
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54818
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54819
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54820
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54821
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
54822
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54823
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
54824
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54825
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54826
|
+
-----------------------------
|
54827
|
+
PlainRubyObjectTest: test_ods
|
54828
|
+
-----------------------------
|
54829
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54830
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54831
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54832
|
+
[1m[35m (0.3ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54833
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54834
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54835
|
+
------------------------------
|
54836
|
+
PlainRubyObjectTest: test_xlsx
|
54837
|
+
------------------------------
|
54838
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54839
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54840
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54841
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54842
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54843
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54844
|
+
-----------------------------
|
54845
|
+
PlainRubyObjectTest: test_csv
|
54846
|
+
-----------------------------
|
54847
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54848
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54849
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54850
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54851
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54852
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54853
|
+
------------------------------------
|
54854
|
+
SpreadsheetsControllerTest: test_csv
|
54855
|
+
------------------------------------
|
54856
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54857
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54858
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54859
|
+
Processing by SpreadsheetsController#csv as HTML
|
54860
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54866
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54867
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54868
|
+
------------------------------------
|
54869
|
+
SpreadsheetsControllerTest: test_ods
|
54870
|
+
------------------------------------
|
54871
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54872
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54873
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54874
|
+
Processing by SpreadsheetsController#ods as HTML
|
54875
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54881
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54882
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54883
|
+
-------------------------------------
|
54884
|
+
SpreadsheetsControllerTest: test_xlsx
|
54885
|
+
-------------------------------------
|
54886
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54887
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54888
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54889
|
+
Processing by SpreadsheetsController#xlsx as HTML
|
54890
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54902
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
54903
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54904
|
+
-------------------------------
|
54905
|
+
ActiveModelObjectTest: test_csv
|
54906
|
+
-------------------------------
|
54907
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54908
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54909
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54910
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54911
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54912
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54913
|
+
-------------------------------
|
54914
|
+
ActiveModelObjectTest: test_ods
|
54915
|
+
-------------------------------
|
54916
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54917
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54918
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54919
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54920
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54921
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54922
|
+
--------------------------------
|
54923
|
+
ActiveModelObjectTest: test_xlsx
|
54924
|
+
--------------------------------
|
54925
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54926
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54927
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54928
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54929
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54930
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54931
|
+
--------------------------------
|
54932
|
+
BadPlainRubyObjectTest: test_csv
|
54933
|
+
--------------------------------
|
54934
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54935
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54936
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54937
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54938
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54939
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54940
|
+
--------------------------------
|
54941
|
+
BadPlainRubyObjectTest: test_ods
|
54942
|
+
--------------------------------
|
54943
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54944
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54945
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54946
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54947
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54948
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54949
|
+
---------------------------------
|
54950
|
+
BadPlainRubyObjectTest: test_xlsx
|
54951
|
+
---------------------------------
|
54952
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54953
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54954
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54955
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54956
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
54957
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
54958
|
+
-------------------
|
54959
|
+
OdsTest: test_model
|
54960
|
+
-------------------
|
54961
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54962
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
54963
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
54964
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54965
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54967
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54968
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54970
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54971
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54973
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54974
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54976
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54977
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54979
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54980
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54982
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54983
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54985
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54986
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54988
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54989
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54991
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
54992
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
54994
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
54995
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
54996
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
54997
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54998
|
+
----------------
|
54999
|
+
OdsTest: test_sa
|
55000
|
+
----------------
|
55001
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55002
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55003
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55004
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55005
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55007
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55008
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55010
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55011
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55013
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55014
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55016
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55017
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55019
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55020
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55022
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55023
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55025
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55026
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55028
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55029
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55031
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55032
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55034
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55035
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55036
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55037
|
+
---------------------
|
55038
|
+
OdsTest: test_options
|
55039
|
+
---------------------
|
55040
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55041
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55042
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55043
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55044
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55046
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55047
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55049
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55050
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55052
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55053
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55055
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55056
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55058
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55059
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55061
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55062
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55064
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55065
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55067
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55068
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55070
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55071
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55073
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55074
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55075
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55076
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55077
|
+
-------------------------
|
55078
|
+
OdsTest: test_empty_model
|
55079
|
+
-------------------------
|
55080
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55081
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55082
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55083
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55084
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55086
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55087
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55089
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55090
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55092
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55093
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55095
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55096
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55098
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55099
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55101
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55102
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55104
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55105
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55107
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55108
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55110
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55111
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55113
|
+
[1m[35mSQL (0.0ms)[0m [1m[31mDELETE FROM "posts"[0m
|
55114
|
+
[1m[36mCustomPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55115
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55116
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55117
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55118
|
+
----------------------
|
55119
|
+
OdsTest: test_empty_sa
|
55120
|
+
----------------------
|
55121
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55122
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55123
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55124
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55125
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55127
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55128
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55130
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55131
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55133
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55134
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55136
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55137
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55139
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55140
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55142
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55143
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55145
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55146
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55148
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55149
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55151
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_2[0m
|
55152
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "posts" ("name", "content", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_2[0m
|
55154
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55155
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55157
|
+
------------------------------------------
|
55158
|
+
CustomPostTest: test_constants_dont_change
|
55159
|
+
------------------------------------------
|
55160
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55161
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55162
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55163
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55164
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55165
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55166
|
+
--------------------------
|
55167
|
+
CustomPostTest: test_empty
|
55168
|
+
--------------------------
|
55169
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55170
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55171
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55172
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55173
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55174
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55175
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55176
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
55177
|
+
------------------------
|
55178
|
+
CustomPostTest: test_ods
|
55179
|
+
------------------------
|
55180
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55181
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55182
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55183
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55184
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55185
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55186
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55187
|
+
-------------------------
|
55188
|
+
CustomPostTest: test_xlsx
|
55189
|
+
-------------------------
|
55190
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55191
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55192
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55193
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55194
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55195
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55196
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55197
|
+
------------------------
|
55198
|
+
CustomPostTest: test_csv
|
55199
|
+
------------------------
|
55200
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55201
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55202
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55203
|
+
[1m[36mCustomPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55204
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55205
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55206
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55207
|
+
--------------------------
|
55208
|
+
XlsxTest: test_empty_model
|
55209
|
+
--------------------------
|
55210
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
55211
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55212
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55213
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
55214
|
+
----------------------
|
55215
|
+
XlsxTest: test_extreme
|
55216
|
+
----------------------
|
55217
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55218
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55219
|
+
--------------------
|
55220
|
+
XlsxTest: test_model
|
55221
|
+
--------------------
|
55222
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55223
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55224
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55225
|
+
-----------------
|
55226
|
+
XlsxTest: test_sa
|
55227
|
+
-----------------
|
55228
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55229
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55230
|
+
-----------------------
|
55231
|
+
XlsxTest: test_empty_sa
|
55232
|
+
-----------------------
|
55233
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55234
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55235
|
+
---------------------
|
55236
|
+
CsvTest: test_options
|
55237
|
+
---------------------
|
55238
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55239
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55240
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55241
|
+
-------------------------
|
55242
|
+
CsvTest: test_empty_model
|
55243
|
+
-------------------------
|
55244
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "posts"[0m
|
55245
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55246
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
55247
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55248
|
+
----------------------
|
55249
|
+
CsvTest: test_empty_sa
|
55250
|
+
----------------------
|
55251
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55252
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55253
|
+
-------------------
|
55254
|
+
CsvTest: test_model
|
55255
|
+
-------------------
|
55256
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55257
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55258
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55259
|
+
----------------
|
55260
|
+
CsvTest: test_sa
|
55261
|
+
----------------
|
55262
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55263
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55264
|
+
---------------------------------------------------------
|
55265
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_ods
|
55266
|
+
---------------------------------------------------------
|
55267
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55268
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55269
|
+
---------------------------------------------------------
|
55270
|
+
SpreadsheetArchitectUtilsTest: test_constants_dont_change
|
55271
|
+
---------------------------------------------------------
|
55272
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55273
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55274
|
+
-----------------------------------------------------------
|
55275
|
+
SpreadsheetArchitectUtilsTest: test_convert_styles_to_axlsx
|
55276
|
+
-----------------------------------------------------------
|
55277
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55278
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
55279
|
+
-----------------------------------------------
|
55280
|
+
SpreadsheetArchitectUtilsTest: test_get_options
|
55281
|
+
-----------------------------------------------
|
55282
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55283
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
55284
|
+
------------------------------------------------
|
55285
|
+
SpreadsheetArchitectUtilsTest: test_str_humanize
|
55286
|
+
------------------------------------------------
|
55287
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55288
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55289
|
+
--------------------------------------------
|
55290
|
+
SpreadsheetArchitectUtilsTest: test_get_type
|
55291
|
+
--------------------------------------------
|
55292
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55293
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55294
|
+
-------------------------------------------------
|
55295
|
+
SpreadsheetArchitectUtilsTest: test_get_cell_data
|
55296
|
+
-------------------------------------------------
|
55297
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55298
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55299
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
55300
|
+
--------------------
|
55301
|
+
PostTest: test_empty
|
55302
|
+
--------------------
|
55303
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55304
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55305
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55306
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55307
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55308
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55309
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55310
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55311
|
+
------------------
|
55312
|
+
PostTest: test_ods
|
55313
|
+
------------------
|
55314
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55315
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55316
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55317
|
+
[1m[36mPost Load (0.1ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55318
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55319
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55320
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55321
|
+
------------------
|
55322
|
+
PostTest: test_csv
|
55323
|
+
------------------
|
55324
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55325
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55326
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55327
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55328
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55329
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
55330
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
55331
|
+
-------------------
|
55332
|
+
PostTest: test_xlsx
|
55333
|
+
-------------------
|
55334
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55335
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55336
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
55337
|
+
[1m[36mPost Load (0.0ms)[0m [1m[34mSELECT "posts".* FROM "posts"[0m
|
55338
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
55339
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|