Skip to content

Commit 92c8726

Browse files
committed
reorder issues
1 parent b41d05e commit 92c8726

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

tools/greenplum-to-pg-tests/issues.yaml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@ stat:
33
total_ok: 15
44
ok_percent: 65.21739130434783
55
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)
636
- name: is distinct
737
count: 185361
838
issue_link: https://github.com/ydb-platform/ydb/issues/7182
@@ -13,6 +43,20 @@ issues:
1343
issue_link: https://github.com/ydb-platform/ydb/issues/7184
1444
issue_regexp: "^alternative is not implemented yet : 37$"
1545
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;
1660
- name: Support table alias in update
1761
count: 29307
1862
issue_link: https://github.com/ydb-platform/ydb/issues/7187
@@ -36,18 +80,6 @@ issues:
3680
issue_regexp:
3781
- "Error while parsing query."
3882
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"
5183
- name: drop external table
5284
count: 2
5385
tag:
@@ -63,20 +95,6 @@ issues:
6395
issue_regexp:
6496
- '^RawStmt: alternative is not implemented yet : 277$'
6597
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;
8098
- name: Stored procedures
8199
count: 607374
82100
issue_regexp:
@@ -96,14 +114,6 @@ issues:
96114
count: 0
97115
issue_regexp:
98116
- 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
107117
- name: 'PG: Support NOT DISTINCT'
108118
count: 11
109119
issue_regexp:
@@ -117,12 +127,6 @@ issues:
117127
count: 480183
118128
issue_regexp:
119129
- '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)
126130
- name: Unimplemented Discard
127131
count: 0
128132
issue_regexp:
@@ -145,7 +149,3 @@ issues:
145149
- name: Lock table
146150
issue_regexp: "^RawStmt: alternative is not implemented yet : 289$"
147151
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

Comments
 (0)