Hi Timo, > The newest release of Querydsl has now support for subqueries for JDOQL. > Is there some kind of conformance test suite to validate Querydsl as a > JDOQL implementation?
But QueryDSL isn't a JDOQL implementation though is it ? You presumably take your API input and convert it into a single-string form of JDOQL for use by the actual JDOQL implementation (e.g DataNucleus). You don't execute the query on the underlying datastore. The JDO2 TCK test compliance with the JDO2 spec ... for the JDO implementation. Specifically, those tests (in Apache JDO SVN) will use the JDOQL API and single-string form, and test the results from those queries (after execution on the datastore). -- Andy (DataNucleus - http://www.datanucleus.org)
