| 398 | |
| 399 | |
| 400 | class RedshiftQueryError(FeastError): |
| 401 | def __init__(self, details): |
| 402 | super().__init__(f"Redshift SQL Query failed to finish. Details: {details}") |
| 403 | |
| 404 | |
| 405 | class RedshiftTableNameTooLong(FeastError): |
no outgoing calls
no test coverage detected