Skip to content

Commit 9fab260

Browse files
committed
Fix for writing disk perf
1 parent 5c0dcde commit 9fab260

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("1.7.3")]
33-
[assembly: AssemblyFileVersion("1.7.3")]
32+
[assembly: AssemblyVersion("1.7.4")]
33+
[assembly: AssemblyFileVersion("1.7.4")]

WorkloadTools/Consumer/WorkloadFile/WorkloadFileWriterConsumer.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,13 @@ INSERT INTO DiskPerf (
132132
write_bytes,
133133
write_latency_ms,
134134
writes,
135-
write_bytes
135+
write_bytes,
136+
cum_read_latency_ms,
137+
cum_reads,
138+
cum_read_bytes,
139+
cum_write_latency_ms,
140+
cum_writes,
141+
cum_write_bytes
136142
)
137143
VALUES (
138144
$row_id,

0 commit comments

Comments
 (0)