chore: change memory engine to innodb in migrations (#23460)

(cherry picked from commit f8f57fc4af14da84108b0246f81e807c0fbc7f1f)
This commit is contained in:
Teddy 2025-09-18 09:53:49 +02:00 committed by Teddy Crepineau
parent e8465c2357
commit d16834f01b

View File

@ -53,7 +53,7 @@ CREATE TEMPORARY TABLE IF NOT EXISTS column_to_table_mapping (
column_hash VARCHAR(768) PRIMARY KEY,
table_hash VARCHAR(768),
INDEX idx_table_hash (table_hash)
) ENGINE=MEMORY;
) ENGINE=InnoDB;
-- Populate mapping by extracting table hash (everything before the last dot)
INSERT INTO column_to_table_mapping (column_hash, table_hash)