3
3
total_ok : 15
4
4
ok_percent : 65.21739130434783
5
5
issues :
6
+ - name : Transaction control (OK)
7
+ count : 21661922
8
+ query_regexp :
9
+ - " (?i)^\\ s*COMMIT\\ s*;?\\ s*$"
10
+ - " (?i)^\\ s*ROLLBACK\\ s*;?\\ s*$"
11
+ - name : table not found
12
+ count : 8256783
13
+ issue_regexp : Cannot find table
14
+ print_issue_to_log : True
15
+ - name : Select from pg_tables
16
+ count : 3930760
17
+ query_regexp :
18
+ - (?is)SELECT.*FROM\s+pg_
19
+ - name : Set variables
20
+ count : 1553568
21
+ issue_regexp : " VariableSetStmt, not supported name"
22
+ - name : ' PG: InsertStmt: not supported onConflictClause'
23
+ count : 1482133
24
+ issue_link : https://github.com/ydb-platform/ydb/issues/7194
25
+ issue_regexp :
26
+ - ' InsertStmt: not supported onConflictClause'
27
+ example : |
28
+ INSERT INTO table (hostname, updated, max_connections) VALUES ($1, NOW(), $2)
29
+ ON CONFLICT (hostname) DO UPDATE SET updated = NOW(), max_connections = $2
30
+ - name : Generator functions in SELECT
31
+ count : 317436
32
+ issue_link : https://github.com/ydb-platform/ydb/issues/7195
33
+ issue_regexp :
34
+ - ' ^Generator functions are not allowed in: SELECT$'
35
+ example : SELECT UNNEST($1)
6
36
- name : is distinct
7
37
count : 185361
8
38
issue_link : https://github.com/ydb-platform/ydb/issues/7182
@@ -13,6 +43,20 @@ issues:
13
43
issue_link : https://github.com/ydb-platform/ydb/issues/7184
14
44
issue_regexp : " ^alternative is not implemented yet : 37$"
15
45
example : select least(1,2)
46
+ - name : Distributed randomly
47
+ count : 147099
48
+ tag :
49
+ - greenplum
50
+ issue_regexp :
51
+ - ' ERROR: syntax error at or near "RANDOMLY"'
52
+ - ' ERROR: syntax error at or near "DISTRIBUTED"'
53
+ query_regexp :
54
+ - (?i)DISTRIBUTED\s+RANDOMLY
55
+ example : |
56
+ (
57
+ SELECT * FROM table
58
+ )
59
+ DISTRIBUTED RANDOMLY;
16
60
- name : Support table alias in update
17
61
count : 29307
18
62
issue_link : https://github.com/ydb-platform/ydb/issues/7187
@@ -36,18 +80,6 @@ issues:
36
80
issue_regexp :
37
81
- " Error while parsing query."
38
82
skip : true
39
- - name : Select from pg_tables
40
- count : 3930760
41
- query_regexp :
42
- - (?is)SELECT.*FROM\s+pg_
43
- - name : Transaction control (OK)
44
- count : 21661922
45
- query_regexp :
46
- - " (?i)^\\ s*COMMIT\\ s*;?\\ s*$"
47
- - " (?i)^\\ s*ROLLBACK\\ s*;?\\ s*$"
48
- - name : Set variables
49
- count : 1553568
50
- issue_regexp : " VariableSetStmt, not supported name"
51
83
- name : drop external table
52
84
count : 2
53
85
tag :
@@ -63,20 +95,6 @@ issues:
63
95
issue_regexp :
64
96
- ' ^RawStmt: alternative is not implemented yet : 277$'
65
97
example : create table t as select 1
66
- - name : Distributed randomly
67
- count : 147099
68
- tag :
69
- - greenplum
70
- issue_regexp :
71
- - ' ERROR: syntax error at or near "RANDOMLY"'
72
- - ' ERROR: syntax error at or near "DISTRIBUTED"'
73
- query_regexp :
74
- - (?i)DISTRIBUTED\s+RANDOMLY
75
- example : |
76
- (
77
- SELECT * FROM table
78
- )
79
- DISTRIBUTED RANDOMLY;
80
98
- name : Stored procedures
81
99
count : 607374
82
100
issue_regexp :
@@ -96,14 +114,6 @@ issues:
96
114
count : 0
97
115
issue_regexp :
98
116
- Expected type cast node as is_local arg, but got node with tag
99
- - name : ' PG: InsertStmt: not supported onConflictClause'
100
- count : 1482133
101
- issue_link : https://github.com/ydb-platform/ydb/issues/7194
102
- issue_regexp :
103
- - ' InsertStmt: not supported onConflictClause'
104
- example : |
105
- INSERT INTO table (hostname, updated, max_connections) VALUES ($1, NOW(), $2)
106
- ON CONFLICT (hostname) DO UPDATE SET updated = NOW(), max_connections = $2
107
117
- name : ' PG: Support NOT DISTINCT'
108
118
count : 11
109
119
issue_regexp :
@@ -117,12 +127,6 @@ issues:
117
127
count : 480183
118
128
issue_regexp :
119
129
- ' FuncCall: expected pg_catalog, but got: '
120
- - name : Generator functions in SELECT
121
- count : 317436
122
- issue_link : https://github.com/ydb-platform/ydb/issues/7195
123
- issue_regexp :
124
- - ' ^Generator functions are not allowed in: SELECT$'
125
- example : SELECT UNNEST($1)
126
130
- name : Unimplemented Discard
127
131
count : 0
128
132
issue_regexp :
@@ -145,7 +149,3 @@ issues:
145
149
- name : Lock table
146
150
issue_regexp : " ^RawStmt: alternative is not implemented yet : 289$"
147
151
example : LOCK TABLE asd IN EXCLUSIVE MODE
148
- - name : table not found
149
- count : 8256783
150
- issue_regexp : Cannot find table
151
- print_issue_to_log : True
0 commit comments