Skip to content

Feature: show the decimal data right-align , the string and date data without single quotation marks in python #18315

@l1t1

Description

@l1t1

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 │

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions