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

Commitee28d8b

Browse files
committed
plpgsql regress tests seem a tad out of date ... repair bit rot.
1 parente91932e commitee28d8b

File tree

7 files changed

+557
-571
lines changed

7 files changed

+557
-571
lines changed
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
1-
QUERY:create table Room (
1+
create table Room (
22
roomnochar(8),
33
commenttext
44
);
5-
QUERY:create unique index Room_rno on Room using btree (roomno bpchar_ops);
6-
QUERY:create table WSlot (
5+
create unique index Room_rno on Room using btree (roomno bpchar_ops);
6+
create table WSlot (
77
slotnamechar(20),
88
roomnochar(8),
99
slotlinkchar(20),
1010
backlinkchar(20)
1111
);
12-
QUERY:create unique index WSlot_name on WSlot using btree (slotname bpchar_ops);
13-
QUERY:create table PField (
12+
create unique index WSlot_name on WSlot using btree (slotname bpchar_ops);
13+
create table PField (
1414
nametext,
1515
commenttext
1616
);
17-
QUERY:create unique index PField_name on PField using btree (name text_ops);
18-
QUERY:create table PSlot (
17+
create unique index PField_name on PField using btree (name text_ops);
18+
create table PSlot (
1919
slotnamechar(20),
2020
pfnametext,
2121
slotlinkchar(20),
2222
backlinkchar(20)
2323
);
24-
QUERY:create unique index PSlot_name on PSlot using btree (slotname bpchar_ops);
25-
QUERY:create table PLine (
24+
create unique index PSlot_name on PSlot using btree (slotname bpchar_ops);
25+
create table PLine (
2626
slotnamechar(20),
2727
phonenumberchar(20),
2828
commenttext,
2929
backlinkchar(20)
3030
);
31-
QUERY:create unique index PLine_name on PLine using btree (slotname bpchar_ops);
32-
QUERY:create table Hub (
31+
create unique index PLine_name on PLine using btree (slotname bpchar_ops);
32+
create table Hub (
3333
namechar(14),
3434
commenttext,
3535
nslotsinteger
3636
);
37-
QUERY:create unique index Hub_name on Hub using btree (name bpchar_ops);
38-
QUERY:create table HSlot (
37+
create unique index Hub_name on Hub using btree (name bpchar_ops);
38+
create table HSlot (
3939
slotnamechar(20),
4040
hubnamechar(14),
4141
slotnointeger,
4242
slotlinkchar(20)
4343
);
44-
QUERY:create unique index HSlot_name on HSlot using btree (slotname bpchar_ops);
45-
QUERY:create index HSlot_hubname on HSlot using btree (hubname bpchar_ops);
46-
QUERY:create table System (
44+
create unique index HSlot_name on HSlot using btree (slotname bpchar_ops);
45+
create index HSlot_hubname on HSlot using btree (hubname bpchar_ops);
46+
create table System (
4747
nametext,
4848
commenttext
4949
);
50-
QUERY:create unique index System_name on System using btree (name text_ops);
51-
QUERY:create table IFace (
50+
create unique index System_name on System using btree (name text_ops);
51+
create table IFace (
5252
slotnamechar(20),
5353
sysnametext,
5454
ifnametext,
5555
slotlinkchar(20)
5656
);
57-
QUERY:create unique index IFace_name on IFace using btree (slotname bpchar_ops);
58-
QUERY:create table PHone (
57+
create unique index IFace_name on IFace using btree (slotname bpchar_ops);
58+
create table PHone (
5959
slotnamechar(20),
6060
commenttext,
6161
slotlinkchar(20)
6262
);
63-
QUERY:create unique index PHone_name on PHone using btree (slotname bpchar_ops);
63+
create unique index PHone_name on PHone using btree (slotname bpchar_ops);

‎src/pl/plpgsql/test/expected/test.out

Lines changed: 441 additions & 441 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp