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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user