It looks like "offset" is a reserved word in version 1.4.181, where it wasn't in 1.3.176. In particular, you can't create a table with a column called offset unless you quote it.
Offset is not currently listed as a reserved word here: http://www.h2database.com/html/advanced.html?highlight=reserved&search=reserved#firstFound To replicate this, start the console and run this: CREATE TABLE THING (OFFSET DOUBLE); and it gives a syntax error, while this does not: CREATE TABLE THING (`OFFSET` DOUBLE); Is this a bug in the code, the documentation, or am I doing something wrong? Paul -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.
