Skip to content

Commit f9dbfac

Browse files
committed
Fixed issue with missing constructor parameters
1 parent 5884f08 commit f9dbfac

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/databricks/labs/ucx/hive_metastore/table_migrate.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,36 @@ def _convert_wasbs_table_to_abfss(self, src_table: Table) -> bool:
427427
old_table.schemaPreservesCase(),
428428
old_table.ignoredProperties(),
429429
old_table.viewOriginalText(),
430+
old_table.viewDependencyList(),
431+
old_table.tableConstraints(),
432+
old_table.deltaRuntimeProperties(),
433+
old_table.pipelineUuid(),
434+
old_table.rowFilter(),
435+
old_table.columnMasks(),
436+
old_table.enableAutoMaintenance(),
437+
old_table.effectiveAutoMaintenanceFlag(),
438+
old_table.baseTableId(),
439+
old_table.baseTableLocation(),
440+
old_table.accessPoint(),
441+
old_table.deltaUniformIceberg(),
442+
old_table.shallowClones(),
443+
old_table.encryptionDetails(),
444+
old_table.deltaSharingKind(),
445+
old_table.reconciliationDefinition(),
446+
old_table.parentTable(),
447+
old_table.partitionLogLocation(),
448+
old_table.capabilities(),
449+
old_table.auxiliaryManagedLocation(),
450+
old_table.provisioningInfo(),
451+
old_table.useRemoteFiltering(),
452+
old_table.deltaCoordinatedCommitsInfo(),
453+
old_table.rowFiltersImplicitFromABAC(),
454+
old_table.columnMasksImplicitFromABAC(),
455+
old_table.entityStorageLocations(),
456+
old_table.parentTableUuid(),
457+
old_table.isArclightTableCreation(),
458+
old_table.resourceName(),
459+
old_table.governanceMetadata()
430460
)
431461
else:
432462
new_table = self._catalog_table(

0 commit comments

Comments
 (0)