|| type.isDateTimeType() || type.isIntervalType()) {
row[iliteral_prefix] = "\'";
row[iliteral_suffix] = "\'";
}
if (type.acceptsPrecision() && type.acceptsScale()) {
row[icreate_params] = "PRECISION,SCALE";
} else if (type.acceptsPrecision()) {
row[icreate_params] = type.isNumberType() ? "PRECISION"
: "LENGTH";
} else if (type.acceptsScale()) {