refs #4550 jobData changed JOIN -> LEFT JOIN
gitea/printnatura/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2022-12-19 14:53:34 +01:00
parent 9bda14b401
commit dac7c1071d
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@ SELECT r.name report,
r.method
FROM printQueue pq
JOIN report r ON r.id = pq.reportFk
JOIN printer p ON p.id = pq.printerFk
LEFT JOIN printer p ON p.id = pq.printerFk
WHERE pq.id = ?