Currently there's an option to present binary values as strings. If that's not selected, we get e.g. 'binary [16]'.
1. Would it be possible to offer another option to represent binary values as HEX?
2. Copying the value and generating SQL from it uses the GUI representation ('binary [16]' or a string), not some escaped version of the proper value (via DECODE, HEX, HEXTORAW, CAST or whatever the DB offers)
My main motivation for asking about this is Oracle, which chose to represent GUIDs (as created by its internal SYS_GUID) function as RAW values, instead of having some specific type like PostGres's UUID. And one does quite a bit of selecting by GUIDs, so copying and pasting them is a frequent action. One of the main roadblocks that keeps me from using DBeaver more often. Item number one should be easy enough, the second is probably a showcase of database-specific functionality.