4

我们正在升级到 RavenDB 2.5 并遇到了一个特殊的情况。我们的一个单元测试突然失败了,而且没有明显的原因。

以下是一些重现该问题的简单代码:

class Foo
{
    public Guid Id { get; private set; }
    public DateTime? ExpirationTime { get; set; }

    public Foo()
    {
        Id = Guid.NewGuid();
        ExpirationTime = null;
    }
}

var documentStore = new EmbeddableDocumentStore
    {
        RunInMemory = true,
        Conventions = { DefaultQueryingConsistency = ConsistencyOptions.QueryYourWrites }
    };
documentStore.Initialize();

using (var session = documentStore.OpenSession())
{
    session.Store(new Foo());
    session.Store(new Foo());
    session.SaveChanges();
}

所以,现在我们在数据库中有两个文档,它们的 ExpirationTime = null。这是在数据库中查询这些文档时发生的情况:

using (var session = documentStore.OpenSession())
{
    var bar = session.Query<Foo>().Where(foo => foo.ExpirationTime == null).ToList();
    Console.WriteLine("1. Number of documents: {0}", bar.Count);

    bar = session.Query<Foo>().Where(foo => foo.ExpirationTime == null || 
                                     foo.ExpirationTime > DateTime.Now).ToList();
    Console.WriteLine("2. Number of documents: {0}", bar.Count);

    bar = session.Query<Foo>().Where(foo => foo.ExpirationTime == null | 
                                     foo.ExpirationTime > DateTime.Now).ToList();
    Console.WriteLine("3. Number of documents: {0}", bar.Count);        
}

这些查询的输出如下:

1. Number of documents: 2
2. Number of documents: 0
3. Number of documents: 2

这对我来说似乎不正确......我也希望数字 2. 给出 2。

我对 RavenDB 服务器运行了相同的查询,并得到了预期的结果,所以这似乎是 EmbeddableDocumentStore 的问题。

在对此进行测试时,我还发现在其他情况下使用逻辑或运算符时会出现一些奇怪的行为。有时 usingfoo.HasValue会给出与 不同的结果foo != null,但这可能与同一问题有关。

还有其他人遇到过这个问题吗?已知错误?

4

1 回答 1

3

这是 RavenDB 中与空字段排序相关的错误。在下一个版本中修复

于 2013-08-07T12:25:46.440 回答