mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
21 lines
1.1 KiB
SQL
21 lines
1.1 KiB
SQL
-- Tags: no-fasttest
|
||
-- Tag no-fasttest: depends on cld2 and nlp_data
|
||
|
||
SET allow_experimental_nlp_functions = 1;
|
||
|
||
SELECT detectLanguage('Они сошлись. Волна и камень, Стихи и проза, лед и пламень, Не столь различны меж собой.');
|
||
SELECT detectLanguage('Sweet are the uses of adversity which, like the toad, ugly and venomous, wears yet a precious jewel in his head.');
|
||
SELECT detectLanguage('A vaincre sans peril, on triomphe sans gloire.');
|
||
SELECT detectLanguage('二兎を追う者は一兎をも得ず');
|
||
SELECT detectLanguage('有情饮水饱,无情食饭饥。');
|
||
SELECT detectLanguageMixed('二兎を追う者は一兎をも得ず二兎を追う者は一兎をも得ず A vaincre sans peril, on triomphe sans gloire.');
|
||
|
||
SELECT detectCharset('Plain English');
|
||
SELECT detectLanguageUnknown('Plain English');
|
||
|
||
SELECT detectTonality('милая кошка');
|
||
SELECT detectTonality('ненависть к людям');
|
||
SELECT detectTonality('обычная прогулка по ближайшему парку');
|
||
|
||
SELECT detectProgrammingLanguage('#include <iostream>');
|