From 47d15d0c37ff8f9266f81269e562242caf0db342 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Wed, 26 Apr 2023 17:46:16 -0700 Subject: [PATCH] Remove $data metadata table references from documentation --- docs/src/main/sphinx/connector/delta-lake.rst | 15 +-------------- docs/src/main/sphinx/connector/iceberg.rst | 15 +-------------- 2 files changed, 2 insertions(+), 28 deletions(-) diff --git a/docs/src/main/sphinx/connector/delta-lake.rst b/docs/src/main/sphinx/connector/delta-lake.rst index cfca5e889b4..526b00e0353 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 d75d6304fac..0f7de9c75cb 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 ~~~~~~~~~~~~~~~~~~~~~