PostgreSQL 1.3.0
Fixed:
PostgreSQLPoint prior to this patch, your database may be storing point columns with flipped endianness. After this patch, points will be fetched and saved using the correct format, meaning old values may now be flipped. Use the following helper method to flip PostgreSQLPoint endianness.
let x = PostgreSQLPoint(x: 3.14, y: -42).endiannessflipped()
print(x)