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
Postgres returns bit as a string, e.g. '101'
but current type conversion makes integer 101, it's not correct.
The same problem with insert, integer is not correct for postgres bit type.
This conversion also thrown String data, length mismatch: 7 ERROR: bit string length 4 does not match type bit(8), for data zero-leading ('00001111') values on bit columns write.
Postgres returns bit as a string, e.g. '101'
but current type conversion makes integer 101, it's not correct.
The same problem with insert, integer is not correct for postgres bit type.
http://www.postgresql.org/docs/current/static/datatype-bit.html
http://www.postgresql.org/docs/current/static/datatype.html#DATATYPE-TABLE
I think it needs to add one more abstract type into
Schema
classAnd then convert the type for php
bindec()
and for dbdecbin()
The text was updated successfully, but these errors were encountered: