Currently, when I run a query, I get something like,
> select 1;
┌─────┐
│ 1 │
├─────┤
│ 1.0 │
└─────┘
I think it'd be an nice improvement of the output showed the data type, similar to DuckDB:
D select 1;
┌───────┐
│ 1 │
│ int32 │
├───────┤
│ 1 │
└───────┘