support type cast for the following statements(UTinyint cast to Integer): ```sql create table t2(a int, b int, c int); insert into t2(c, b, a) values (0, 4, 1), (1, 5, 2); ```