DBUnit坚持为未指定的值插入null,但我希望使用DB默认值

时间:2018-06-15 15:04:46

标签: database postgresql junit4 dbunit spring-test-dbunit

我遇到了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

1 个答案:

答案 0 :(得分:0)

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