Files
lovasoa 5c288b0ac9 Move database-specific SQL tests into per-database subdirectories
Restructure tests so files that only work on a single database engine
are
organized under `database-specific/<engine>/` instead of using long
`_no...`
suffixes. Add a dedicated test that runs these files only when the
current
database matches, and simplify the generic test runner by extracting
shared
execution logic.
2026-08-23 09:47:58 +02:00

7 lines
331 B
SQL

-- MSSQL nvarchar with non-ASCII must not be mangled by CAST to VARCHAR
drop table if exists variable_unicode_t;
create table variable_unicode_t(name nvarchar(100));
insert into variable_unicode_t values (N'日本語');
SET x = N'日本語';
select N'日本語' as expected, name as actual from variable_unicode_t where name = $x;