I'm just starting to learn about grackle and a test I discovered that a schema definition cannot be empty. However you only get a failure at runtime. Should it fail at compile time?
object ItcMapping extends GenericMapping[Id] {
val schema = schema"""
"""
val typeMappings = Nil
}
I'm just starting to learn about grackle and a test I discovered that a schema definition cannot be empty. However you only get a failure at runtime. Should it fail at compile time?