@ -31,7 +31,7 @@ class VersionBuilderTest : public testing::Test {
ioptions_ ( options_ ) ,
mutable_cf_options_ ( options_ ) ,
vstorage_ ( & icmp_ , ucmp_ , options_ . num_levels , kCompactionStyleLevel ,
nullptr ) ,
nullptr , false ) ,
file_num_ ( 1 ) {
mutable_cf_options_ . RefreshDerivedOptions ( ioptions_ ) ;
size_being_compacted_ . resize ( options_ . num_levels ) ;
@ -123,7 +123,7 @@ TEST_F(VersionBuilderTest, ApplyAndSaveTo) {
VersionBuilder version_builder ( env_options , nullptr , & vstorage_ ) ;
VersionStorageInfo new_vstorage ( & icmp_ , ucmp_ , options_ . num_levels ,
kCompactionStyleLevel , nullptr ) ;
kCompactionStyleLevel , nullptr , false ) ;
version_builder . Apply ( & version_edit ) ;
version_builder . SaveTo ( & new_vstorage ) ;
@ -158,7 +158,7 @@ TEST_F(VersionBuilderTest, ApplyAndSaveToDynamic) {
VersionBuilder version_builder ( env_options , nullptr , & vstorage_ ) ;
VersionStorageInfo new_vstorage ( & icmp_ , ucmp_ , options_ . num_levels ,
kCompactionStyleLevel , nullptr ) ;
kCompactionStyleLevel , nullptr , false ) ;
version_builder . Apply ( & version_edit ) ;
version_builder . SaveTo ( & new_vstorage ) ;
@ -198,7 +198,7 @@ TEST_F(VersionBuilderTest, ApplyAndSaveToDynamic2) {
VersionBuilder version_builder ( env_options , nullptr , & vstorage_ ) ;
VersionStorageInfo new_vstorage ( & icmp_ , ucmp_ , options_ . num_levels ,
kCompactionStyleLevel , nullptr ) ;
kCompactionStyleLevel , nullptr , false ) ;
version_builder . Apply ( & version_edit ) ;
version_builder . SaveTo ( & new_vstorage ) ;
@ -229,7 +229,7 @@ TEST_F(VersionBuilderTest, ApplyMultipleAndSaveTo) {
VersionBuilder version_builder ( env_options , nullptr , & vstorage_ ) ;
VersionStorageInfo new_vstorage ( & icmp_ , ucmp_ , options_ . num_levels ,
kCompactionStyleLevel , nullptr ) ;
kCompactionStyleLevel , nullptr , false ) ;
version_builder . Apply ( & version_edit ) ;
version_builder . SaveTo ( & new_vstorage ) ;
@ -244,7 +244,7 @@ TEST_F(VersionBuilderTest, ApplyDeleteAndSaveTo) {
EnvOptions env_options ;
VersionBuilder version_builder ( env_options , nullptr , & vstorage_ ) ;
VersionStorageInfo new_vstorage ( & icmp_ , ucmp_ , options_ . num_levels ,
kCompactionStyleLevel , nullptr ) ;
kCompactionStyleLevel , nullptr , false ) ;
VersionEdit version_edit ;
version_edit . AddFile ( 2 , 666 , 0 , 100U , GetInternalKey ( " 301 " ) ,