mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-24 21:07:26 +08:00
27 lines
475 B
Java
27 lines
475 B
Java
/*
|
|
* Copyright (c) 2010 Mysema Ltd.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
package com.mysema.query.sql;
|
|
|
|
import com.mysema.query.QueryMetadata;
|
|
|
|
/**
|
|
* SQLSubQuery is a subquery implementation for SQL queries
|
|
*
|
|
* @author tiwe
|
|
*
|
|
*/
|
|
public class SQLSubQuery extends AbstractSQLSubQuery<SQLSubQuery>{
|
|
|
|
public SQLSubQuery() {
|
|
super();
|
|
}
|
|
|
|
public SQLSubQuery(QueryMetadata metadata) {
|
|
super(metadata);
|
|
}
|
|
|
|
}
|