Skip to content

Commit

Permalink
Fix javadoc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
haocao committed Jan 21, 2016
1 parent 9a5f348 commit 386652c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public final class ResultSetFactory {
* 获取结果集.
*
* @param resultSets 结果集列表
* @param sqlParsedResult SQL解析结果
* @param mergeContext 结果归并上下文
* @return 结果集包装
*/
public static ResultSet getResultSet(final List<ResultSet> resultSets, final MergeContext mergeContext) throws SQLException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@ public void addCondition(final SQLExpr expr, final BinaryOperator operator, fina
/**
* 将条件对象加入解析上下文.
*
* @param column 列对象
* @param columnName 列名
* @param operator 操作符
* @param values 条件值集合
* @param valueExpr 值对象表达式
* @param databaseType 数据库类型
* @param paramters 通过占位符传进来的参数
*/
public void addCondition(final String columnName, final String tableName, final BinaryOperator operator, final SQLExpr valueExpr, final DatabaseType databaseType, final List<Object> paramters) {
Comparable<?> value = evalExpression(databaseType, valueExpr, paramters);
Expand Down

0 comments on commit 386652c

Please sign in to comment.