``` create table t_si(si smallint, value varchar) with (format = 'PARQUET'); insert into t_si VALUES (SMALLINT '1', 'a'); select * from t_si where si = 1; ``` ``` IllegalArgumentException: Mismatched Domain types: smallint vs integer ```