Open
Description
Description
When outputting the type of a string, Velox omits the length of the string, while Presto doesn't. We should follow Presto's model and output the length of the string too for feature parity. The fix is indeed trivial but will cause the fuzzer to fail.
Error Reproduction
Presto:
presto> SELECT typeof(c0) from (values ('four')) t(c0);
_col0
------------
varchar(4)
(1 row)
Velox:
presto:di> SELECT typeof(c0) from (values ('four')) t(c0);
_col0
---------
varchar
(1 row)