If your site has a large number of events and if you notice performance issues, namely, calendar list pages take forever to load, then adding a composite index on wp_tec_occurences
might help.
Run this SQL Query at your own risk:
CREATE INDEX idx_post_id_event_id_by ON wp_tec_occurrences(post_id, event_id);