[202602] Modified the appendComment method of the SQLQuerySourceWriter class in the o.e.d.modelbase.sql.query plugin to put out an extra space at the beginning of multiline comments so the comment won't be concatenated with SQL code.
diff --git a/plugins/org.eclipse.datatools.modelbase.sql.query/src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java b/plugins/org.eclipse.datatools.modelbase.sql.query/src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java
index b51b89f..3ac0610 100644
--- a/plugins/org.eclipse.datatools.modelbase.sql.query/src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java
+++ b/plugins/org.eclipse.datatools.modelbase.sql.query/src/org/eclipse/datatools/modelbase/sql/query/util/SQLQuerySourceWriter.java
@@ -1193,6 +1193,11 @@
             if (trimText.startsWith(COMMENT_PREFIX_MULTI_LINE) == false) {
                 sbComment.append(COMMENT_PREFIX_MULTI_LINE);
             }
+            // BZ 202602 drigby 02 Dec 2008
+            // If the comment is a multiline comment padd with 1 leading space
+            if (trimText.startsWith(COMMENT_PREFIX_MULTI_LINE)) {
+                sbComment.append(" ");
+            } 
             sbComment.append(text);
             if (trimText.endsWith(COMMENT_SUFFIX_MULTI_LINE) == false) {
                 sbComment.append(COMMENT_SUFFIX_MULTI_LINE);