-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathDorisBugs.java
More file actions
45 lines (34 loc) · 1.62 KB
/
DorisBugs.java
File metadata and controls
45 lines (34 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package sqlancer.doris;
public final class DorisBugs {
// https://github.com/apache/doris/issues/19370
// Internal Error occur in GroupBy&Having sql
// fixed by https://github.com/apache/doris/pull/19559
public static boolean bug19370;
// https://github.com/apache/doris/issues/19374
// Different result of having not ($value in column) and having ($value not in column)
// fixed by https://github.com/apache/doris/pull/19471
public static boolean bug19374;
// https://github.com/apache/doris/issues/19611
// ERROR occur in nested subqueries with same column name and union
public static boolean bug19611 = true;
// https://github.com/apache/doris/issues/36070
// Expression evaluate to NULL but is treated as FALSE in where clause
public static boolean bug36070 = true;
// https://github.com/apache/doris/issues/36072
// SELECT DISTINCT does not work with aggregate key column
public static boolean bug36072 = true;
// https://github.com/apache/doris/issues/36342
// Wrong result with INNER JOIN and CURRENT_TIMESTAMP
public static boolean bug36342 = true;
// https://github.com/apache/doris/issues/36343
// Wrong result with SELECT DISTINCT and UNIQUE model
public static boolean bug36343 = true;
// https://github.com/apache/doris/issues/36346
// Wrong result with LEFT JOIN SELECT DISTINCT and IN operation
public static boolean bug36346 = true;
// https://github.com/apache/doris/issues/36351
// Wrong result with TINYINT column with value -1049190528
public static boolean bug36351 = true;
private DorisBugs() {
}
}