You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of the MTC enhancements added for supporting merging feeds, a foreign reference was added to the calendar_dates#service_id table. Doing so allows us to scope the service_id and possibly remap it if conflicts are encountered between two feeds.
However, this change will have the effect of causing false positives for referential integrity errors encountered during feed loading for GTFS feeds like TriMet's, which define service dates using calendar_dates (exception type = 1) alone. I have a fix inbound for this issue, which will only store the ref integrity error if the exception type is not 1.
The text was updated successfully, but these errors were encountered:
As part of the MTC enhancements added for supporting merging feeds, a foreign reference was added to the calendar_dates#service_id table. Doing so allows us to scope the service_id and possibly remap it if conflicts are encountered between two feeds.
gtfs-lib/src/main/java/com/conveyal/gtfs/loader/Table.java
Lines 138 to 142 in 5ec5285
However, this change will have the effect of causing false positives for referential integrity errors encountered during feed loading for GTFS feeds like TriMet's, which define service dates using calendar_dates (exception type = 1) alone. I have a fix inbound for this issue, which will only store the ref integrity error if the exception type is not
1
.The text was updated successfully, but these errors were encountered: