1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 22:56:46 +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; $drivers[$id] = $name;
} }
/** Get driver name /** Get driver
* @param string * @return Driver
* @return string
*/ */
function get_driver($id) { function get_driver() {
global $drivers; global $driver;
return $drivers[$id]; return $driver;
} }
abstract class SqlDriver { abstract class SqlDriver {