Project

General

Profile

Bug #80675

Updated by Thomas Hohn about 7 years ago

Recycler Scheduler job fails due do to missing doctrine doctribe bind variables. 

 To reproduce: 
 * Setup    Recycler Scheduler job 
 * Select the "Backend Layout" table 
 * Run 

 Error: 


 @Execution 
 @ 

 Execution of task "Remove deleted records (recycler)" failed with the following message: An exception occurred while executing 'SELECT `icon` FROM `backend_layout` WHERE (`deleted` = :dcValue1) AND (`tstamp` < :dcValue2)': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ':dcValue1) AND (`tstamp` < :dcValue2)' at line 1@ 


 1 
 @ 

 This seems to be caused cause by @CleanerTask->deleteFilesForTable@ which reuses the $constraints from @CleanerTask->cleanTable@, but without the doctrine createNamedParameter bind variables.

Back