OpenMetadata/bootstrap
Sriharsha Chintalapani 53d4e71f13 Fix IT failures from CI integration-tests-mysql-elasticsearch
1. MySQL deleted column: revert the IFNULL wrapper to plain
   (json -> '$.deleted'). My earlier
   IFNULL(JSON_EXTRACT(json, '$.deleted'), FALSE) hit
   'Incorrect integer value: false for column deleted' on fresh installs
   because MySQL cannot coerce the resulting JSON scalar into TINYINT(1)
   when the column is STORED. The bare '(json -> '$.deleted')' form is
   what other OM tables already use, and MySQL converts JSON true/false
   to 1/0 directly for the BOOLEAN column. STORED + PRIMARY KEY stay
   in place.
2. DriveFileUploadIT: raise the four short atMost(5s) awaits to 20s
   with explicit pollDelay(ZERO) + pollInterval(200ms).
   K8sOMJobOperatorIT sets a global Awaitility pollInterval of 5s at
   class setup; any subsequent test with atMost <= 5s hits
   'Timeout must be greater than the poll delay'. Overriding the
   per-call poll settings insulates these asserts from the global
   leak.
2026-04-21 08:39:31 -07:00
..
sql Fix IT failures from CI integration-tests-mysql-elasticsearch 2026-04-21 08:39:31 -07:00
MIGRATION_SYSTEM.md MINOR - Remove flyway (#23179) 2025-10-28 09:11:03 +05:30
openmetadata-ops.sh Fix user creation through openmetadata-ops.sh (#23879) 2025-10-14 09:19:17 +05:30