mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-24 22:09:24 +00:00
Moved the problematic tests to the tests file that is not considered when certain locales are used (#33785)
This commit is contained in:
parent
421f58e172
commit
0d4683850c
@ -11,3 +11,9 @@ SELECT CONCAT(CONCAT(SUBSTRING("first_name",1,LENGTH("first_name")-2),UCASE(LEFT
|
||||
|
||||
upperCasingTheSecondLetterFromTheRightFromFirstNameWithWhere
|
||||
SELECT CONCAT(CONCAT(SUBSTRING("first_name",1,LENGTH("first_name")-2),UCASE(LEFT(RIGHT("first_name",2),1))),RIGHT("first_name",1)) f, COUNT(*) c FROM "test_emp" WHERE CONCAT(CONCAT(SUBSTRING("first_name",1,LENGTH("first_name")-2),UCASE(LEFT(RIGHT("first_name",2),1))),RIGHT("first_name",1))='AlejandRo' GROUP BY CONCAT(CONCAT(SUBSTRING("first_name",1,LENGTH("first_name")-2),UCASE(LEFT(RIGHT("first_name",2),1))),RIGHT("first_name",1)) ORDER BY CONCAT(CONCAT(SUBSTRING("first_name",1,LENGTH("first_name")-2),UCASE(LEFT(RIGHT("first_name",2),1))),RIGHT("first_name",1)) LIMIT 10;
|
||||
|
||||
ucaseInline1
|
||||
SELECT UCASE('ElAsTiC') upper;
|
||||
|
||||
ucaseInline3
|
||||
SELECT UCASE(' elastic ') upper;
|
@ -157,17 +157,9 @@ SELECT SUBSTRING('Elasticsearch', 10, 10) sub;
|
||||
ucaseFilter
|
||||
SELECT UCASE(gender) uppercased, COUNT(*) count FROM "test_emp" WHERE UCASE(gender) = 'F' GROUP BY UCASE(gender);
|
||||
|
||||
//https://github.com/elastic/elasticsearch/issues/33687
|
||||
//ucaseInline1
|
||||
//SELECT UCASE('ElAsTiC') upper;
|
||||
|
||||
ucaseInline2
|
||||
SELECT UCASE('') upper;
|
||||
|
||||
//https://github.com/elastic/elasticsearch/issues/33687
|
||||
//ucaseInline3
|
||||
//SELECT UCASE(' elastic ') upper;
|
||||
|
||||
//
|
||||
// Group and order by
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user