Update of /cvsroot/perfparse/_perfparse/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7758/scripts
Modified Files:
mysql_create.sql
Log Message:
Made saved graphs working - some bugs still unresolved
Index: mysql_create.sql
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/scripts/mysql_create.sql,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** mysql_create.sql 20 Jun 2007 22:25:11 -0000 1.22
--- mysql_create.sql 12 Aug 2007 00:11:45 -0000 1.23
***************
*** 327,332 ****
ON DELETE RESTRICT,
scale INT NOT NULL,
! minin INT,
! maxin INT,
timerange CHAR(1) NOT NULL,
relativetime INT,
--- 327,332 ----
ON DELETE RESTRICT,
scale INT NOT NULL,
! minin DOUBLE,
! maxin DOUBLE,
timerange CHAR(1) NOT NULL,
relativetime INT,
***************
*** 340,345 ****
s_cri BOOLEAN NOT NULL,
s_sta BOOLEAN NOT NULL,
graphtitle VARCHAR(250),
! g_sigma INT NOT NULL
) type=InnoDB;
--- 340,347 ----
s_cri BOOLEAN NOT NULL,
s_sta BOOLEAN NOT NULL,
+ s_smo BOOLEAN NOT NULL,
graphtitle VARCHAR(250),
! g_sigma DOUBLE NOT NULL,
! percent BOOLEAN NOT NULL default FALSE
) type=InnoDB;
|