Commit 39468e7c authored by Thibaut Vallee's avatar Thibaut Vallee
Browse files

correctif sur le column_name

parent 18dd60ce
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ class CodeGenerator extends \UnicaenDbImport\CodeGenerator\CodeGenerator
     */
    public function generateSQLForSelectSourceTableColumnsInformation(string $sourceTableName): string
    {
        return sprintf("select column_name from all_tab_cols where lower(table_name) = lower('%s')",
        return sprintf("select column_name  as \"column_name\" from all_tab_cols where lower(table_name) = lower('%s')",
            $sourceTableName
        );
    }