mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-22 16:08:13 +00:00

added migrations for data diff test definition (cherry picked from commit 52b547ede14dcceec63a60a7a98bec2ed41b5c94)
18 lines
533 B
SQL
18 lines
533 B
SQL
UPDATE test_definition
|
|
SET json = JSON_MERGE_PRESERVE(
|
|
json,
|
|
JSON_OBJECT(
|
|
'parameterDefinition',
|
|
JSON_ARRAY(
|
|
JSON_OBJECT(
|
|
'name', 'caseSensitiveColumns',
|
|
'dataType', 'BOOLEAN',
|
|
'required', false,
|
|
'description', 'Use case sensitivity when comparing the columns.',
|
|
'displayName', 'Case sensitive columns'
|
|
)
|
|
)
|
|
)
|
|
)
|
|
WHERE name = 'tableDiff';
|