Closed GoogleCodeExporter closed 8 years ago
I'm not sure if this problem can be solved in H2. The NullPointerException
occurs in
ValueInt, line 62:
return staticCache[i];
So 'staticCache' must be null. However, this field is static and initialized
when
loading the class:
private static ValueInt[] staticCache;
private static ValueInt[] dynamicCache;
static {
staticCache = new ValueInt[STATIC_SIZE];
...
}
So in theory this field can never become null. However, for some unknown
reason, it
does become null. I don't know how this could happen, and I don't know how to
protect
against it. Could this be a problem of how Tomcat loads / unloads the class?
Original comment by thomas.t...@gmail.com
on 10 Nov 2008 at 5:53
This should be fixed in version 1.1.104, could you try again please?
Original comment by thomas.t...@gmail.com
on 30 Nov 2008 at 4:15
Original issue reported on code.google.com by
jupl...@gmail.com
on 10 Nov 2008 at 9:07