PostgreSQL function definition in SQuirreL: unterminated dollar-quoted string

前端 未结 1 643
说谎
说谎 2020-12-06 10:30

I have the following function definition for a PostgreSQL 9.3.4 database:

CREATE OR REPLACE FUNCTION update_modified_timestamp()  
RETURNS TRIGGER AS $$
  BE         


        
1条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-06 11:04

    You can change the statement separator so the statement is not split on a ;:

    Go to: SessionSession PropertiesSQLStatement Separator

    Even though you can't change it to an empty string, you can change it for example to //, which allows execution of the statement in the question.

    0 讨论(0)
提交回复
热议问题