0cb9642a8a
TL;DR: My trips.csv had invalid dates for the endDate column. "2020-15-30" is an "invalid date" (according to FromField instance for Calendar.Day) bc 15 is not a valid month (i.e. [1,12]). @dmjio helped me take a look. When we poked around the SQL, we discovered: ```sql SELECT endDate FROM TRIPS; -- shows three records SELECT date(endDate) FROM TRIPS; -- shows two records ```
222 B
222 B
1 | mimi | Rome | 2020-08-10 | 2020-08-12 | Heading home before the upcoming trip with Panarea. |
---|---|---|---|---|---|
2 | mimi | Panarea | 2020-08-15 | 2020-08-28 | Exciting upcoming trip with Matt and Sarah! |
3 | mimi | London | 2020-08-30 | 2020-09-15 | Heading back to London... |