mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
When adding a Redshift database, the docs said to use a connection string that started with `redshift+psycopg2://...`, but this results in a Python error from how SQLAlchemy executes the `get_schema_names` method (first reported [here](https://github.com/airbnb/superset/issues/2364#issuecomment-284705179)). The fix is to use `postgresql+psycog2://...` for the Redshift connection string.