2

我遇到了导致 SQL 插入错误的 DBUnit 问题。假设我的 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

4

1 回答 1

1

使用 dbUnit “排除列”功能: 如何在运行时排除某些表列?

DbUnit 2.1 中引入的 FilteredTableMetaData 类可以与 IColumnFilter 接口结合使用,以决定在运行时包含或排除表列。

FilteredTableMetaData metaData = new FilteredTableMetaData(originalTable.getTableMetaData(), new MyColumnFilter());
ITable filteredTable = new CompositeTable(metaData, originalTable);
于 2018-06-17T00:11:00.177 回答