From ea85c1d500701607277a23f671d0b94f8ff34ce2 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sun, 24 Dec 2006 01:30:44 +0000 Subject: [PATCH] Missed a space. --- src/java/com/samskivert/jdbc/depot/DepotMarshaller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java b/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java index eda0029..f2091c3 100644 --- a/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java +++ b/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java @@ -217,7 +217,7 @@ public class DepotMarshaller if (entity != null) { for (Index index : entity.indices()) { // TODO: delegate this to a database specific SQL generator - _declarations.add(index.type() + "index " + index.name() + + _declarations.add(index.type() + " index " + index.name() + " (" + StringUtil.join(index.columns(), ", ") + ")"); } }