We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DELTASHARING
1 parent 29fb732 commit 41436a3Copy full SHA for 41436a3
src/databricks/labs/ucx/queries/views/objects.sql
@@ -10,7 +10,7 @@ SELECT object_type, object_id, failures FROM (
10
SELECT "tables" as object_type, CONCAT(t.catalog, '.', t.database, '.', t.name) AS object_id,
11
TO_JSON(
12
FILTER(ARRAY(
13
- IF(t.table_format != "delta", CONCAT("Non-DELTA format: ", t.table_format), NULL),
+ IF(NOT STARTSWITH(t.table_format, "DELTA"), CONCAT("Non-DELTA format: ", t.table_format), NULL),
14
IF(STARTSWITH(t.location, "wasb"), "Unsupported Storage Type: wasb://", NULL),
15
IF(STARTSWITH(t.location, "adl"), "Unsupported Storage Type: adl://", NULL),
16
CASE
0 commit comments