【发布时间】:2016-06-14 13:45:18
【问题描述】:
Liquibase error: unterminated dollar-quoted string at or near "$BODY$`
更改日志 xml 有一个条目:见下文 包含文件="/home/dev/....../admin_script.sql"
文件内容:
...............
CREATE OR REPLACE FUNCTION my_schema.function-name()
RETURNS smallint AS
$BODY$
DECLARE
v_next_gen_id smallint := 0;
BEGIN
..........
例外:
liquibase.exception.DatabaseException: Error executing SQL CREATE OR REPLACE FUNCTION function name()
ETURNS smallint AS
$BODY$
DECLARE
v_next_gen_id smallint := 0: ERROR: unterminated dollar-quoted string at or near "$BODY$
感谢任何帮助解决此问题
【问题讨论】:
标签: java postgresql plpgsql liquibase