mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
The container deployment document should include the server.json file format. #5452
This commit is contained in:
@@ -61,7 +61,8 @@ class PgAdminDbBinaryString(types.TypeDecorator):
|
||||
impl = types.String
|
||||
|
||||
def process_bind_param(self, value, dialect):
|
||||
return value.hex()
|
||||
return value.hex() if hasattr(value, 'hex') \
|
||||
else value
|
||||
|
||||
def process_result_value(self, value, dialect):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user