C'è un modo per dividere una lunga riga di codice PL / pgSQL su più righe? Il mio contesto è una funzione di trigger in cui registro inserisce una tabella secondo:
INSERT INTO insert_log (log_time, description)
VALUES (
now()
, 'A description. Made up of 3 semi long sentences. That I want to split, in the code, not in the log table, over 3 lines for readability.'
);