springtestdbunit / spring-test-dbunit

Integration between the Spring testing framework and DBUnit
http://springtestdbunit.github.com/spring-test-dbunit/
Apache License 2.0
476 stars 238 forks source link

[]TEXT is not supported for Postgres #172

Closed ArthurHarkivsky closed 2 years ago

ArthurHarkivsky commented 2 years ago

DbUnit now has only these types:

package org.dbunit.dataset.datatype;

public abstract class DataType
{ private static final DataType[] TYPES = {
        VARCHAR, CHAR, LONGVARCHAR, NCHAR, NVARCHAR, LONGNVARCHAR, CLOB, NUMERIC, DECIMAL, BOOLEAN, BIT, INTEGER,
        TINYINT, SMALLINT, BIGINT, REAL, DOUBLE, FLOAT, DATE, TIME, TIMESTAMP,
        VARBINARY, BINARY, LONGVARBINARY, BLOB,
        //auxiliary types at the very end
        BIGINT_AUX_LONG
};

Please, add array types.