Commit 354bc1a2d34ef338fdc8a2e367edf738401cb681
1 parent
63bfe7b3
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
ferramentas/saiku/esquemaxml.php
... | ... | @@ -644,7 +644,9 @@ function dimensoesTabelas(){ |
644 | 644 | select ".implode(",",$incluirChaves).", tabelamedida{$c["id_medida_variavel"]}.{$c["colunaidgeo"]}::text as codigoreg |
645 | 645 | "; |
646 | 646 | if(count($dimRegioes[$c["codigo_tipo_regiao"]]["colunas"]) > 0){ |
647 | - $sql .= ",tabela{$r["codigo_tipo_regiao"]}.".implode(",tabela{$r["codigo_tipo_regiao"]}.",$dimRegioes[$c["codigo_tipo_regiao"]]["colunas"]); | |
647 | + $sql .= ",".implode(",",$dimRegioes[$c["codigo_tipo_regiao"]]["colunas"]); | |
648 | + //$sql .= ",tabela{$r["codigo_tipo_regiao"]}.".implode(",tabela{$r["codigo_tipo_regiao"]}.",$dimRegioes[$c["codigo_tipo_regiao"]]["colunas"]); | |
649 | + | |
648 | 650 | } |
649 | 651 | |
650 | 652 | $sql .= " | ... | ... |