You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE OR REPLACE PROCEDURE do_something ()
LANGUAGE plpgsql
AS $$
DECLARE
salt text;
BEGIN
-- Create a temporary table
CREATE TEMPORARY TABLE IF NOT EXISTS temp_id (
id varchar
) ON COMMIT DELETE ROWS;
TRUNCATE TABLE temp_id;
INSERT INTO temp_id
SELECT
id
FROM
jones;
END;
$$
The insert statement doesn't indent properly. Adding a comment before the insert statement resolves the issue.
The text was updated successfully, but these errors were encountered:
Version 5.5
The insert statement doesn't indent properly. Adding a comment before the insert statement resolves the issue.
The text was updated successfully, but these errors were encountered: