We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d32f9 commit 4f099efCopy full SHA for 4f099ef
awswrangler/catalog/_create.py
@@ -644,7 +644,7 @@ def create_database(
644
args["Description"] = description
645
646
try:
647
- r = client_glue.get_database(Name=name)
+ r = client_glue.get_database(**_catalog_id(catalog_id=catalog_id, Name=name))
648
if not exist_ok:
649
raise exceptions.AlreadyExists(f"Database {name} already exists and <exist_ok> is set to False.")
650
if description and description != r["Database"].get("Description", ""):
0 commit comments