mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-07 17:18:23 +00:00
18 lines
533 B
MySQL
18 lines
533 B
MySQL
![]() |
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';
|