From 32feed579bd2e2632b4658c60cc3e40530b401f2 Mon Sep 17 00:00:00 2001 From: mdb Date: Sun, 24 Dec 2006 01:30:44 +0000 Subject: [PATCH] Missed a space. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2024 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- 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 eda00291..f2091c3f 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(), ", ") + ")"); } }