Aria Enabling Encryption
Step-by-step guide to enabling encryption for user-created and internal temporary Aria tables, including the requirement to manually rebuild existing tables using `ALTER TABLE`.
Encrypting User-created Tables
Encrypting Existing Tables
SET GLOBAL aria_encrypt_tables=ON;SELECT TABLE_SCHEMA, TABLE_NAME
FROM information_schema.TABLES
WHERE ENGINE='Aria'
AND ROW_FORMAT='PAGE'
AND TABLE_SCHEMA != 'information_schema';ALTER TABLE test.aria_table ENGINE=Aria ROW_FORMAT=PAGE;Encrypting Internal On-disk Temporary Tables
Manually Encrypting Tables
Last updated
Was this helpful?

