ImportRun: fix prepared query

This commit is contained in:
Thomas Gelf 2016-06-24 17:00:44 +02:00
parent 3d0a31127c
commit 20197e1c9c

View File

@ -28,9 +28,9 @@ class ImportRun extends DbObject
array('r' => 'imported_row'),
$columns
)->joinLeft(
array('rsr' => 'rowset_checksum'),
array('rsr' => 'imported_rowset_row'),
'rsr.row_checksum = r.checksum',
'r.object_name'
array()
)->where(
'rsr.rowset_checksum = ?',
$this->getConnection()->quoteBinary($this->rowset_checksum)