You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Combining the conditional statements worked: if config_parameters['destinationTableForceDropCreate'] and self.target_resource.is_present():
I guess the other option is to not set params to force the drop/create, but there are situations where this could result in the opposite problem: some tables in the schema that should be recreated are not.
The text was updated successfully, but these errors were encountered:
When running with params set to force drop and recreate on a first-time run with a fresh target DB, this fails since it finds no table to drop.
amazon-redshift-utils/src/UnloadCopyUtility/util/tasks.py
Lines 185 to 189 in d2aa42a
Combining the conditional statements worked:
if config_parameters['destinationTableForceDropCreate'] and self.target_resource.is_present():
I guess the other option is to not set params to force the drop/create, but there are situations where this could result in the opposite problem: some tables in the schema that should be recreated are not.
The text was updated successfully, but these errors were encountered: