This fails:

var results = container.Query<SomeClass>(s =>
    s.Field == value && s.AnEnumField != SomeEnum.AnEnumValue
);
Assert.AreEqual(1, results.Count);

But this doesn't:

Predicate<SomeClass> matches = s => 
    s.Field == value && s.AnEnumField != SomeEnum.AnEnumValue;
var results = container.Query<SomeClass>(s => matches(s));
Assert.AreEqual(1, results.Count);

The different in the tests clearly demonstrates the issue happens only when db4o does the expression transformation, as calling a method prevents that. The value checked in the test, is the exact value (no case differences), as the test inserts it first.

Any special conditions where the db4o transformations has bugs with those queries? maybe with .net enums?


I have narrowed it down, and my example above didn't include the troublesome bit. Doesn't have to do with the enum field, but with "value" in the above expression.

Specifically the issue happens when the query includes someInstance.Field for the value, like:

var results =
container.Query<SomeClass>(s =>
   s.Field == someInstance.Field && s.AnEnumField != SomeEnum.AnEnumValue
); 
Assert.AreEqual(1, results.Count);
link|improve this question

If you are sure it's a bug you could report it in their forums. – CodeInChaos Mar 5 '11 at 16:03
Thanks, I wasn't submitting it as a bug as I didn't have an isolated reprod of the bug. Reaching that point, required to figure out the conditions that caused the issue / added in an answer. I posted the bug with the full reprod in here: tracker.db4o.com/browse/COR-2158. – eglasius Mar 6 '11 at 5:38
feedback

2 Answers

Well I didn't tried out your code, but to me that looks like a bug, probably in the native-query optimizer. The first one it a typical native query which should be optimization. And I guess that there something goes wrong. The second query probably cannot be optimized, because is a unusual way to write a query. In that case db4o just calls the closure/delegate and therefore produces the right result.

To work around this bug I would recommend you to use LINQ. Include the 'Db4objects.Db4o.Linq.dll'-assembly in your project, add the 'Db4objects.Db4o.Linq'-namespace and write the queries. For example like this:

var result = from SomeClass s in container
               where s.Field == value && s.AnEnumField != SomeEnum.AnEnumValue
               select s;
Assert.AreEqual(1, results.Count);

I would recommend you anyway to use LINQ instead of native queries. LINQ is much more powerful and a 'standard'-API.

For the original issue: Maybe post this as a small example program as an bug in the db4o-bugtracker. (Maybe you have register here to get an account for the bugtracker, I'm not sure about that.)

link|improve this answer
Hi Gamlor thanks for the answer. The native query optimization is what I was referring about with the expression transformation, so the second version was done specifically to confirm the issue only happens when the optimizations takes place. I already have a workaround in place, which was to move to SODA / which is the best option, as it's still too easy to get unoptimized queries and thus a serious performance impact on the applications when using both native queries and the LINQ provider. I guess I was being lazy by not doing the last step / reprod in a separate project and submit the bug. – eglasius Mar 5 '11 at 17:10
fyi you're right this bug doesn't happen in the LINQ version (confirmed with a quick test). – eglasius Mar 5 '11 at 17:19
As I feared, I can't get it to reproduce in a separate project. I'm not so worried about the specific bit of code that I fixed, but what could cause such issue / to make sure we don't have the problem elsewhere ... since it's a pain, because it' a silent error. – eglasius Mar 5 '11 at 18:24
I got to reproduce it, but after narrowing down the issue / kind of the reason for the question :). See my answer. – eglasius Mar 5 '11 at 20:49
feedback
up vote 0 down vote accepted

I finally got to reproduce it in an isolated project (after narrowing it down more in the main project).

Conditions under which this particular bug occur are very specific. Given the last sample code I posted in the question:

  • SomeClass is a subclass of another class. Field is defined in the base class
  • someInstance in the sample code, must be a subclass of the same base class
link|improve this answer
If there's no report of this on tracker.db4o.com please go ahead and create one (it's public) – German Apr 9 '11 at 19:57
@German I did near the time I posted this answer, link in the comments of the question. – eglasius Apr 11 '11 at 1:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.