| 403 | |
| 404 | |
| 405 | class RedshiftTableNameTooLong(FeastError): |
| 406 | def __init__(self, table_name: str): |
| 407 | super().__init__( |
| 408 | f"Redshift table names have a maximum length of 127 characters, but the table name {table_name} has length {len(table_name)} characters." |
| 409 | ) |
| 410 | |
| 411 | |
| 412 | class SnowflakeCredentialsError(FeastError): |
no outgoing calls
no test coverage detected