DBUnit出现此问题,导致SQL插入错误。假设我的dbunit testdata.xml文件中有这个:

<myschema.mytable id="1" value1="blah" value2="foo" />

我有一张这样的桌子(邮递员)
myschema.mytable有一个id、value1、value2和一个日期字段,比如“lastmodified”。lastmodified列是带有修饰符“not null default now()”的timestamp
似乎dbunit读取表元数据,并尝试为我的testdata.xml文件中未指定的任何列插入空值。因此,上面的xml导致如下插入:
insert into myschema.mytable (id,value1,value2,lastmodified) values (1,'blah','foo',null)

当运行测试(dbunit/maven plugin)时,会出现如下错误:
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

最佳答案

使用dbUnit“排除列”功能:
How to exclude some table columns at runtime?

关于database - DBUnit坚持为未指定的值插入null,但我希望使用数据库默认值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50878231/

10-12 14:24