mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 16:44:17 +02:00
Elasticsearch: Fix table_status()
This commit is contained in:
@@ -229,7 +229,7 @@ if (isset($_GET["elastic"])) {
|
|||||||
"facets" => array(
|
"facets" => array(
|
||||||
"count_by_type" => array(
|
"count_by_type" => array(
|
||||||
"terms" => array(
|
"terms" => array(
|
||||||
"field" => "_type"
|
"field" => "_type",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -240,10 +240,10 @@ if (isset($_GET["elastic"])) {
|
|||||||
$return[$table["term"]] = array(
|
$return[$table["term"]] = array(
|
||||||
"Name" => $table["term"],
|
"Name" => $table["term"],
|
||||||
"Engine" => "table",
|
"Engine" => "table",
|
||||||
"Rows" => $table["count"]
|
"Rows" => $table["count"],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if ($name != "") {
|
if ($name != "" && $name == $table["term"]) {
|
||||||
return $return[$name];
|
return $return[$name];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user