Add pt-table-usage, copied and converted from mk-table-usage.

This commit is contained in:
Daniel Nichter
2012-03-30 16:45:10 -06:00
parent 4300f2908b
commit 34602e89fe
22 changed files with 9746 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
drop database if exists ca;
create database ca;
use ca;
CREATE TABLE `interval_lmp_rt_5min` (
`datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`avg` float DEFAULT NULL,
`median` float DEFAULT NULL,
`reference` float DEFAULT NULL,
`interpolated` tinyint(3) unsigned DEFAULT '0',
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`datetime`),
KEY `interval_lmp_rt_5min_timestamp_idx` (`timestamp`)
) ENGINE=InnoDB;
CREATE TABLE `lmp_rt_5min` (
`datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`handle_node_lmp` mediumint(8) unsigned NOT NULL DEFAULT '0',
`lmp` float DEFAULT NULL,
`congestion` float DEFAULT NULL,
`loss` float DEFAULT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`interpolated` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`datetime`,`handle_node_lmp`),
KEY `lmp_rt_5min_handle_node_lmp_idxfk` (`handle_node_lmp`),
KEY `lmp_rt_5min_timestamp_idx` (`timestamp`)
) ENGINE=InnoDB;