mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where conversion of bytea to the binary string results in an error. Fixes #5567
This commit is contained in:
committed by
Akshay Joshi
parent
8129df42da
commit
1f70385a4e
@@ -403,7 +403,7 @@ class Connection(BaseConnection):
|
||||
cur,
|
||||
"SET DateStyle=ISO; "
|
||||
"SET client_min_messages=notice; "
|
||||
"SELECT set_config('bytea_output','escape',false) FROM pg_settings"
|
||||
"SELECT set_config('bytea_output','hex',false) FROM pg_settings"
|
||||
" WHERE name = 'bytea_output'; "
|
||||
"SET client_encoding='{0}';".format(postgres_encoding)
|
||||
)
|
||||
|
Reference in New Issue
Block a user