Added column alter checks in DB Upgrade handler and fixed some bugs
This commit is contained in:
parent
74e8c4aa68
commit
973dfdec35
3 changed files with 40 additions and 25 deletions
|
|
@ -139,9 +139,9 @@ public class StringUtil {
|
|||
StringBuilder str = new StringBuilder();
|
||||
Iterator<?> it = list.iterator();
|
||||
if(it.hasNext()) {
|
||||
str.append(it.next());
|
||||
str.append(it.next().toString());
|
||||
while (it.hasNext()) {
|
||||
str.append(delimiter).append(it.next());
|
||||
str.append(delimiter).append(it.next().toString());
|
||||
}
|
||||
}
|
||||
return str.toString();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue