Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions docs/src/main/sphinx/connector/delta-lake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~
Expand Down
15 changes: 1 addition & 14 deletions docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~~~~
Expand Down