From d1de9f3ca3a5f938d68bd9bfc4429fbaae0d2e28 Mon Sep 17 00:00:00 2001 From: Guillaume HUSTA Date: Sun, 14 Jan 2024 12:02:34 +0100 Subject: [PATCH] fix(sql): Use syntax SET CLIENT_ENCODING TO See: https://www.postgresql.org/docs/current/multibyte.html --- scripts/world.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/world.sql b/scripts/world.sql index 8e80d25..64bd6dd 100644 --- a/scripts/world.sql +++ b/scripts/world.sql @@ -7,7 +7,7 @@ BEGIN; -SET client_encoding = 'UTF8'; +SET client_encoding TO 'UTF8'; CREATE TABLE city ( id integer NOT NULL,