Hello, I have expirienced a strange behavior with the UPDATE statement in HSQLDB. When I update some record in my table, it changes my TIME and DATE columns to null despite the fact that I didn't mention them in the statement, e.g.: stmt.executeUpdate("UPDATE my_table SET age=15 WHERE user_name='malcom'"); and I get column "age" changed to "15", and also columns "time" and ...