Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenchrist committed Nov 24, 2024
1 parent c77751d commit 8aae85a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected Optional<Asset> schemaToAsset(SchemaInfo schema, Long databricksLastUp
.name(schema.getFullName())
.source("unity")
.qualifiedName(schema.getFullName())
.type(schema.getCatalogType())
.type("unity_schema")
.status("active")
.description(schema.getComment()))
.putPropertiesItem("host", databricksProperties.workspace().host())
Expand Down Expand Up @@ -125,7 +125,7 @@ protected Optional<Asset> tableToAsset(TableInfo table, Long databricksLastUpdat
.name(table.getFullName())
.source("unity")
.qualifiedName(table.getFullName())
.type(table.getTableType().name())
.type("unity_table")
.status("active")
.description(table.getComment()))
.putPropertiesItem("host", databricksProperties.workspace().host())
Expand Down

0 comments on commit 8aae85a

Please sign in to comment.