Skip to content

Commit 23f5020

Browse files
authored
Merge pull request #93 from andrex47/master
fix
2 parents 9e89325 + 7fcf9bb commit 23f5020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Database/Query/Processor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function processIndexes($results)
1919
foreach ($indexes as $index) {
2020
$aux = [];
2121
$aux['name'] = $index->name;
22-
$aux['columns'] = $this->concatenaCampos($results, $index->name);
22+
$aux['columns'] = $this->getColumnsFromIndexResult($results, $index->name);
2323
$aux['unique'] = $index->is_unique;
2424
$aux['primary'] = $index->is_primary;
2525
array_push($array, $aux);

0 commit comments

Comments
 (0)