-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store metadata when listing columns/comments in Delta Lake #23589
Conversation
3fd0d60
to
d4abb5f
Compare
...rc/test/java/io/trino/plugin/deltalake/metastore/TestDeltaLakeMetastoreAccessOperations.java
Outdated
Show resolved
Hide resolved
...rc/test/java/io/trino/plugin/deltalake/metastore/TestDeltaLakeMetastoreAccessOperations.java
Outdated
Show resolved
Hide resolved
d4abb5f
to
5d3f0ac
Compare
@@ -783,12 +826,35 @@ public void testSystemMetadataTableComments() | |||
assertUpdate(session, "INSERT INTO test_select_s_m_t_comments" + i + " VALUES ('xyz', 12)", 1); | |||
|
|||
assertUpdate(session, "CREATE TABLE test_other_select_s_m_t_comments" + i + "(id varchar, age integer)"); // won't match the filter | |||
|
|||
if (removeCachedProperties) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It took me a bit to understand the purpose of removeCachedProperties
in testSystemMetadataTableComments()
method.
I understand though now the purpose - we want to verify how the system.metadata.table_comments
query behaves when the table comments are added filled one by one as well as when they are added in bulk.
...in/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/TestDeltaLakeFileOperations.java
Outdated
Show resolved
Hide resolved
5d3f0ac
to
e8b858a
Compare
Description
Store metadata when listing columns/comments in Delta Lake
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.