You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2011/10/04 15:14:51 UTC

svn commit: r1178775 - /incubator/vcl/trunk/mysql/vcl.sql

Author: jfthomps
Date: Tue Oct  4 13:14:50 2011
New Revision: 1178775

URL: http://svn.apache.org/viewvc?rev=1178775&view=rev
Log:
VCL-522
Error in vcl.sql line 1694

changed insert for usergroupmembers to have comma at end of (1,4) instead of semicolon

Modified:
    incubator/vcl/trunk/mysql/vcl.sql

Modified: incubator/vcl/trunk/mysql/vcl.sql
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/mysql/vcl.sql?rev=1178775&r1=1178774&r2=1178775&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/vcl.sql (original)
+++ incubator/vcl/trunk/mysql/vcl.sql Tue Oct  4 13:14:50 2011
@@ -1691,7 +1691,7 @@ INSERT INTO `usergroup` (`id`, `name`, `
 INSERT INTO `usergroupmembers` (`userid`, `usergroupid`) VALUES 
 (1, 1),
 (1, 3),
-(1, 4);
+(1, 4),
 (1, 5);
 
 --