blob: a19032664755b35e1cf1663a9c3333fc0da75da4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
-- SQL delta update from rteval-1.4.sql to rteval-1.5.sql
UPDATE rteval_info SET value = '1.5' WHERE key = 'sql_schema_ver';
-- TABLE: hwlatdetect_summary
-- Tracks hwlatdetect results for a particular hardware
--
CREATE TABLE hwlatdetect_summary (
rterid INTEGER REFERENCES rtevalruns(rterid) NOT NULL,
duration INTEGER NOT NULL,
threshold INTEGER NOT NULL,
timewindow INTEGER NOT NULL,
width INTEGER NOT NULL,
samplecount INTEGER NOT NULL,
hwlat_min REAL NOT NULL,
hwlat_avg REAL NOT NULL,
hwlat_max REAL NOT NULL
) WITHOUT OIDS;
GRANT SELECT, INSERT ON hwlatdetect_summary TO rtevparser;
-- TABLE: hwlatdetect_samples
-- Contains the hwlatdetect sample records from a particular run
--
CREATE TABLE hwlatdetect_samples (
rterid INTEGER REFERENCES rtevalruns(rterid) NOT NULL,
timestamp NUMERIC(20,10) NOT NULL,
latency REAL NOT NULL
) WITHOUT OIDS;
GRANT SELECT, INSERT ON hwlatdetect_samples TO rtevparser;
|