How to Fix the \'Unterminated String\' Error When Creating Stored Procedures with Goose and PostgreSQL?

Patricia Arquette
Release: 2024-11-03 01:30:29
Original
751 people have browsed it

How to Fix the

Postgres Goose Raises Unterminated String Error

Issue

When attempting to create a stored procedure with Goose using a PostgreSQL database, the process encounters the following error:

(pq: unterminated dollar-quoted string at or near "$BODY$
BEGIN
    LOOP
        -- first try to update the key
        UPDATE userslocations SET count = count+1 WHERE userid = user_id AND locationid = location_id;
"), quitting migration.
Copy after login

Cause

Goose's error echoing from the pq library indicates misformatted SQL. Specifically, complex statements containing semicolons require special annotation in Goose:

Resolution

To rectify the error, annotate the SQL in the following manner:

CREATE OR REPLACE FUNCTION add_userlocation(user_id INT, location_id INT) RETURNS VOID AS
$BODY$
-- +goose StatementBegin
BEGIN
       LOOP
           UPDATE userslocations SET count = count+1 WHERE userid = user_id AND locationid = location_id;
        IF found THEN
            RETURN;
        END IF;
        BEGIN
            INSERT INTO userslocations(userid,locationid, count) VALUES (user_id, location_id, 1);
               RETURN;
           EXCEPTION WHEN unique_violation THEN
        END;
       END LOOP;
-- +goose StatementEnd
END;
$BODY$
LANGUAGE plpgsql;
Copy after login

By declaring the beginning and end of each statement, Goose is instructed to handle the SQL properly, resolving the unterminated string error.

The above is the detailed content of How to Fix the \'Unterminated String\' Error When Creating Stored Procedures with Goose and PostgreSQL?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!