mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-05 20:17:07 +00:00
DeltaLake does not support profiler (#6495)
This commit is contained in:
parent
39df2a4845
commit
157fcd8dcf
@ -12,6 +12,10 @@ UPDATE dbservice_entity
|
||||
SET json = JSON_REMOVE(json, '$.connection.config.connectionOptions')
|
||||
WHERE serviceType = 'DeltaLake';
|
||||
|
||||
UPDATE dbservice_entity
|
||||
SET json = JSON_REMOVE(json, '$.connection.config.supportsProfiler')
|
||||
WHERE serviceType = 'DeltaLake';
|
||||
|
||||
UPDATE dashboard_service_entity
|
||||
SET json = JSON_INSERT(
|
||||
JSON_REMOVE(json, '$.connection.config.username'),
|
||||
|
||||
@ -12,6 +12,10 @@ UPDATE dbservice_entity
|
||||
SET json = json::jsonb #- '{connection,config,connectionOptions}'
|
||||
where serviceType = 'DeltaLake';
|
||||
|
||||
UPDATE dbservice_entity
|
||||
SET json = json::jsonb #- '{connection,config,supportsProfiler}'
|
||||
where serviceType = 'DeltaLake';
|
||||
|
||||
UPDATE dashboard_service_entity
|
||||
SET json = jsonb_set(json, '{connection,config,clientId}', json#>'{connection,config,username}')
|
||||
WHERE serviceType = 'Looker'
|
||||
|
||||
@ -43,10 +43,6 @@
|
||||
"supportsMetadataExtraction": {
|
||||
"title": "Supports Metadata Extraction",
|
||||
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
|
||||
},
|
||||
"supportsProfiler": {
|
||||
"title": "Supports Profiler",
|
||||
"$ref": "../connectionBasicType.json#/definitions/supportsProfiler"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user