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
I did some digging around in the Chrome devtools and determined that problem must be somewhere on the server because the data is already bad when it is sent over the websocket.
That probably means this bug should be transferred to another repo but I'm not sure which one.
Bug report
Describe the bug
I have a table with a column of type
bytea
.If for example, I have a row where the column contains four bytes of zeros.
When I get the value like this
I get back
\x00000000
which is the hex of the bytes as expectedbut when I try to get the value in real time like this
then I get
\x3030303030303030
which is the hex of the asci of the hex of the bytesExpected behavior
realtime should match the get
System information
Additional context
I am able to work around this by performing the hex conversion twice for anything coming from the realtime API but it's not ideal.
The text was updated successfully, but these errors were encountered: