Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit62e4827

Browse files
committed
new regression data for 7.1
1 parentad7424e commit62e4827

File tree

8 files changed

+458
-407
lines changed

8 files changed

+458
-407
lines changed

‎src/test/mb/expected/big5.out

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
drop table �t�Ӹ��;
2+
ERROR: table "�t�Ӹ��" does not exist
23
create table �t�Ӹ�� (��~�O text, ���q���Y varchar, �a�} varchar(16));
34
create index �t�Ӹ��index1 on �t�Ӹ�� using btree (��~�O);
45
create index �t�Ӹ��index2 on �t�Ӹ�� using hash (���q���Y);
@@ -67,15 +68,15 @@ select *, octet_length(
6768
(3 rows)
6869

6970
select *, position('����' in ���q���Y) from �t�Ӹ��;
70-
��~�O | ���q���Y | �a�} |strpos
71-
--------+------------------+---------+--------
72-
�q���~ | �F�F��� | �_A01�� | 0
73-
�s�y�~ | �]���������q | ��B10�� | 3
74-
�\���~ | �����ѥ��������q | ��Z01�E | 5
71+
��~�O | ���q���Y | �a�} |position
72+
--------+------------------+---------+----------
73+
�q���~ | �F�F��� | �_A01�� |0
74+
�s�y�~ | �]���������q | ��B10�� |3
75+
�\���~ | �����ѥ��������q | ��Z01�E |5
7576
(3 rows)
7677

7778
select *, substring(���q���Y from 3 for 6 ) from �t�Ӹ��;
78-
��~�O | ���q���Y | �a�} | substr
79+
��~�O | ���q���Y | �a�} |substring
7980
--------+------------------+---------+--------------
8081
�q���~ | �F�F��� | �_A01�� | ���
8182
�s�y�~ | �]���������q | ��B10�� | �������q

‎src/test/mb/expected/euc_cn.out

