rawwar commented on code in PR #50758:
URL: https://github.com/apache/airflow/pull/50758#discussion_r2097582278
##########
airflow-core/src/airflow/utils/db_cleanup.py:
##########
@@ -523,3 +523,12 @@ def drop_archived_tables(
session.execute(text(f"DROP TABLE {table_name}"))
dropped_count += 1
logger.info("Total dropped tables: %s", dropped_count)
+
+
+def calculate_table_size(
+ *,
+ table_name: str,
+ session: Session,
+) -> float | None:
+ """Calculate table size in megabytes."""
+ return 0
Review Comment:
Yeah. Wanted to keep few issues as good first issues for MLH internship
folks to pick them up
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]