math280h / redactdump

Database dumps with support for redacting/replacing data
Apache License 2.0
4 stars 0 forks source link

Add support for more data types #16

Open math280h opened 1 year ago

math280h commented 1 year ago

Currently there is a list of data types not supported, they should be implemented so they can be exported. - All of them are currently being treated as a varchar which is incorrect.

This is currently being handled in: https://github.com/math280h/redactdump/blob/main/redactdump/core/file.py#L102-L116

box
bytea
inet
interval
circle
cidr
line
lseg
macaddr
macaddr8
pg_lsn
pg_snapshot
point
polygon
tsquery
tsvector
txid_snapshot
math280h commented 1 year ago

Implemented distinction of data types in #17 - Documented unsupported types here: https://github.com/math280h/redactdump#data-types-not-supported - Editing issue to support these types