Radek Felcman

Results 19 issues of Radek Felcman

This is major change in OracleNoSQL platform. It changes OracleNoSQL driver/API from `com.oracle.kv:oracle-nosql-client` into new OracleNoSQL SDK `com.oracle.nosql.sdk:nosqldriver`. New platform should be enabled by following _persistence.xml_ properties: ``` ``` New...

There is inconsistency between `buildRevision` from `version.properties` and git commit ids in the releases due release job design. Possible solution is control lines https://github.com/eclipse-ee4j/eclipselink/blob/3.0/etc/jenkins/includes/maven.incl.sh#L95-L96 by some job parameter.

There are intermittent test failures in JPA WDF. It seems, that it depends on order how these tests are executed. It happens in 3.0 branch. It happens with `org.eclipse.persistence.testing.tests.wdf.jpa1.entitymanager.TestFlush(test-jpa-wdf).testRelationshipToNew org.eclipse.persistence.testing.tests.wdf.jpa1.entitymanager.TestGetReference(test-jpa-wdf).testPersist...

Based on #1480 there should be another fix/improvement implemented. Line 1607 `statement = nativeConnection.prepareStatement(call.getSQLString(), Statement.RETURN_GENERATED_KEYS);` in `org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor` should contain instead of `Statement.RETURN_GENERATED_KEYS` an array of column names indicating the columns...

Refactor EL to allow usage booth ASM implementations (standard provided by `org.ow2.asm` and internal `org.eclipse.persistence.asm`). Main reason behind this enhancement is quickly adopt new Java version as Java release cycle...

This enhancement will enable to use in EclipseLink booth ASM implementations: - Standard provided by `org.ow2.asm` - EclipseLink specific `org.eclipse.persistence.asm` By default EclipseLink will prefer ASM from `org.ow2.asm`, but there...

enhancement

Fixes #1506 . This change will fix the ConcurrentModificationException of the attributeExpression list, when running the same (batch)query with different entity managers. Signed-off-by: Radek Felcman

This is new feature request to make OracleChangeNotificationListener properties more flexible. It can be helpful if some Oracle JDBC connection properties like ``` Properties properties = new Properties(); properties.setProperty(OracleConnection.DCN_NOTIFY_ROWIDS, "true");...

This improvement ensure, that JPQL SELECT queries like `SELECT this FROM Entity` where entity alias is not specified in the `FROM` part will be automatically added. Default `this` alias is...

After this change only OW2 ASM will be used for a entity weaving. There are open questions: - Class/entity compiled by uknown JDK. How handle this issue. Continue with limited...