We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9e89325 + 7fcf9bb commit 23f5020Copy full SHA for 23f5020
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