|
Summary
|
Add test queries accessing a public static final field declared in a company model class
|
JPOX throws exception for query with public static final field used without qualifying class name prefix
|
|
Description
|
I propose to add new test queries to query test class query.jdoql.IdentifiersEqualFieldNames accessing a public static final field declared in a company model class, e.g add the following constant to class Department:
public static final int RECOMMENDED_NO_OF_EMPS = 2
|
I propose to add new test queries to query test class query.jdoql.IdentifiersEqualFieldNames accessing a public static final field declared in a company model class, e.g add the following constant to class Department:
public static final int RECOMMENDED_NO_OF_EMPS = 2
This query works if the class name is used to qualify the static field name, e.g. Department.RECOMMENDED_NO_OF_EMPS
|