我遇到了DBUnit导致SQL插入错误的问题。假设我在我的dbunit testdata.xml文件中有这个:
<myschema.mytable id="1" value1="blah" value2="foo" />
我有一张这样的桌子(postgres)
myschema.mytable有一个id,value1,value2和一个日期字段,比如说“lastmodified”。 lastmodified列是带有修饰符“not null default now()”
的时间戳似乎dbunit读取表元数据并尝试为我的testdata.xml文件中未指定的任何列插入空值。所以上面的xml导致这样的插入:
insert into myschema.mytable (id,value1,value2,lastmodified) values (1,'blah','foo',null)
运行测试时(dbunit / maven插件)我收到如下错误:
Error executing database operation: REFRESH: org.postgresql.util.PSQLException: ERROR: null value in column "lastmodified" violates not-null constraint
有没有办法告诉DBUnit在我没有指定的字段上插入空值?
编辑:使用dbunit 2.5.3,junit 4.12,postgressql驱动程序9.4.1208