[SQL script] Unterminated dollar quote $$ 오류 스프링 설정으로 해결하기
·
디버깅∕오류해결
Spring Boot 프로젝트 중, schema.sql 과 data.sql 에 function(procedure) 를 기입했더니 다음과 같은 PSQLException 이 발생하며 제대로 동작하지 않았다. 👾 오류메세지 👾 Caused by: org.postgresql.util.PSQLException: Unterminated dollar quote started at position 95 in SQL CREATE OR REPLACE FUNCTION public.create_schema() RETURNS trigger LANGUAGE 'plpgsql' AS $BODY$ DECLARE msg varchar(100). Expected terminating $$ 오류 내용을 확인해보면 함수 내부에 쓰인 $$ 달..