Repository: ignite Updated Branches: refs/heads/master 18aaee039 -> ca47e3a37
IGNITE-10332 Added missing properties Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ca47e3a3 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ca47e3a3 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ca47e3a3 Branch: refs/heads/master Commit: ca47e3a3731d55b53f10ddab75ff2edd56417eff Parents: 18aaee0 Author: Alexey Goncharuk <[email protected]> Authored: Fri Nov 30 16:17:27 2018 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Fri Nov 30 16:18:25 2018 +0300 ---------------------------------------------------------------------- .../ApiParity/CacheConfigurationParityTest.cs | 4 +++- .../ApiParity/DataStorageMetricsParityTest.cs | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ca47e3a3/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/CacheConfigurationParityTest.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/CacheConfigurationParityTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/CacheConfigurationParityTest.cs index 32509c2..8031494 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/CacheConfigurationParityTest.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/CacheConfigurationParityTest.cs @@ -60,7 +60,9 @@ namespace Apache.Ignite.Core.Tests.ApiParity "EvictionPolicyFactory", // IGNITE-6649, "isSqlOnheapCacheEnabled", // IGNITE-7379, "SqlOnheapCacheMaxSize", // IGNITE-7379, - "isEventsDisabled" // IGNITE-7346 + "isEventsDisabled", // IGNITE-7346 + "DiskPageCompression", // IGNITE-10332 + "DiskPageCompressionLevel" // IGNITE-10332 }; /// <summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/ca47e3a3/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/DataStorageMetricsParityTest.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/DataStorageMetricsParityTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/DataStorageMetricsParityTest.cs index 58c974e..c24df71 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/DataStorageMetricsParityTest.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ApiParity/DataStorageMetricsParityTest.cs @@ -41,7 +41,10 @@ namespace Apache.Ignite.Core.Tests.ApiParity "TotalAllocatedSize", "UsedCheckpointBufferPages", "UsedCheckpointBufferSize", - "CheckpointBufferSize" + "CheckpointBufferSize", + // IGNITE-10332 + "StorageSize", + "SparseStorageSize" }; /// <summary>
