aboutsummaryrefslogtreecommitdiffstats
path: root/log_db/tests/integration.rs
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2024-11-21 15:40:45 +0200
committerJan Tuomi <jan@jantuomi.fi>2024-11-21 15:40:45 +0200
commit1c3e5f3c1735545e5d7fe45c1fce36874ecc7949 (patch)
treea0059dde525367bc2e643c4e00f7fde5b9d1266c /log_db/tests/integration.rs
parent1de933f892691780d60c5148c456245feb026a90 (diff)
Remove memtable_capacity
Diffstat (limited to 'log_db/tests/integration.rs')
-rw-r--r--log_db/tests/integration.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/log_db/tests/integration.rs b/log_db/tests/integration.rs
index fa81542..e5befa7 100644
--- a/log_db/tests/integration.rs
+++ b/log_db/tests/integration.rs
@@ -85,7 +85,6 @@ fn test_upsert_and_get_without_memtable() {
let data_dir = tmp_dir();
let mut db = DB::configure()
.data_dir(&data_dir)
- .memtable_capacity(0)
.fields(&[
(Field::Id, RecordField::int()),
(Field::Name, RecordField::string().nullable()),
@@ -371,7 +370,6 @@ fn test_log_is_rotated_when_capacity_reached() {
let mut db = DB::configure()
.data_dir(&data_dir)
- .memtable_capacity(0) // disable memtables
.segment_size(10 * record_len) // small log segment size
.fields(&[
(Field::Id, RecordField::int()),