Lines changed: 19 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,38 @@
11
drop table ���������;
2-
ERROR:Relation '���������' does not exist
2+
ERROR:parser: parse error at or near "("
33
create table ���������(���� text, ����� varchar, ��ע1A char(16));
4+
ERROR: parser: parse error at or near "("
45
create index ���������index1 on ��������� using btree(����);
6+
ERROR: parser: parse error at or near "("
57
create index ���������index2 on ��������� using btree(�����);
8+
ERROR: parser: parse error at or near "("
69
insert into ��������� values('������ʾ��','��A01��');
10+
ERROR: parser: parse error at or near "("
711
insert into ��������� values('����ͼ��','��B01��');
12+
ERROR: parser: parse error at or near "("
813
insert into ��������� values('���Գ���Ա','��Z01��');
14+
ERROR: parser: parse error at or near "("
915
vacuum ���������;
16+
ERROR: parser: parse error at or near "("
1017
select * from ���������;
11-
���� | ����� | ��ע1a
12-
------------+---------+--------
13-
������ʾ�� | ��A01�� |
14-
����ͼ�� | ��B01�� |
15-
���Գ���Ա | ��Z01�� |
16-
(3 rows)
17-
18+
ERROR: parser: parse error at or near "92"
1819
select * from ��������� where ����� = '��Z01��';
19-
���� | ����� | ��ע1a
20-
------------+---------+--------
21-
���Գ���Ա | ��Z01�� |
22-
(1 row)
23-
20+
ERROR: parser: parse error at or near "92"
2421
select * from ��������� where ����� ~* '��z01��';
25-
���� | ����� | ��ע1a
26-
------------+---------+--------
27-
���Գ���Ա | ��Z01�� |
28-
(1 row)
29-
22+
ERROR: parser: parse error at or near "92"
3023
select * from ��������� where ����� like '_Z01_';
31-
���� | ����� | ��ע1a
32-
------------+---------+--------
33-
���Գ���Ա | ��Z01�� |
34-
(1 row)
35-
24+
ERROR: parser: parse error at or near "92"
3625
select * from ��������� where ����� like '_Z%';
37-
���� | ����� | ��ע1a
38-
------------+---------+--------
39-
���Գ���Ա | ��Z01�� |
40-
(1 row)
41-
26+
ERROR: parser: parse error at or near "92"
4227
select * from ��������� where ���� ~ '����[��ͼ]';
43-
���� | ����� | ��ע1a
44-
------------+---------+--------
45-
������ʾ�� | ��A01�� |
46-
����ͼ�� | ��B01�� |
47-
(2 rows)
48-
28+
ERROR: parser: parse error at or near "92"
4929
select * from ��������� where ���� ~* '����[��ͼ]';
50-
���� | ����� | ��ע1a
51-
------------+---------+--------
52-
������ʾ�� | ��A01�� |
53-
����ͼ�� | ��B01�� |
54-
(2 rows)
55-
30+
ERROR: parser: parse error at or near "92"
5631
select *,character_length(����) from ���������;
57-
���� | ����� | ��ע1a | char_length
58-
------------+---------+--------+-------------
59-
������ʾ�� | ��A01�� | | 5
60-
����ͼ�� | ��B01�� | | 4
61-
���Գ���Ա | ��Z01�� | | 5
62-
(3 rows)
63-
32+
ERROR: parser: parse error at or near "caf5"
6433
select *,octet_length(����) from ���������;
65-
���� | ����� | ��ע1a | octet_length
66-
------------+---------+--------+--------------
67-
������ʾ�� | ��A01�� | | 10
68-
����ͼ�� | ��B01�� | | 8
69-
���Գ���Ա | ��Z01�� | | 10
70-
(3 rows)
71-
34+
ERROR: parser: parse error at or near "caf5"
7235
select *,position('��' in ����) from ���������;
73-
���� | ����� | ��ע1a | strpos
74-
------------+---------+--------+--------
75-
������ʾ�� | ��A01�� | | 3
76-
����ͼ�� | ��B01�� | | 0
77-
���Գ���Ա | ��Z01�� | | 0
78-
(3 rows)
79-
36+
ERROR: parser: parse error at or near "caf5"
8037
select *,substring(���� from 3 for 4) from ���������;
81-
���� | ����� | ��ע1a | substr
82-
------------+---------+--------+--------
83-
������ʾ�� | ��A01�� | | ��ʾ��
84-
����ͼ�� | ��B01�� | | ͼ��
85-
���Գ���Ա | ��Z01�� | | ����Ա
86-
(3 rows)
87-
38+
ERROR: parser: parse error at or near "caf5"

