1CREATE TABLE power_profile( 2 device STRING, 3 cpu INT, 4 cluster INT, 5 freq INT, 6 power DOUBLE, 7 UNIQUE(device, cpu, cluster, freq) 8); 9 10CREATE TABLE trace_metrics(name STRING); 11 12CREATE TABLE debug_slices( 13 id BIGINT, 14 name STRING, 15 ts BIGINT, 16 dur BIGINT, 17 depth BIGINT 18); 19 20CREATE VIRTUAL TABLE window USING window(); 21