Liquibase 错误 [Postgresql]:未终止的美元报价字符串等于或接近“$BODY$
2022-09-01 11:32:22
Liquibase error: unterminated dollar-quoted string at or near "$BODY$`
Chaneg log xml 有一个条目:请参阅下面的 include file=“/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$
感谢任何帮助来解决这个问题