Skip to content

Commit

Permalink
Fix failing tests for append tree and mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulimo committed Jan 19, 2025
1 parent c5c24d6 commit 31726c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public async Task CheckpointAsync<TMetadata>(IStateSerializerCheckpointWriter ch

return;
}
throw new NotSupportedException();
}

public async Task InitializeAsync<TMetadata>(IStateSerializerInitializeReader reader, StateClientMetadata<TMetadata> metadata) where TMetadata : IStorageMetadata
Expand Down Expand Up @@ -96,7 +95,6 @@ public async Task InitializeAsync<TMetadata>(IStateSerializerInitializeReader re

return;
}
throw new NotSupportedException();
}

public IBPlusTreeNode Deserialize(IMemoryOwner<byte> bytes, int length, StateSerializeOptions stateSerializeOptions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class FlowtideTestStream : IAsyncDisposable

public SqlPlanBuilder SqlPlanBuilder => sqlPlanBuilder;

public int CachePageCount { get; set; } = 0;
public int CachePageCount { get; set; } = 1000;

public Watermark? LastWatermark => _lastWatermark;

Expand Down Expand Up @@ -225,7 +225,6 @@ public async Task StartStream(
SerializeOptions = stateSerializeOptions,
PersistentStorage = _persistentStorage,
DefaultBPlusTreePageSize = pageSize,
//DefaultBPlusTreePageSizeBytes = 1,
TemporaryStorageOptions = new Storage.FileCacheOptions()
{
DirectoryPath = $"./data/tempFiles/{testName}/tmp"
Expand Down

0 comments on commit 31726c1

Please sign in to comment.