Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add deserialization support for Avro logical types in UI #30

Open
Protoss78 opened this issue Sep 9, 2022 · 1 comment
Open

Add deserialization support for Avro logical types in UI #30

Protoss78 opened this issue Sep 9, 2022 · 1 comment
Assignees

Comments

@Protoss78
Copy link

Would be great to have KafkaEsque properly display the values of logical type fields like decimal or date. Currently it just displays a String representation of the byte array:
screenshot

The Avro schema defined for the above screenshot looks like this:

{
    "name": "geo_latitude",
    "type": [
    "null",
    {
        "logicalType": "decimal",
        "precision": 9,
        "scale": 6,
        "type": "bytes"
    }
    ]
},
{
    "name": "geo_longitude",
    "type": [
    "null",
    {
        "logicalType": "decimal",
        "precision": 9,
        "scale": 6,
        "type": "bytes"
    }
    ]
}
@patschuh
Copy link
Owner

patschuh commented Oct 17, 2022

Experimental support added with version 2.3.0
It can be toggled on or off in the settings:
lt-support

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants