Rope icon indicating copy to clipboard operation
Rope copied to clipboard

Typed columns

Open johanneserhardt opened this issue 8 years ago • 0 comments

Instead of returning [String:Any?] let's return [String:PostgresType]:

enum PostgresType {
  case text(String?),
  case int(Int?),
  case other(Any?)
}

Nil in the associated value means null.

johanneserhardt avatar Feb 15 '17 22:02 johanneserhardt