BuzzCutNorman / tap-mssql

Singer Tap for MS SQL built with Meltano Singer SDK.
MIT License
2 stars 9 forks source link

feat: Add `UNIQUEIDENTIFIER` to HD JSON Schema #26

Closed BuzzCutNorman closed 1 year ago

BuzzCutNorman commented 1 year ago

This is an issue to remind me to add UNIQUEIDENTIFIER support.

if sql_type_name == 'UNIQUEIDENTIFIER':
    return {
        "type": ["string"],
        "format": "uuid"
    }