Skip to main content

Documentation Index

Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Description

Contains information about tables that drop table has been executed on but for which data cleanup has not yet been performed.

Columns

  • index (UInt32) — Index in marked_dropped_tables queue.
  • database (String) — Database name.
  • table (String) — Table name.
  • uuid (UUID) — Table UUID.
  • engine (String) — Table engine name.
  • metadata_dropped_path (String) — Path of table’s metadata file in metadata_dropped directory.
  • table_dropped_time (DateTime) — The time when the next attempt to remove table’s data is scheduled on. Usually it’s the table when the table was dropped plus database_atomic_delay_before_drop_table_sec.

Example

The following example shows how to get information about dropped_tables.
SELECT *
FROM system.dropped_tables\G
Row 1:
──────
index:                 0
database:              default
table:                 test
uuid:                  03141bb2-e97a-4d7c-a172-95cc066bb3bd
engine:                MergeTree
metadata_dropped_path: /data/ClickHouse/build/programs/data/metadata_dropped/default.test.03141bb2-e97a-4d7c-a172-95cc066bb3bd.sql
table_dropped_time:    2023-03-16 23:43:31