-
I am using Kyuubi 1.3.0 release with DBeaver 21.1.5. In DBeaver, I could see tables listed in spark_catalog.default schema but it does not show tables metadata (e.g columns and datatypes) and empty. However, I could run |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 15 replies
-
can you provide the server and engine logs? |
Beta Was this translation helpful? Give feedback.
-
It should be fixed in #1133, would you please try the latest master/branch-1.3? |
Beta Was this translation helpful? Give feedback.
-
It works for me on my laptop |
Beta Was this translation helpful? Give feedback.
-
Based on delta v1.0.0 source code, delta will erase schema before persisting table information into Hive metastore. The behavior doesn't change in master branch. DBevaer uses |
Beta Was this translation helpful? Give feedback.
Based on delta v1.0.0 source code, delta will erase schema before persisting table information into Hive metastore. The behavior doesn't change in master branch.
https://github.com/delta-io/delta/blob/5571d95966e3b03c4699dcfa1a5cd86bb16447dc/core/src/main/scala/org/apache/spark/sql/delta/commands/CreateDeltaTableCommand.scala#L387-L405
DBevaer uses
GET_COLUMNS
operation to ask Kyuubi for table column information, and Kyuubi handles it by calling Spark Catalog API, which retrieves metadata from Hive metastore, then you got nothing.