Clean up header for uniform appearance throughout tests.

REL7_0_PATCHES
Thomas G. Lockhart 26 years ago
parent 67ac38085c
commit d1e6368816
  1. 1
      src/test/regress/input/misc.source
  2. 1
      src/test/regress/sql/alter_table.sql
  3. 4
      src/test/regress/sql/btree_index.sql
  4. 3
      src/test/regress/sql/case.sql
  5. 4
      src/test/regress/sql/errors.sql
  6. 3
      src/test/regress/sql/hash_index.sql
  7. 3
      src/test/regress/sql/join.sql
  8. 1
      src/test/regress/sql/limit.sql
  9. 13
      src/test/regress/sql/plpgsql.sql
  10. 4
      src/test/regress/sql/portals.sql
  11. 5
      src/test/regress/sql/portals_p2.sql
  12. 4
      src/test/regress/sql/random.sql
  13. 2
      src/test/regress/sql/rules.sql
  14. 3
      src/test/regress/sql/select.sql
  15. 5
      src/test/regress/sql/select_distinct.sql
  16. 4
      src/test/regress/sql/select_distinct_on.sql
  17. 3
      src/test/regress/sql/select_having.sql
  18. 5
      src/test/regress/sql/select_implicit.sql
  19. 4
      src/test/regress/sql/select_into.sql
  20. 6
      src/test/regress/sql/select_views.sql
  21. 2
      src/test/regress/sql/subselect.sql
  22. 2
      src/test/regress/sql/temp.sql
  23. 3
      src/test/regress/sql/transactions.sql
  24. 2
      src/test/regress/sql/union.sql

@ -1,5 +1,6 @@
--
-- MISC
--
--
-- BTREE

@ -1,4 +1,5 @@
--
-- ALTER_TABLE
-- add attribute
--

@ -1,6 +1,6 @@
--
-- btree index
-- test retrieval of min/max keys for each
-- BTREE_INDEX
-- test retrieval of min/max keys for each index
--
SELECT b.*

@ -1,6 +1,5 @@
--
-- case.sql
--
-- CASE
-- Test the case statement
--

@ -1,8 +1,6 @@
--
-- errors.source
-- ERRORS
--
-- $Header: /cvsroot/pgsql/src/test/regress/sql/errors.sql,v 1.2 1997/05/22 00:17:24 scrappy Exp $
-- bad in postquel, but ok in postsql
select 1

@ -1,7 +1,8 @@
--
-- hash index
-- HASH_INDEX
-- grep 843938989 hash.data
--
SELECT hash_i4_heap.*
WHERE hash_i4_heap.random = 843938989;

@ -1,6 +1,5 @@
--
-- join.sql
--
-- JOIN
-- Test join clauses
--

@ -1,4 +1,5 @@
--
-- LIMIT
-- Check the LIMIT/OFFSET feature of SELECT
--

@ -1,10 +1,6 @@
-- ************************************************************
-- *
-- * Tables for the patchfield test of PL/pgSQL
-- *
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.1 1998/10/01 03:38:45 scrappy Exp $
-- *
-- ************************************************************
--
-- PLPGSQL
--
create table Room (
roomno char(8),
@ -104,7 +100,7 @@ create unique index PHone_name on PHone using btree (slotname bpchar_ops);
-- * Trigger procedures and functions for the patchfield
-- * test of PL/pgSQL
-- *
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.1 1998/10/01 03:38:45 scrappy Exp $
-- * $Header: /cvsroot/pgsql/src/test/regress/sql/plpgsql.sql,v 1.2 2000/01/06 06:41:55 thomas Exp $
-- *
-- ************************************************************
@ -1404,3 +1400,4 @@ insert into HSlot values ('HS', 'base.hub1', 20, '');
delete from HSlot;
insert into IFace values ('IF', 'notthere', 'eth0', '');
insert into IFace values ('IF', 'orion', 'ethernet_interface_name_too_long', '');

@ -1,6 +1,7 @@
--
-- portal manipulation
-- PORTALS
--
BEGIN;
DECLARE foo1 CURSOR FOR SELECT * FROM tenk1;
@ -166,3 +167,4 @@ CLOSE foo11;
CLOSE foo12;
end;

@ -1,3 +1,7 @@
--
-- PORTALS_P2
--
-- EXTEND INDEX onek2_u1_prtl WHERE onek2.unique1 <= 60;
BEGIN;
@ -94,3 +98,4 @@ CLOSE foo24;
CLOSE foo25;
END;

@ -1,6 +1,8 @@
--
-- test the random function
-- RANDOM
-- Test the random function
--
-- count the number of tuples originally
SELECT count(*) FROM onek;

@ -1,5 +1,5 @@
--
-- rules.sql
-- RULES
-- From Jan's original setup_ruletest.sql and run_ruletest.sql
-- - thomas 1998-09-13
--

@ -1,4 +1,7 @@
--
-- SELECT
--
-- btree index
-- awk '{if($1<10){print;}else{next;}}' onek.data | sort +0n -1
--

@ -1,3 +1,7 @@
--
-- SELECT_DISTINCT
--
--
-- awk '{print $3;}' onek.data | sort -n | uniq
--
@ -30,4 +34,3 @@ SELECT DISTINCT two, string4, ten
--
SELECT DISTINCT p.age FROM person* p ORDER BY age using >;

@ -1,7 +1,7 @@
--
-- test select distinct on
-- SELECT_DISTINCT_ON
--
SELECT DISTINCT ON string4 two, string4, ten
FROM tmp
ORDER BY two using <, string4 using <, ten using <;

@ -1,5 +1,5 @@
--
-- select_having.sql
-- SELECT_HAVING
--
-- load test data
@ -25,3 +25,4 @@ SELECT c, max(a) FROM test_having
GROUP BY c HAVING count(*) > 2 OR min(a) = max(a);
DROP TABLE test_having;

@ -1,10 +1,10 @@
--
-- select_implicit.sql
--
-- SELECT_IMPLICIT
-- Test cases for queries with ordering terms missing from the target list.
-- This used to be called "junkfilter.sql".
-- The parser uses the term "resjunk" to handle these cases.
-- - thomas 1998-07-09
--
-- load test data
CREATE TABLE test_missing_target (a int, b int, c char(8), d char);
@ -149,4 +149,3 @@ DROP TABLE test_missing_target;
DROP TABLE test_missing_target2;
DROP TABLE test_missing_target3;

@ -1,3 +1,7 @@
--
-- SELECT_INTO
--
SELECT *
INTO TABLE tmp1
FROM tmp

@ -1,8 +1,8 @@
--
-- VIEW queries
--
-- test the views defined in create.source
-- SELECT_VIEWS
-- test the views defined in CREATE_VIEWS
--
SELECT * FROM street;
SELECT name, #thepath FROM iexit ORDER BY 1, 2;

@ -1,5 +1,5 @@
--
-- Subselects
-- SUBSELECT
--
SELECT 1 AS one WHERE 1 IN (SELECT 1);

@ -1,4 +1,5 @@
--
-- TEMP
-- Test temp relations and indexes
--
@ -45,3 +46,4 @@ CREATE TEMP TABLE temptest(col int);
\c regression
SELECT * FROM temptest;

@ -1,6 +1,7 @@
--
-- transaction blocks
-- TRANSACTIONS
--
BEGIN;
SELECT *

@ -1,5 +1,5 @@
--
-- union.sql
-- UNION
--
-- Simple UNION constructs

Loading…
Cancel
Save