Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use redshift_connector's get_columns call to get column metadata #899

Merged
merged 16 commits into from
Sep 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update method name to the new name in BaseAdapter
  • Loading branch information
mikealfare committed Sep 6, 2024
commit f813295992f541cb72a9d98d6bdb9f7ea430012c
2 changes: 1 addition & 1 deletion dbt/adapters/redshift/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class RedshiftAdapter(SQLAdapter):
)

@property
def _behavior_extra(self) -> List[BehaviorFlag]:
def _behavior_flags(self) -> List[BehaviorFlag]:
return [{"name": "retire_pg_catalog", "default": False}]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


@classmethod
Expand Down
Loading