Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.0
-
None
-
Ubuntu 8.04 LTS, Sun JDK 1.6, Tomcat 6.0.20, HSQLDB 2.0 RC8
-
Chrome 3.0
-
HSQLDB 2.0 RC8
-
1.6
-
0.25
-
Ubuntu 8.04 LTS
Description
When Tomcat and Roller is set up with HSQLDB, I get a complaint when Roller tries to create its tables.
The exact message is "Unexpected token 'DEFAULT'" and comes up during the execution of the create table script for the table "webpage".
The bug is caused by a mistake in the keyword order and can be fixed by replacing:
action varchar(16) not null default 'custom'
with:
action varchar(16) default 'custom' not null
After this change all tables are created just fine.