CREATE TABLE `global_query_review_history` (
|
`hostname_max` varchar(64) NOT NULL,
|
`db_max` varchar(64) DEFAULT NULL,
|
`checksum` bigint(20) unsigned NOT NULL,
|
`sample` longtext NOT NULL,
|
`ts_min` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
`ts_max` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
`ts_cnt` float DEFAULT NULL,
|
`Query_time_sum` float DEFAULT NULL,
|
`Query_time_min` float DEFAULT NULL,
|
`Query_time_max` float DEFAULT NULL,
|
`Query_time_pct_95` float DEFAULT NULL,
|
`Query_time_stddev` float DEFAULT NULL,
|
`Query_time_median` float DEFAULT NULL,
|
`Lock_time_sum` float DEFAULT NULL,
|
`Lock_time_min` float DEFAULT NULL,
|
`Lock_time_max` float DEFAULT NULL,
|
`Lock_time_pct_95` float DEFAULT NULL,
|
`Lock_time_stddev` float DEFAULT NULL,
|
`Lock_time_median` float DEFAULT NULL,
|
`Rows_sent_sum` float DEFAULT NULL,
|
`Rows_sent_min` float DEFAULT NULL,
|
`Rows_sent_max` float DEFAULT NULL,
|
`Rows_sent_pct_95` float DEFAULT NULL,
|
`Rows_sent_stddev` float DEFAULT NULL,
|
`Rows_sent_median` float DEFAULT NULL,
|
`Rows_examined_sum` float DEFAULT NULL,
|
`Rows_examined_min` float DEFAULT NULL,
|
`Rows_examined_max` float DEFAULT NULL,
|
`Rows_examined_pct_95` float DEFAULT NULL,
|
`Rows_examined_stddev` float DEFAULT NULL,
|
`Rows_examined_median` float DEFAULT NULL,
|
`Rows_affected_sum` float DEFAULT NULL,
|
`Rows_affected_min` float DEFAULT NULL,
|
`Rows_affected_max` float DEFAULT NULL,
|
`Rows_affected_pct_95` float DEFAULT NULL,
|
`Rows_affected_stddev` float DEFAULT NULL,
|
`Rows_affected_median` float DEFAULT NULL,
|
`Rows_read_sum` float DEFAULT NULL,
|
`Rows_read_min` float DEFAULT NULL,
|
`Rows_read_max` float DEFAULT NULL,
|
`Rows_read_pct_95` float DEFAULT NULL,
|
`Rows_read_stddev` float DEFAULT NULL,
|
`Rows_read_median` float DEFAULT NULL,
|
`Merge_passes_sum` float DEFAULT NULL,
|
`Merge_passes_min` float DEFAULT NULL,
|
`Merge_passes_max` float DEFAULT NULL,
|
`Merge_passes_pct_95` float DEFAULT NULL,
|
`Merge_passes_stddev` float DEFAULT NULL,
|
`Merge_passes_median` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_min` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_max` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_median` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_min` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_max` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_ops_median` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_min` float DEFAULT NULL,
|
`InnoDB_IO_r_bytes_max` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_stddev` float DEFAULT NULL,
|
`InnoDB_IO_r_wait_median` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_min` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_max` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_stddev` float DEFAULT NULL,
|
`InnoDB_rec_lock_wait_median` float DEFAULT NULL,
|
`InnoDB_queue_wait_min` float DEFAULT NULL,
|
`InnoDB_queue_wait_max` float DEFAULT NULL,
|
`InnoDB_queue_wait_pct_95` float DEFAULT NULL,
|
`InnoDB_queue_wait_stddev` float DEFAULT NULL,
|
`InnoDB_queue_wait_median` float DEFAULT NULL,
|
`InnoDB_pages_distinct_min` float DEFAULT NULL,
|
`InnoDB_pages_distinct_max` float DEFAULT NULL,
|
`InnoDB_pages_distinct_pct_95` float DEFAULT NULL,
|
`InnoDB_pages_distinct_stddev` float DEFAULT NULL,
|
`InnoDB_pages_distinct_median` float DEFAULT NULL,
|
`QC_Hit_cnt` float DEFAULT NULL,
|
`QC_Hit_sum` float DEFAULT NULL,
|
`Full_scan_cnt` float DEFAULT NULL,
|
`Full_scan_sum` float DEFAULT NULL,
|
`Full_join_cnt` float DEFAULT NULL,
|
`Full_join_sum` float DEFAULT NULL,
|
`Tmp_table_cnt` float DEFAULT NULL,
|
`Tmp_table_sum` float DEFAULT NULL,
|
`Filesort_cnt` float DEFAULT NULL,
|
`Filesort_sum` float DEFAULT NULL,
|
`Tmp_table_on_disk_cnt` float DEFAULT NULL,
|
`Tmp_table_on_disk_sum` float DEFAULT NULL,
|
`Filesort_on_disk_cnt` float DEFAULT NULL,
|
`Filesort_on_disk_sum` float DEFAULT NULL,
|
`Bytes_sum` float DEFAULT NULL,
|
`Bytes_min` float DEFAULT NULL,
|
`Bytes_max` float DEFAULT NULL,
|
`Bytes_pct_95` float DEFAULT NULL,
|
`Bytes_stddev` float DEFAULT NULL,
|
`Bytes_median` float DEFAULT NULL,
|
KEY `hostname_max` (`hostname_max`,`checksum`,`ts_min`,`ts_max`),
|
KEY `ts_min` (`ts_min`),
|
KEY `checksum` (`checksum`)
|
) ENGINE=SPIDER DEFAULT CHARSET=latin1 COMMENT='user "skysql",password "skyvodka"'
|
/*!50100 PARTITION BY LIST (mod(checksum,4))
|
(PARTITION pt0 VALUES IN (0) COMMENT = ' tbl "global_query_review_history", host "192.168.0.30 192.168.0.30", port "5055 5054"' ENGINE = SPIDER,
|
PARTITION pt1 VALUES IN (1) COMMENT = ' tbl "global_query_review_history", host "192.168.0.30 192.168.0.30", port "5054 5055"' ENGINE = SPIDER,
|
PARTITION pt2 VALUES IN (2) COMMENT = ' tbl "global_query_review_history", host "192.168.0.30 192.168.0.30", port "5056 5057"' ENGINE = SPIDER,
|
PARTITION pt3 VALUES IN (3) COMMENT = ' tbl "global_query_review_history", host "192.168.0.30 192.168.0.30", port "5057 5056"' ENGINE = SPIDER) */
|