You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ja...@apache.org on 2017/03/31 16:44:54 UTC

svn commit: r1789708 - /ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql

Author: james-masanz
Date: Fri Mar 31 16:44:54 2017
New Revision: 1789708

URL: http://svn.apache.org/viewvc?rev=1789708&view=rev
Log:
CTAKES-417 - to update to opennlp 1.7.2 need to update to hsql 2.3.4 which doesn't allow a double default to be specified with quotes around the value - need to change default '0' to default 0.  Presumably int also needs to be that way, changed int default '0' to 0 too.

Modified:
    ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql

Modified: ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql?rev=1789708&r1=1789707&r2=1789708&view=diff
==============================================================================
--- ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql (original)
+++ ctakes/trunk/ctakes-ytex/scripts/data/hsql/kernel/create_tables.sql Fri Mar 31 16:44:54 2017
@@ -58,10 +58,10 @@ CREATE CACHED TABLE classifier_eval (
 
 CREATE CACHED TABLE classifier_eval_svm (
 	classifier_eval_id int not null ,
-	cost double DEFAULT '0',
+	cost double DEFAULT 0,
   	weight varchar(50),
-	degree int DEFAULT '0',
-	gamma double DEFAULT '0',
+	degree int DEFAULT 0,
+	gamma double DEFAULT 0,
 	kernel int NULL,
 	supportVectors int null,
 	vcdim double null