}
Attribute[] attributes = attributeList.toArray(new Attribute[attributeList.size()]);
switch (propertyType) {
case BIG_DECIMAL:
DecimalType decimalType = new DecimalType(numericPrecision, numericScale);
builder.add(columnComment, columnName, decimalType, attributes);
break;
case STRING:
StringType stringType = new StringType((int) characterMaximumLength);
builder.add(columnComment, columnName, stringType, attributes);