summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2026-02-26 09:56:44 +0100
committerSlávek Banko <slavek.banko@axis.cz>2026-02-26 09:56:44 +0100
commit25f26a58f80059be720630d09f7c5f9dd10c66f5 (patch)
treea9ff4828bbe64e780d608e69d562a1f9764bf7ab
parentdc749f0e7dedf8642f2fc933d224b6c9897141aa (diff)
downloadpytqt-fix/national-encoding-in-testdb.tar.gz
pytqt-fix/national-encoding-in-testdb.zip
Use utf8 encoding for national characters in test databases.fix/national-encoding-in-testdb
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--examples/SQL/testdb_mysql.sql2
-rw-r--r--examples/SQL/testdb_pg.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/SQL/testdb_mysql.sql b/examples/SQL/testdb_mysql.sql
index 144d4c9..ca6913b 100644
--- a/examples/SQL/testdb_mysql.sql
+++ b/examples/SQL/testdb_mysql.sql
@@ -52,6 +52,6 @@ insert into prices (id, name, price) values
(5, "Tux, der Pinguin", 65.35),
(6, "Makroskop", 985000.0),
(7, "Regenbaum", 1235.65),
- (8, "Bluterguß", 23.95),
+ (8, "Bluterguß", 23.95),
(9, "Weltmeisterschaft", 2.95),
(10, "Premiere Dekoder", -185.75);
diff --git a/examples/SQL/testdb_pg.sql b/examples/SQL/testdb_pg.sql
index 73a4270..ee3a875 100644
--- a/examples/SQL/testdb_pg.sql
+++ b/examples/SQL/testdb_pg.sql
@@ -185,7 +185,7 @@ COPY "prices" FROM stdin;
5 Tux, der Pinguin 65.35
6 Makroskop 985000
7 Regenbaum 1235.65
-8 Bluterguß 23.95
+8 Bluterguß 23.95
9 Weltmeisterschaft 2.95
10 Premiere Dekoder -185.75
\.