1/4 -- This script tests the capabilities of plpgsql of sqlline 2/4 create or replace function test_function(updateName text, idName numeric) returns void as $$ begin update test_last_name set last_name = updateName where id = idName; Error: Unterminated dollar quote started at position 91 in SQL create or replace function test_function(updateName text, idName numeric) returns void as $$ begin update test_last_name set last_name = updateName where id = idName. Expected terminating $$ (state=42601,code=0) Aborting command set because "force" is false and command failed: "create or replace function test_function(updateName text, idName numeric) returns void as $$ begin update test_last_name set last_name = updateName where id = idName;"