**Summary** now it shows ``` ┌──────────────────────────────────────────────────────────────────┐ │ l_orderkey │ revenue │ o_orderdate │ o_shippriority │ │ Int64 │ Decimal(38, 4) NULL │ Date │ Int32 │ ├────────────┼─────────────────────┼──────────────┼────────────────┤ │ 2113221 │ 453119.3884 │ '1995-02-19' │ 0 │ │ 9210272 │ 444593.0049 │ '1995-02-18' │ 0 │ ``` I want it shows ``` ┌──────────────────────────────────────────────────────────────────┐ │ l_orderkey │ revenue │ o_orderdate │ o_shippriority │ │ Int64 │ Decimal(38, 4) NULL │ Date │ Int32 │ ├────────────┼─────────────────────┼──────────────┼────────────────┤ │ 2113221 │ 453119.3884 │ 1995-02-19 │ 0 │ │ 9210272 │ 444593.0049 │ 1995-02-18 │ 0 │ ```