mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-02-07 03:12:35 +00:00
13 lines
343 B
SQL
13 lines
343 B
SQL
UPDATE
|
|
classification
|
|
SET
|
|
json = JSON_SET(
|
|
json,
|
|
'$.autoClassificationConfig',
|
|
CAST(
|
|
'{"enabled": true, "conflictResolution": "highest_priority", "minimumConfidence": 0.6, "requireExplicitMatch": true}'
|
|
AS JSON
|
|
)
|
|
)
|
|
WHERE
|
|
JSON_VALUE(json, '$.name' RETURNING CHAR) = 'PII'; |