Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af99eed

Browse files
committedJul 16, 2024·
Update spy_queue.schema.xml
add missing index to spy_queue_process - queries to find processes by process id in Spryker's queue process manager use condition 'WHERE process_pid IN (...)', but column process_pid doesn't have an index
1 parent 9dad70c commit af99eed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/Spryker/Zed/Queue/Persistence/Propel/Schema/spy_queue.schema.xml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<index-column name="server_id"/>
1717
<index-column name="queue_name"/>
1818
</index>
19+
<index name="spy_queue_process-index-process_pid-key">
20+
<index-column name="process_pid"/>
21+
</index>
1922
<behavior name="timestampable"/>
2023
<id-method-parameter value="spy_queue_process_pk_seq"/>
2124
</table>

0 commit comments

Comments
 (0)
Please sign in to comment.