Skip to content

Commit

Permalink
Remove $data metadata table references from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinliu-stripe authored and ebyhr committed Apr 27, 2023
1 parent 881d5b8 commit 47d15d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 28 deletions.
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

0 comments on commit 47d15d0

Please sign in to comment.