1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-17 03:53:59 +02:00

PostgreSQL: Unescape bytea fields

This commit is contained in:
Jakub Vrana
2018-02-06 16:05:39 +01:00
parent 29c127e94a
commit 19653de764
5 changed files with 25 additions and 3 deletions

View File

@@ -122,7 +122,16 @@
function convertSearch($idf, $val, $field) {
return $idf;
}
/** Convert value returned by database to actual value
* @param string
* @param array
* @return string
*/
function value($val, $field) {
return $val;
}
/** Quote binary string
* @param string
* @return string