diff --git a/docs/src/main/sphinx/connector/delta-lake.rst b/docs/src/main/sphinx/connector/delta-lake.rst index cfca5e889b46..526b00e03538 100644 --- a/docs/src/main/sphinx/connector/delta-lake.rst +++ b/docs/src/main/sphinx/connector/delta-lake.rst @@ -633,20 +633,7 @@ These metadata tables contain information about the internal structure of the Delta Lake table. You can query each metadata table by appending the metadata table name to the table name:: - SELECT * FROM "test_table$data" - -``$data`` table -~~~~~~~~~~~~~~~ - -The ``$data`` table is an alias for the Delta Lake table itself. - -The statement:: - - SELECT * FROM "test_table$data" - -is equivalent to:: - - SELECT * FROM test_table + SELECT * FROM "test_table$history" ``$history`` table ~~~~~~~~~~~~~~~~~~ diff --git a/docs/src/main/sphinx/connector/iceberg.rst b/docs/src/main/sphinx/connector/iceberg.rst index d75d6304faca..0f7de9c75cbd 100644 --- a/docs/src/main/sphinx/connector/iceberg.rst +++ b/docs/src/main/sphinx/connector/iceberg.rst @@ -809,20 +809,7 @@ These metadata tables contain information about the internal structure of the Iceberg table. You can query each metadata table by appending the metadata table name to the table name:: - SELECT * FROM "test_table$data" - -``$data`` table -~~~~~~~~~~~~~~~ - -The ``$data`` table is an alias for the Iceberg table itself. - -The statement:: - - SELECT * FROM "test_table$data" - -is equivalent to:: - - SELECT * FROM test_table + SELECT * FROM "test_table$properties" ``$properties`` table ~~~~~~~~~~~~~~~~~~~~~