mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-20 13:23:52 +00:00
8 lines
293 B
SQL
8 lines
293 B
SQL
UPDATE test_definition
|
|
SET json = JSON_ARRAY_INSERT(
|
|
json,
|
|
CONCAT('$.supportedDataTypes[', JSON_LENGTH(json, '$.supportedDataTypes'), ']'),
|
|
'NUMERIC'
|
|
)
|
|
WHERE JSON_CONTAINS(json->'$.supportedDataTypes', '"NUMBER"')
|
|
AND NOT JSON_CONTAINS(json->'$.supportedDataTypes', '"NUMERIC"'); |