File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/org/apache/ibatis/scripting/defaults
test/java/org/apache/ibatis/submitted/includes Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ private static String getString(XNode script) {
47
47
if (child .getNode ().getNodeType () == Node .CDATA_SECTION_NODE || child .getNode ().getNodeType () == Node .TEXT_NODE ) {
48
48
String data = child .getStringBody ("" );
49
49
contents .append (data );
50
+ contents .append (" " ); // issue #128
50
51
}
51
52
}
52
53
return contents .toString ();
Original file line number Diff line number Diff line change 29
29
<select id =" select" resultType =" map" >
30
30
<include refid =" org.apache.ibatis.submitted.includes.fragments.select" />
31
31
field1, field2, field3
32
- from
33
- <include refid =" sometable" />
32
+ from<include refid =" sometable" />
34
33
</select >
35
34
36
35
<select id =" selectWithProperty" resultType =" _int" >
You can’t perform that action at this time.
0 commit comments