String ibatisSql = processSqlForMoneyParam(ibatisNamedSql,sql.getParams());
return ibatisSql;
}
private static LinkedHashSet<Column> processWithCustomColumns(List<Column> customColumns,LinkedHashSet<Column> columns) {
ColumnSet columnSet = new ColumnSet(customColumns);
for(Column c : columns) {
Column custom = columnSet.getBySqlName(c.getSqlName());
if(custom != null) {
c.setJavaType(custom.getJavaType());
}
}
return columns;