Problem
sa.Time() currently can't be used, because it gets mapped to SQL's TIME type, and CrateDB doesn't know it.
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.
Problem
sa.Time()currently can't be used, because it gets mapped to SQL'sTIMEtype, and CrateDB doesn't know it.On the other hand, using
sa.Date()works, and gets mapped toTIMESTAMP WITHOUT TIME ZONEwell.