Re: vcl.sql fails inserting dumping data for table variable

2009-09-15 Thread Josh Thompson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Natalia, Thanks for the bug report. I've updated the definition of the variable table to include the serialization field (I missed it when I checked it in a few days ago). You should go ahead and modify your schema to include this field. Josh On

Standalone lab provisioning

2009-09-15 Thread Terry McGuire
Hello friendly and knowledgable VCL users. I've been tasked with setting up a demonstration VCL service using a small cluster we had kicking around - basically a bunch of towers and a network. I have the cluster's head node up and running with the VCL database, web server and management n

Re: vcl.sql fails inserting dumping data for table variable

2009-09-15 Thread Natalia Watanabe
Hi Josh, Thank you for the update. At the moment it's easy to add the column, like this: ALTER TABLE `variable` ADD COLUMN `serialization` enum('none','yaml','phpserialize') NOT NULL default 'none'; but the INSERT sentence is still failing, due to `timestamp` column which is not null. I've modi