Them thar columns was all jammed together. Give 'em some breathin' room with

commas.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2018 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-12-22 00:06:45 +00:00
parent cd2523cf31
commit e6b81a15cd
@@ -220,7 +220,11 @@ public abstract class Conditionals
public void appendExpression (Query query, StringBuilder builder)
{
builder.append("match(");
int idx = 0;
for (ColumnExp column : _columns) {
if (idx++ > 0) {
builder.append(", ");
}
column.appendExpression(query, builder);
}
builder.append(") against (?)");