mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
This commit is contained in:
parent
b4061424d3
commit
32ff34ee98
@ -34,6 +34,7 @@ import com.mysema.query.types.path.Path;
|
||||
import com.mysema.query.types.query.SubQuery;
|
||||
|
||||
/**
|
||||
* JDOQLSerializer serializes Querydsl queries and expressions into JDOQL strings
|
||||
*
|
||||
* @author tiwe
|
||||
*
|
||||
@ -278,7 +279,7 @@ public final class JDOQLSerializer extends SerializerBase<JDOQLSerializer> {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(SubQuery query) {
|
||||
public void visit(SubQuery<?> query) {
|
||||
append("(");
|
||||
serialize(query.getMetadata(), false, true);
|
||||
append(")");
|
||||
|
||||
@ -17,6 +17,8 @@ import com.mysema.query.types.path.PEntity;
|
||||
import com.mysema.query.types.path.Path;
|
||||
|
||||
/**
|
||||
* JDOQLSubQuery is subquery implementation for JDOQL
|
||||
*
|
||||
* @author tiwe
|
||||
*
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user