mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
795c1a98dc
* Fix_kql_issue_found_by_wingfuzz This commit fix the issues: https://github.com/ClickHouse/ClickHouse/issues/59036 https://github.com/ClickHouse/ClickHouse/issues/59037 both issues are same reason, the input query exceed the max_query_size, so the condition isEnd() of token is not meet and cause the assertion failure * fix_kql_issue_found_by_wingfuzz: use isValid instead of TokenType::EndOfStream * fix_kql_issue_found_by_wingfuzz: make functional test result consist * fix_kql_issue_found_by_wingfuzz: update test case for makeseries * fix_kql_issue_found_by_wingfuzz: disable makeseries * fix_kql_issue_found_by_wingfuzz: use isvalid() function to replace isEnd() function of TokenIterator to check the end of stream * fix_kql_issue_found_by_wingfuzz: add test case for max_query_size * fix_kql_issue_found_by_wingfuzz: fix AST structure * fix_kql_issue_found_by_wingfuzz: make sure the max query size test is in the dialect of kusto * fix_kql_issue_found_by_wingfuzz : restore max query size after test * fix_kql_issue_found_by_wingfuzz : fix typo --------- Co-authored-by: János Benjamin Antal <benjamin.antal@clickhouse.com>
28 lines
810 B
Plaintext
28 lines
810 B
Plaintext
-- distinct * --
|
|
Theodore Diaz Skilled Manual Bachelors 28
|
|
Stephanie Cox Management abcd defg Bachelors 33
|
|
Peter Nara Skilled Manual Graduate Degree 26
|
|
Latoya Shen Professional Graduate Degree 25
|
|
Apple Skilled Manual Bachelors 28
|
|
\N why Professional Partial College 38
|
|
-- distinct one column --
|
|
Skilled Manual
|
|
Management abcd defg
|
|
Professional
|
|
-- distinct two column --
|
|
Skilled Manual Bachelors
|
|
Management abcd defg Bachelors
|
|
Skilled Manual Graduate Degree
|
|
Professional Graduate Degree
|
|
Professional Partial College
|
|
-- distinct with where --
|
|
Skilled Manual Bachelors
|
|
Management abcd defg Bachelors
|
|
Skilled Manual Graduate Degree
|
|
Professional Graduate Degree
|
|
Professional Partial College
|
|
-- distinct with where, order --
|
|
Skilled Manual Bachelors
|
|
Skilled Manual Graduate Degree
|
|
Professional Graduate Degree
|