1

我正在尝试在我的 java 项目中使用 dbunit-express 在 Junit 测试中的 postgress 上创建一些表和函数。

我使用这个驱动程序:

<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.2-1003-jdbc4</version>

java类...

@Rule 
public EmbeddedDbTesterRule testDb = new EmbeddedDbTesterRule(); // with this you don't neet to call onSetup

@Test
public void testIt() throws Exception {

    try {
        DatabaseCreator databaseCreator = new DatabaseCreator();
        databaseCreator.setDdlFile("HistoryTables.ddl");
        databaseCreator.doCreateDbSchemaFromDdl(testDb.getSqlConnection());
    } catch (Exception e) {
        Assert.fail(e.getMessage());
    }
}

但我得到这个错误......

org.postgresql.util.PSQLException:错误:在“$BODY$”或附近未终止的美元引号字符串

函数看起来像这样。

CREATE OR REPLACE FUNCTION product_history()
RETURNS trigger AS
$BODY$
BEGIN
INSERT INTO product_history (id, product_id, edit_ts, name, print_provider_id,     description)
    VALUES (nextval('product_history_sequence'), OLD.id, now(), OLD.name,     OLD.print_provider_id, OLD.description);
RETURN NULL;
END;
$BODY$
LANGUAGE plpgsql;

创建在 PGAdmin 1.14.3 和 DBVisualizer 9.0.8 中工作正常

4

1 回答 1

1

create function代码中包含吗HistoryTables.ddl?如果是,则错误可能是由DatabaseCreator. 它将从 ddl 文件中读取的语句拆分为;(参见源代码的第 127 行。因此,该函数被拆分为多个语句,从而扰乱了语法。

尝试将函数代码移动到一个额外的文件中,并将该文件作为一个语句发送到您的服务器。

于 2013-09-21T11:44:07.857 回答