Igor Mukhin

Results 16 comments of Igor Mukhin

The bug was introduced in the commit: 8a232d422c15b1d15e757aed1282edc4754c1c9e File: `ExpressionBuilderVisitor.java` Method: `public void visit(CoalesceExpression expression) {` The line `Class coalesceType = type[0];` was introduced, which caches the wrong type. The...

I think the problematic method should look like this: ```java @Override public void visit(CoalesceExpression expression) { List expressions = new ArrayList(); List>(); // Create the Expression for each scalar expression...

Workaround for those who needs to use the newer version of EL -- flip the expression so that the previous type is the correct type. ```java String jsql = "select...

I also reported the bug here https://bugs.eclipse.org/bugs/show_bug.cgi?id=575107

I have something like this. ``` $("#panel").append(renderComponentNode()); ``` where ``` function renderComponentNode() { var $node = $(""); // ... here much code for creating the contents inside of $node //...

@ProgerXP I had to redesign my code a little bit to get it working, but still I think that FileDrop should not rely on that it has access to the...

I just created a sample project that reproduces the issue: https://github.com/igormukhin/eclipselink-issue-1717-test

If this PR will be approved, the same thing should be done on the 3.0.x branch