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

MySQL: Support non-utf8 charset in search in column

This commit is contained in:
Jakub Vrana
2018-02-06 13:19:12 +01:00
parent c2de3b8ec1
commit 197abdcb70
4 changed files with 21 additions and 6 deletions

View File

@@ -113,6 +113,15 @@
return queries("ROLLBACK");
}
/** Convert column to be searchable
* @param string escaped name
* @param array
* @return string
*/
function convertSearch($idf, $field) {
return $idf;
}
/** Get warnings about the last command
* @return string HTML
*/