From 8e43359e80f65d58f1719bb99b6f66df016f13f3 Mon Sep 17 00:00:00 2001 From: Jan Christoph Uhde Date: Mon, 7 Oct 2019 08:43:55 +0200 Subject: [PATCH] fix type of selectivity estimate --- src/ArangoDB.Client/Data/EnsureIndexResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ArangoDB.Client/Data/EnsureIndexResult.cs b/src/ArangoDB.Client/Data/EnsureIndexResult.cs index 77dcf48..4faffd3 100644 --- a/src/ArangoDB.Client/Data/EnsureIndexResult.cs +++ b/src/ArangoDB.Client/Data/EnsureIndexResult.cs @@ -32,6 +32,6 @@ public class EnsureIndexResult : BaseResult public List Fields { get; set; } - public int? SelectivityEstimate { get; set; } + public double? SelectivityEstimate { get; set; } } }