I'm having trouble getting HSQLDB to create a table with a boolean column. It seems that every time I try to specify a default value, I get an exception:
org.hsqldb.HsqlException: unexpected token: DEFAULT
I can create this problem even with this trivial table definition:
CREATE TABLE foo ( bar BOOLEAN NOT NULL DEFAULT FALSE );
According to the documentation, I should be able to do this!
See columnDefinition at http://www.hsqldb.org/doc/guide/ch09.html#create_table-section
Am I misunderstood something?
Nickj source share