‎src/test/mb/expected/euc_jp.out

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
drop table �׻����Ѹ�;
2-
ERROR:Relation '�׻����Ѹ�' does not exist
2+
ERROR:table "�׻����Ѹ�" does not exist
33
create table �׻����Ѹ� (�Ѹ� text, ʬ�ॳ���� varchar, ����1A���� char(16));
44
create index �׻����Ѹ�index1 on �׻����Ѹ� using btree (�Ѹ�);
55
create index �׻����Ѹ�index2 on �׻����Ѹ� using hash (ʬ�ॳ����);
@@ -70,16 +70,16 @@ select *,octet_length(
7070
(3 rows)
7171

7272
select *,position('��' in �Ѹ�) from �׻����Ѹ�;
73-
�Ѹ� | ʬ�ॳ���� | ����1a���� |strpos
74-
----------------------------+------------+------------+--------
75-
����ԥ塼���ǥ����ץ쥤 | ��A01�� | | 7
76-
����ԥ塼������ե��å��� | ʬB10�� | | 0
77-
����ԥ塼���ץ�����ޡ� | ��Z01�� | | 0
73+
�Ѹ� | ʬ�ॳ���� | ����1a���� |position
74+
----------------------------+------------+------------+----------
75+
����ԥ塼���ǥ����ץ쥤 | ��A01�� | |7
76+
����ԥ塼������ե��å��� | ʬB10�� | |0
77+
����ԥ塼���ץ�����ޡ� | ��Z01�� | |0
7878
(3 rows)
7979

8080
select *,substring(�Ѹ� from 10 for 4) from �׻����Ѹ�;
81-
�Ѹ� | ʬ�ॳ���� | ����1a���� | substr
82-
----------------------------+------------+------------+----------
81+
�Ѹ� | ʬ�ॳ���� | ����1a���� |substring
82+
----------------------------+------------+------------+-----------
8383
����ԥ塼���ǥ����ץ쥤 | ��A01�� | | �ץ쥤
8484
����ԥ塼������ե��å��� | ʬB10�� | | ���å���
8585
����ԥ塼���ץ�����ޡ� | ��Z01�� | | ��ޡ�

‎src/test/mb/expected/euc_kr.out

Lines changed: 19 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,38 @@
11
drop table ͪߩѦ���;
2-
ERROR:Relation 'ͪߩѦ���' does not exist
2+
ERROR:parser: parse error at or near "("
33
create table ͪߩѦ��� (��� text, ��׾�ڵ� varchar, ���1A�� char(16));
4+
ERROR: parser: parse error at or near "("
45
create index ͪߩѦ���index1 on ͪߩѦ��� using btree (���);
6+
ERROR: parser: parse error at or near "("
57
create index ͪߩѦ���index2 on ͪߩѦ��� using hash (��׾�ڵ�);
8+
ERROR: parser: parse error at or near "("
69
insert into ͪߩѦ��� values('��ǻ�͵��÷���', 'ѦA01߾');
10+
ERROR: parser: parse error at or near "("
711
insert into ͪߩѦ��� values('��ǻ�ͱ׷��Ƚ�', '��B10��');
12+
ERROR: parser: parse error at or near "("
813
insert into ͪߩѦ��� values('��ǻ�����α׷���', '��Z01��');
14+
ERROR: parser: parse error at or near "("
915
vacuum ͪߩѦ���;
16+
ERROR: parser: parse error at or near "("
1017
select * from ͪߩѦ���;
11-
��� | ��׾�ڵ� | ���1a��
12-
------------------+----------+------------
13-
��ǻ�͵��÷��� | ѦA01߾ |
14-
��ǻ�ͱ׷��Ƚ� | ��B10�� |
15-
��ǻ�����α׷��� | ��Z01�� |
16-
(3 rows)
17-
18+
ERROR: parser: parse error at or near "92"
1819
select * from ͪߩѦ��� where ��׾�ڵ� = '��Z01��';
19-
��� | ��׾�ڵ� | ���1a��
20-
------------------+----------+------------
21-
��ǻ�����α׷��� | ��Z01�� |
22-
(1 row)
23-
20+
ERROR: parser: parse error at or near "92"
2421
select * from ͪߩѦ��� where ��׾�ڵ� ~* '��z01��';
25-
��� | ��׾�ڵ� | ���1a��
26-
------------------+----------+------------
27-
��ǻ�����α׷��� | ��Z01�� |
28-
(1 row)
29-
22+
ERROR: parser: parse error at or near "92"
3023
select * from ͪߩѦ��� where ��׾�ڵ� like '_Z01_';
31-
��� | ��׾�ڵ� | ���1a��
32-
------------------+----------+------------
33-
��ǻ�����α׷��� | ��Z01�� |
34-
(1 row)
35-
24+
ERROR: parser: parse error at or near "92"
3625
select * from ͪߩѦ��� where ��׾�ڵ� like '_Z%';
37-
��� | ��׾�ڵ� | ���1a��
38-
------------------+----------+------------
39-
��ǻ�����α׷��� | ��Z01�� |
40-
(1 row)
41-
26+
ERROR: parser: parse error at or near "92"
4227
select * from ͪߩѦ��� where ��� ~ '��ǻ��[���]';
43-
��� | ��׾�ڵ� | ���1a��
44-
------------------+----------+------------
45-
��ǻ�͵��÷��� | ѦA01߾ |
46-
��ǻ�ͱ׷��Ƚ� | ��B10�� |
47-
(2 rows)
48-
28+
ERROR: parser: parse error at or near "92"
4929
select * from ͪߩѦ��� where ��� ~* '��ǻ��[���]';
50-
��� | ��׾�ڵ� | ���1a��
51-
------------------+----------+------------
52-
��ǻ�͵��÷��� | ѦA01߾ |
53-
��ǻ�ͱ׷��Ƚ� | ��B10�� |
54-
(2 rows)
55-
30+
ERROR: parser: parse error at or near "92"
5631
select *,character_length(���) from ͪߩѦ���;
57-
��� | ��׾�ڵ� | ���1a�� | char_length
58-
------------------+----------+------------+-------------
59-
��ǻ�͵��÷��� | ѦA01߾ | | 8
60-
��ǻ�ͱ׷��Ƚ� | ��B10�� | | 7
61-
��ǻ�����α׷��� | ��Z01�� | | 8
62-
(3 rows)
63-
32+
ERROR: parser: parse error at or near "bfeb"
6433
select *,octet_length(���) from ͪߩѦ���;
65-
��� | ��׾�ڵ� | ���1a�� | octet_length
66-
------------------+----------+------------+--------------
67-
��ǻ�͵��÷��� | ѦA01߾ | | 16
68-
��ǻ�ͱ׷��Ƚ� | ��B10�� | | 14
69-
��ǻ�����α׷��� | ��Z01�� | | 16
70-
(3 rows)
71-
34+
ERROR: parser: parse error at or near "bfeb"
7235
select *,position('��' in ���) from ͪߩѦ���;
73-
��� | ��׾�ڵ� | ���1a�� | strpos
74-
------------------+----------+------------+--------
75-
��ǻ�͵��÷��� | ѦA01߾ | | 4
76-
��ǻ�ͱ׷��Ƚ� | ��B10�� | | 0
77-
��ǻ�����α׷��� | ��Z01�� | | 0
78-
(3 rows)
79-
36+
ERROR: parser: parse error at or near "bfeb"
8037
select *,substring(��� from 3 for 4) from ͪߩѦ���;
81-
��� | ��׾�ڵ� | ���1a�� | substr
82-
------------------+----------+------------+----------
83-
��ǻ�͵��÷��� | ѦA01߾ | | �͵���
84-
��ǻ�ͱ׷��Ƚ� | ��B10�� | | �ͱ׷���
85-
��ǻ�����α׷��� | ��Z01�� | | �����α�
86-
(3 rows)
87-
38+
ERROR: parser: parse error at or near "bfeb"

‎src/test/mb/expected/euc_tw.out

Lines changed: 19 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,38 @@
11
drop table ��ٸ����;
2-
ERROR:Relation '��ٸ����' does not exist
2+
ERROR:parser: parse error at or near "("
33
create table ��ٸ���� (����ɱ text, ��Ƴ��� varchar, ���� varchar(16));
4+
ERROR: parser: parse error at or near "("
45
create index ��ٸ����index1 on ��ٸ���� using btree (����ɱ);
6+
ERROR: parser: parse error at or near "("
57
create index ��ٸ����index2 on ��ٸ���� using hash (��Ƴ���);
8+
ERROR: parser: parse error at or near "("
69
insert into ��ٸ���� values ('�����', '������', 'ơA01��');
10+
ERROR: parser: parse error at or near "("
711
insert into ��ٸ���� values ('������', '����ȴ����Ƴ', '��B10��');
12+
ERROR: parser: parse error at or near "("
813
insert into ��ٸ���� values ('����', 'ӡ��ϴǹȴ����Ƴ', '��Z01Ħ');
14+
ERROR: parser: parse error at or near "("
915
vacuum ��ٸ����;
16+
ERROR: parser: parse error at or near "("
1017
select * from ��ٸ����;
11-
����ɱ | ��Ƴ��� | ����
12-
--------+------------------+---------
13-
����� | ������ | ơA01��
14-
������ | ����ȴ����Ƴ | ��B10��
15-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ
16-
(3 rows)
17-
18+
ERROR: parser: parse error at or near "92"
1819
select * from ��ٸ���� where ���� = '��Z01Ħ';
19-
����ɱ | ��Ƴ��� | ����
20-
--------+------------------+---------
21-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ
22-
(1 row)
23-
20+
ERROR: parser: parse error at or near "92"
2421
select * from ��ٸ���� where ���� ~* '��z01Ħ';
25-
����ɱ | ��Ƴ��� | ����
26-
--------+------------------+---------
27-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ
28-
(1 row)
29-
22+
ERROR: parser: parse error at or near "92"
3023
select * from ��ٸ���� where ���� like '_Z01_';
31-
����ɱ | ��Ƴ��� | ����
32-
--------+------------------+---------
33-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ
34-
(1 row)
35-
24+
ERROR: parser: parse error at or near "92"
3625
select * from ��ٸ���� where ���� like '_Z%';
37-
����ɱ | ��Ƴ��� | ����
38-
--------+------------------+---------
39-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ
40-
(1 row)
41-
26+
ERROR: parser: parse error at or near "92"
4227
select * from ��ٸ���� where ��Ƴ��� ~ '����[��ش��]';
43-
����ɱ | ��Ƴ��� | ����
44-
--------+----------+---------
45-
����� | ������ | ơA01��
46-
(1 row)
47-
28+
ERROR: parser: parse error at or near "92"
4829
select * from ��ٸ���� where ��Ƴ��� ~* '����[��ش��]';
49-
����ɱ | ��Ƴ��� | ����
50-
--------+----------+---------
51-
����� | ������ | ơA01��
52-
(1 row)
53-
30+
ERROR: parser: parse error at or near "92"
5431
select *, character_length(����ɱ) from ��ٸ����;
55-
����ɱ | ��Ƴ��� | ���� | char_length
56-
--------+------------------+---------+-------------
57-
����� | ������ | ơA01�� | 3
58-
������ | ����ȴ����Ƴ | ��B10�� | 3
59-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ | 3
60-
(3 rows)
61-
32+
ERROR: parser: parse error at or near "c8e7"
6233
select *, octet_length(����ɱ) from ��ٸ����;
63-
����ɱ | ��Ƴ��� | ���� | octet_length
64-
--------+------------------+---------+--------------
65-
����� | ������ | ơA01�� | 6
66-
������ | ����ȴ����Ƴ | ��B10�� | 6
67-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ | 6
68-
(3 rows)
69-
34+
ERROR: parser: parse error at or near "c8e7"
7035
select *, position('ȴ��' in ��Ƴ���) from ��ٸ����;
71-
����ɱ | ��Ƴ��� | ���� | strpos
72-
--------+------------------+---------+--------
73-
����� | ������ | ơA01�� | 0
74-
������ | ����ȴ����Ƴ | ��B10�� | 3
75-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ | 5
76-
(3 rows)
77-
36+
ERROR: parser: parse error at or near "c4fc"
7837
select *, substring(��Ƴ��� from 3 for 6 ) from ��ٸ����;
79-
����ɱ | ��Ƴ��� | ���� | substr
80-
--------+------------------+---------+--------------
81-
����� | ������ | ơA01�� | ����
82-
������ | ����ȴ����Ƴ | ��B10�� | ȴ����Ƴ
83-
���� | ӡ��ϴǹȴ����Ƴ | ��Z01Ħ | ϴǹȴ����Ƴ
84-
(3 rows)
85-
38+
ERROR: parser: parse error at or near "c4fc"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp