You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mapping for ColumnType::Binary in PostgresQueryBuilder.prepare_column_type() maps to a binary type. This doesn't appear to map to any documented type in postgres (see Table 8.1 Data Types). It's unclear if this is a mistake or just an undocumented type alias (pg mentions there are undocumented type aliases). Could this be updated to use a documented type? Since this takes an optional length, maybe this is meant to be bit? Possibly bytea, but that doesn't take a length.
The text was updated successfully, but these errors were encountered:
The mapping for
ColumnType::Binary
inPostgresQueryBuilder.prepare_column_type()
maps to abinary
type. This doesn't appear to map to any documented type in postgres (see Table 8.1 Data Types). It's unclear if this is a mistake or just an undocumented type alias (pg mentions there are undocumented type aliases). Could this be updated to use a documented type? Since this takes an optionallength
, maybe this is meant to bebit
? Possiblybytea
, but that doesn't take alength
.The text was updated successfully, but these errors were encountered: