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

Elastic: Fix number of rows in group queries

This commit is contained in:
Jakub Vrana
2025-03-13 14:34:26 +01:00
parent 078957fe32
commit fe88f83c95

View File

@@ -13,13 +13,12 @@ function add_driver($id, $name) {
$drivers[$id] = $name;
}
/** Get driver name
* @param string
* @return string
/** Get driver
* @return Driver
*/
function get_driver($id) {
global $drivers;
return $drivers[$id];
function get_driver() {
global $driver;
return $driver;
}
abstract class SqlDriver {