Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified SQLBench/.vs/SQLBench/v15/Server/sqlite3/storage.ide-shm
Binary file not shown.
Binary file modified SQLBench/.vs/SQLBench/v15/Server/sqlite3/storage.ide-wal
Binary file not shown.
6 changes: 5 additions & 1 deletion SQLBench/DBTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ public void ReadBlobTest(out double TotalReadBlob)
}
public void WriteBlobTest(out double myBlobWrite)
{
byte[] numArray1 = new byte[16384]; //crate byte array
const int size = 100 * 1024; // 100k was 16k
byte[] numArray1 = new byte[size]; //create byte array
var random = new Random();
random.NextBytes(numArray1); // randomize the array so compression doesn't come into play.

Stopwatch BlobWrite = new Stopwatch(); //Create Timer
//open connection
SqlConnection connection = new SqlConnection(connstr); //create SQL Connection
Expand Down
6 changes: 3 additions & 3 deletions SQLBench/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft: CSS SQL Networking Team")]
[assembly: AssemblyProduct("SQLBench.exe")]
[assembly: AssemblyCopyright("Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021")]
[assembly: AssemblyCopyright("Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.239.0")]
[assembly: AssemblyFileVersion("1.0.239.0")]
[assembly: AssemblyVersion("1.0.240.0")]
[assembly: AssemblyFileVersion("1.0.240.0")]