HeatWave Release Notes
For each table that you want to load into HeatWave, you must
define the HeatWave query processing engine
(RAPID
) as the secondary engine for the
table. To define RAPID
as the secondary
engine, specify the SECONDARY_ENGINE
table option in an ALTER
TABLE
or CREATE
TABLE
statement:
mysql> ALTER TABLE tbl_name SECONDARY_ENGINE = RAPID;
mysql> CREATE TABLE orders (id INT) SECONDARY_ENGINE = RAPID;