We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b91d56 commit 49b0b57Copy full SHA for 49b0b57
src/Database/Query/Processor.php
@@ -19,7 +19,7 @@ public function processIndexes($results)
19
foreach ($indexes as $index) {
20
$aux = [];
21
$aux['name'] = $index->name;
22
- $aux['columns'] = $this->concatenaCampos($results, $index->name);
+ $aux['columns'] = $this->getColumnsFromIndexResult($results, $index->name);
23
$aux['unique'] = $index->is_unique;
24
$aux['primary'] = $index->is_primary;
25
array_push($array, $aux);
0 commit comments