Hi, i stubled over a inconsistent behavior of mysql and h2/mysql:
consider a table product with tiltle and desc both definded as not null. an insert like this will work in mysql and h2/mysql (as metioned in the compatiblity doc): > INSERT INTO `product` (`description`) VALUES ( 'asdf' ); but this one should fail with some sql error just like in mysql: > INSERT INTO `product` (`title`,`description`) VALUES (NULL, 'asdf' ); A Hint where I might change that in h2 would be nice :) Best, Edmund -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To view this discussion on the web visit https://groups.google.com/d/msg/h2-database/-/mGUPBRiFz9MJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
