Skip to content

Commit d1e6368

Browse files
author
Thomas G. Lockhart
committed
Clean up header for uniform appearance throughout tests.
1 parent 67ac380 commit d1e6368

24 files changed

+53
-34
lines changed

src/test/regress/input/misc.source

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
--
22
-- MISC
3+
--
34

45
--
56
-- BTREE

src/test/regress/sql/alter_table.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
--
2+
-- ALTER_TABLE
23
-- add attribute
34
--
45

src/test/regress/sql/btree_index.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--
2-
-- btree index
3-
-- test retrieval of min/max keys for each
2+
-- BTREE_INDEX
3+
-- test retrieval of min/max keys for each index
44
--
55

66
SELECT b.*

src/test/regress/sql/case.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
--
2-
-- case.sql
3-
--
2+
-- CASE
43
-- Test the case statement
54
--
65

src/test/regress/sql/errors.sql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
--
2-
-- errors.source
2+
-- ERRORS
33
--
4-
-- $Header: /cvsroot/pgsql/src/test/regress/sql/errors.sql,v 1.2 1997/05/22 00:17:24 scrappy Exp $
5-
64

75
-- bad in postquel, but ok in postsql
86
select 1

src/test/regress/sql/hash_index.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
--
2-
-- hash index
2+
-- HASH_INDEX
33
-- grep 843938989 hash.data
44
--
5+
56
SELECT hash_i4_heap.*
67
WHERE hash_i4_heap.random = 843938989;
78

src/test/regress/sql/join.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
--
2-
-- join.sql
3-
--
2+
-- JOIN
43
-- Test join clauses
54
--
65

src/test/regress/sql/limit.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
--
2+
-- LIMIT
23
-- Check the LIMIT/OFFSET feature of SELECT
34
--
45

src/test/regress/sql/plpgsql.sql

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
-- ************************************************************
2-
-- *
3-
-- * Tables for the patchfield test of PL/pgSQL
4-
-- *
5-
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.1 1998/10/01 03:38:45 scrappy Exp $
6-
-- *
7-
-- ************************************************************
1+
--
2+
-- PLPGSQL
3+
--
84

95
create table Room (
106
roomno char(8),
@@ -104,7 +100,7 @@ create unique index PHone_name on PHone using btree (slotname bpchar_ops);
104100
-- * Trigger procedures and functions for the patchfield
105101
-- * test of PL/pgSQL
106102
-- *
107-
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.1 1998/10/01 03:38:45 scrappy Exp $
103+
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.2 2000/01/06 06:41:55 thomas Exp $
108104
-- *
109105
-- ************************************************************
110106

@@ -1404,3 +1400,4 @@ insert into HSlot values ('HS', 'base.hub1', 20, '');
14041400
delete from HSlot;
14051401
insert into IFace values ('IF', 'notthere', 'eth0', '');
14061402
insert into IFace values ('IF', 'orion', 'ethernet_interface_name_too_long', '');
1403+

src/test/regress/sql/portals.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
2-
-- portal manipulation
2+
-- PORTALS
33
--
4+
45
BEGIN;
56

67
DECLARE foo1 CURSOR FOR SELECT * FROM tenk1;
@@ -166,3 +167,4 @@ CLOSE foo11;
166167
CLOSE foo12;
167168

168169
end;
170+

0 commit comments

Comments
 (0)