Hello,

I am attempting an upgrade to 7.4.0, besides a decent amount of thread leak 
warnings i suddenly get, there are some strange failing tests, of which one is 
one of four DocTransformer plugins. That plugin is really simple, it just 
transformers integer or long numerics into a binary string of 0 and 1.

This is the test:

    assertQ( req("q", "*:*", "indent", "true", "fl", "id,minhash:[binstr]"), 
        "//*[@numFound='" + max + "']",
        
"//str[.='0000000000000000000000000000000000000000000000000000000000000000']",
        
"//str[.='0000000000000000000000000000000000000000000000000000000000000001']",
        
"//str[.='0000000000000000000000000000000000000000000000000000000000000010']",
        
"//str[.='0000000000000000000000000000000000000000000000000000000000000011']");
  }

Changing the fl parameter into "*,minhash:[binstr]" solves the problem, the 
test passes.

But why? I couldn't find anything that resembles this change in the changelog. 
A bug? Something i am missing?

Many thanks,
Markus

Reply via email to