1) Fixed Schema Diff issue.

2) Remove unsupported versions from the get_version_mapping_directories() function.
3) Updated test cases for version template loader.
This commit is contained in:
Akshay Joshi
2023-06-19 18:44:55 +05:30
parent c5cbb33a06
commit 5d619fd455
9 changed files with 37 additions and 48 deletions

View File

@@ -562,9 +562,6 @@ def compare_database(params):
comparison_result = \
comparison_result + comparison_schema_result
msg = gettext("Successfully compare the specified databases.")
total_percent = 100
diff_model_obj.set_comparison_info(msg, total_percent)
# Update the message and total percentage done in session object
update_session_diff_transaction(params['trans_id'], session_obj,
diff_model_obj)
@@ -625,9 +622,6 @@ def compare_schema(params):
comparison_result = \
comparison_result + comparison_schema_result
msg = gettext("Successfully compare the specified schemas.")
total_percent = 100
diff_model_obj.set_comparison_info(msg, total_percent)
# Update the message and total percentage done in session object
update_session_diff_transaction(params['trans_id'], session_obj,
diff_model_obj)