Commit 19313806 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

[FIX] Interrogation de IMPORT_OBSERV (table des changements de valeurs à...

[FIX] Interrogation de IMPORT_OBSERV (table des changements de valeurs à détecter) : upper() était indispensable !
parent 64496f0e
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
Changelog
=========

6.1.4
-----
- [FIX] Interrogation de IMPORT_OBSERV (table des changements de valeurs à détecter) : upper() était indispensable ! 

6.1.3
-----
- Déclaration de la nouvelle plateforme Doctrine\DBAL\Platforms\PostgreSQL120Platform.
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ select
    filter
from import_observ io 
where io.operation = 'UPDATE' and io.enabled = $requiredValueForEnabled
and table_name = '$table'
and upper(table_name) = upper('$table')
order by operation, table_name, column_name
EOS;
    }