OpenMetadata/bootstrap/sql/migrations/native/1.4.2/mysql/postDataMigrationSQLScript.sql
Teddy 451d73593e
[MINOR] partition migration issue with redshift servics (#16452)
* fix: partition migration issue with redshift servics

* chore: typo in sql comment
2024-05-29 10:49:27 +02:00

5 lines
234 B
SQL

-- Fix hanging partition migration
-- in 1.4.x `tablePartition.intervalType` should not exists
UPDATE table_entity
SET json = JSON_REMOVE(json, '$.tablePartition')
WHERE JSON_EXTRACT(json, '$.tablePartition.intervalType') IS NOT NULL;