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

This commit is contained in:
Teddy 2025-09-18 09:53:49 +02:00 committed by GitHub
parent f126fcf032
commit f8f57fc4af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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)