result = cgfromcolumnMeta.getColumnName()+" type decimal("+cgfromcolumnMeta.getColumnSize()+","+cgfromcolumnMeta.getDecimalDigits()+")"+" ";
}else if(cgfromcolumnMeta.getColunmType().equalsIgnoreCase("text")){
result = cgfromcolumnMeta.getColumnName()+" type text("+cgfromcolumnMeta.getColumnSize()+")"+" ";
}else if(cgfromcolumnMeta.getColunmType().equalsIgnoreCase("blob")){
// bytea类型不可修改,修改会报错
throw new DBException("blob类型不可修改");
}
return result;
}