Convert data type of a column
set-type <column> <type> [<scale> <rounding-mode> prop:{precision=<precision>}]
The <column> is converted to the type in <type>.
Acceptable types are: int, short, long, float, double, decimal, string, bytes, boolean.
When decimal type is specified, two optional arguments can be given:
<scale>: set the scale of the decimal value.<rounding-mode>: Java rounding-mode to use when decimal value's scale is not equal to the set scale. By default,HALF_EVENis assumed.<precision>: set the precision of the decimal value.