postgres-nio
postgres-nio copied to clipboard
Add proper support for timestamp arrays
Do we want to add this support also for the potentially new PSQLCodable type? You would add this by adding
extension Date: PSQLArrayElement {
static var psqlArrayType: PSQLDataType { .timestamptzArray }
static var psqlArrayElementType: PSQLDataType { .timestamptz }
}
to Array+PSQLCodable. This should be it!
Yeah if that's simpler and better long term we should migrate to that
Superseded (at last) by #463