From 328d3f4b9210662f3fa25a5a20d1f32e7a420d12 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Sun, 10 Sep 2023 17:55:12 +0200 Subject: [PATCH] deactivate chinese text test for maria db --- odbc-api/tests/integration.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/odbc-api/tests/integration.rs b/odbc-api/tests/integration.rs index 1c6826db..f08beb9e 100644 --- a/odbc-api/tests/integration.rs +++ b/odbc-api/tests/integration.rs @@ -3715,7 +3715,9 @@ fn execute_select_insert_select(profile: &Profile) { // #[test_case(MSSQL; "Microsoft SQL Server")] Without changing server configuration VARCHAR(50) // does not seem to store things in UTF-8, but rather use an ASCII encoding which can not represent // the chinese characters. -#[test_case(MARIADB; "Maria DB")] +// Window hosted MARIA DB seems to also have trouble storying utf-8 in a varchar(50). Runs fine +// though with windows client and linux server +// #[test_case(MARIADB; "Maria DB")] #[test_case(SQLITE_3; "SQLite 3")] #[test_case(POSTGRES; "PostgreSQL")] fn chinese_text_argument(profile: &Profile) {