tabixio / tabix

Tabix.io UI
https://tabix.io
Other
2.16k stars 266 forks source link

Decimal128 rounding on UI #164

Open artyomkorzun opened 5 years ago

artyomkorzun commented 5 years ago

Hello,

I have a decimal128(12) column in ClickHouse database.

When I select a row I see the resulting value is rounded.

The server response:

{
    "meta":
    [
        {
            "name": "value",
            "type": "Decimal(38, 12)"
        }
    ],

    "data":
    [
        {
            "value": 85406789331232589.043243275500
        }
    ],
       ...
}

UI shows: 85406789331232590

Do you plan to improve this part to show the exact value instead of the rounded one?

Thank you.