File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,7 +191,8 @@ TEST(CloudSQLTests, StoragePersistence) {
191191 schema.add_column (" data" , ValueType::TYPE_TEXT);
192192 {
193193 auto disk_manager = std::make_unique<StorageManager>(" ./test_data" );
194- auto sm = std::make_unique<BufferPoolManager>(cloudsql::config::Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager);
194+ auto sm = std::make_unique<BufferPoolManager>(
195+ cloudsql::config::Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager);
195196 {
196197 HeapTable table (filename, *sm, schema);
197198 static_cast <void >(table.create ());
@@ -201,7 +202,8 @@ TEST(CloudSQLTests, StoragePersistence) {
201202 }
202203 {
203204 auto disk_manager = std::make_unique<StorageManager>(" ./test_data" );
204- auto sm = std::make_unique<BufferPoolManager>(cloudsql::config::Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager);
205+ auto sm = std::make_unique<BufferPoolManager>(
206+ cloudsql::config::Config::DEFAULT_BUFFER_POOL_SIZE, *disk_manager);
205207 {
206208 HeapTable table (filename, *sm, schema);
207209 auto iter = table.scan ();
You can’t perform that action at this time.
0 commit comments