## Problem `sa.Time()` currently can't be used, because it gets mapped to SQL's `TIME` type, and CrateDB doesn't know it. ```python Exception calling application: (crate.client.exceptions.ProgrammingError) SQLParseException[Cannot find data type: time] ``` On the other hand, using `sa.Date()` works, and gets mapped to `TIMESTAMP WITHOUT TIME ZONE` well.