--- a/src/Pure/General/sql.scala Mon Mar 06 15:48:04 2023 +0100
+++ b/src/Pure/General/sql.scala Mon Mar 06 15:56:28 2023 +0100
@@ -549,8 +549,7 @@
execute_statement("UNLISTEN " + (if (name == "*") name else SQL.ident(name)))
def notify(name: String, payload: String = ""): Unit =
- execute_statement(
- "NOTIFY " + SQL.ident(name) + if_proper(payload, ", " + SQL.string(payload)))
+ execute_statement("NOTIFY " + SQL.ident(name) + if_proper(payload, ", " + SQL.string(payload)))
def get_notifications(): List[PGNotification] =
the_postgresql_connection.getNotifications() match {