From 5a717ce8d989f7c39aa1d2d2de247e5909df31fa Mon Sep 17 00:00:00 2001 From: filimonov <1549571+filimonov@users.noreply.github.com> Date: Tue, 25 Feb 2020 01:55:00 +0100 Subject: [PATCH] missed edit --- dbms/tests/queries/0_stateless/01086_odbc_roundtrip.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dbms/tests/queries/0_stateless/01086_odbc_roundtrip.sql b/dbms/tests/queries/0_stateless/01086_odbc_roundtrip.sql index c56ab6f8725..2c31711d895 100644 --- a/dbms/tests/queries/0_stateless/01086_odbc_roundtrip.sql +++ b/dbms/tests/queries/0_stateless/01086_odbc_roundtrip.sql @@ -6,8 +6,9 @@ CREATE DATABASE test_01086; USE test_01086; CREATE TABLE t (x UInt8, y Float32, z String) ENGINE = Memory; -INSERT INTO t VALUES (1,0.1,'a'),(2,0.2,'b'),(3,0.3,'c'); +INSERT INTO t VALUES (1,0.1,'a я'),(2,0.2,'b ą'),(3,0.3,'c d'); select * from odbc('DSN={ClickHouse DSN (ANSI)}','test_01086','t') ORDER BY x; +select * from odbc('DSN={ClickHouse DSN (Unicode)}','test_01086','t') ORDER BY x; DROP DATABASE test_01086;