From: Thomas G. Lockhart Date: Wed, 5 Jan 2000 17:32:29 +0000 (+0000) Subject: Update format to add uniform headers on files. X-Git-Tag: REL7_0~939 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0cab6f4fa7642425728c710bb3215f94c239ddb;p=postgresql Update format to add uniform headers on files. --- diff --git a/src/test/regress/input/constraints.source b/src/test/regress/input/constraints.source index af10193c33..f30a2dd0ae 100644 --- a/src/test/regress/input/constraints.source +++ b/src/test/regress/input/constraints.source @@ -1,5 +1,5 @@ -- --- Check constraints +-- CONSTRAINTS -- Constraints can be specified with: -- - DEFAULT clause -- - CHECK clauses diff --git a/src/test/regress/input/copy.source b/src/test/regress/input/copy.source index 7df2c6057a..ad327bef81 100644 --- a/src/test/regress/input/copy.source +++ b/src/test/regress/input/copy.source @@ -1,6 +1,5 @@ -- --- create.source --- +-- COPY -- -- CLASS POPULATION @@ -54,3 +53,4 @@ COPY bt_name_heap FROM '_OBJWD_/data/hash.data'; COPY bt_txt_heap FROM '_OBJWD_/data/desc.data'; COPY bt_f8_heap FROM '_OBJWD_/data/hash.data'; + diff --git a/src/test/regress/input/create_function_1.source b/src/test/regress/input/create_function_1.source index 13533c7874..52b1c22e13 100644 --- a/src/test/regress/input/create_function_1.source +++ b/src/test/regress/input/create_function_1.source @@ -1,6 +1,5 @@ -- --- create.source --- +-- CREATE_FUNCTION_1 -- CREATE FUNCTION widget_in(opaque) @@ -16,35 +15,30 @@ CREATE FUNCTION widget_out(opaque) CREATE FUNCTION check_primary_key () RETURNS opaque AS '_OBJWD_/../../../contrib/spi/refint_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; CREATE FUNCTION check_foreign_key () RETURNS opaque AS '_OBJWD_/../../../contrib/spi/refint_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; CREATE FUNCTION autoinc () RETURNS opaque AS '_OBJWD_/../../../contrib/spi/autoinc_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; CREATE FUNCTION funny_dup17 () RETURNS opaque AS '_OBJWD_/regress_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; CREATE FUNCTION ttdummy () RETURNS opaque AS '_OBJWD_/regress_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; CREATE FUNCTION set_ttdummy (int4) RETURNS int4 AS '_OBJWD_/regress_DLSUFFIX_' - LANGUAGE 'c' -; + LANGUAGE 'c'; + diff --git a/src/test/regress/input/create_function_2.source b/src/test/regress/input/create_function_2.source index c68305b360..ebc612261f 100644 --- a/src/test/regress/input/create_function_2.source +++ b/src/test/regress/input/create_function_2.source @@ -1,5 +1,5 @@ -- --- FUNCTION DEFINITIONS +-- CREATE_FUNCTION_2 -- CREATE FUNCTION hobbies(person) RETURNS setof hobbies_r @@ -53,7 +53,7 @@ CREATE FUNCTION reverse_name(name) LANGUAGE 'c'; -- --- FUNCTION DYNAMIC LOADING +-- Function dynamic loading -- LOAD '_OBJWD_/regress_DLSUFFIX_'; diff --git a/src/test/regress/input/install_plpgsql.source b/src/test/regress/input/install_plpgsql.source index 7b4c1b7e50..d163d0f494 100644 --- a/src/test/regress/input/install_plpgsql.source +++ b/src/test/regress/input/install_plpgsql.source @@ -1,6 +1,5 @@ -- --- install_plpgsql.source --- +-- INSTALL_PLPGSQL -- CREATE FUNCTION plpgsql_call_handler() @@ -11,3 +10,4 @@ CREATE FUNCTION plpgsql_call_handler() CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql' HANDLER plpgsql_call_handler LANCOMPILER 'PL/pgSQL'; + diff --git a/src/test/regress/input/misc.source b/src/test/regress/input/misc.source index f582381299..2a97cf5c40 100644 --- a/src/test/regress/input/misc.source +++ b/src/test/regress/input/misc.source @@ -1,6 +1,6 @@ -- --- replace --- +-- MISC + -- -- BTREE -- @@ -86,11 +86,11 @@ SELECT * FROM a_star*; SELECT * FROM b_star* x - WHERE x.b = 'bumble'::text or x.a < 3; + WHERE x.b = text 'bumble' or x.a < 3; SELECT class, a FROM c_star* x - WHERE x.c ~ 'hi'::text; + WHERE x.c ~ text 'hi'; SELECT class, b, c FROM d_star* x @@ -148,7 +148,7 @@ SELECT * FROM e_star*; ALTER TABLE a_star* ADD COLUMN a text; --UPDATE b_star* --- SET a = 'gazpacho'::text +-- SET a = text 'gazpacho' -- WHERE aa > 4; SELECT class, aa, a FROM a_star*; @@ -208,7 +208,7 @@ SELECT p.hobbies.equipment.name, p.hobbies.name, p.name FROM person* p; SELECT user_relns() AS user_relns ORDER BY user_relns; ---SELECT name(equipment(hobby_construct('skywalking'::text, 'mer'::text))) AS equip_name; +--SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer'))) AS equip_name; -- @@ -222,3 +222,4 @@ SELECT user_relns() AS user_relns -- -- rewrite rules -- + diff --git a/src/test/regress/sql/aggregates.sql b/src/test/regress/sql/aggregates.sql index 03ea7de2bb..b5aa3c0ed6 100644 --- a/src/test/regress/sql/aggregates.sql +++ b/src/test/regress/sql/aggregates.sql @@ -1,6 +1,7 @@ -- -- AGGREGATES -- + SELECT avg(four) AS avg_1 FROM onek; SELECT avg(a) AS avg_32 FROM aggtest WHERE a < 100; diff --git a/src/test/regress/sql/alter_table.sql b/src/test/regress/sql/alter_table.sql index 2be9f021fc..d80d1d1156 100644 --- a/src/test/regress/sql/alter_table.sql +++ b/src/test/regress/sql/alter_table.sql @@ -1,6 +1,7 @@ -- -- add attribute -- + CREATE TABLE tmp (initial int4); ALTER TABLE tmp ADD COLUMN a int4; diff --git a/src/test/regress/sql/arrays.sql b/src/test/regress/sql/arrays.sql index a82a185c92..c403ad5bef 100644 --- a/src/test/regress/sql/arrays.sql +++ b/src/test/regress/sql/arrays.sql @@ -1,6 +1,7 @@ -- -- ARRAYS -- + SELECT * FROM arrtest; SELECT arrtest.a[1], diff --git a/src/test/regress/sql/create_aggregate.sql b/src/test/regress/sql/create_aggregate.sql index 22630c013e..046f945738 100644 --- a/src/test/regress/sql/create_aggregate.sql +++ b/src/test/regress/sql/create_aggregate.sql @@ -1,5 +1,5 @@ -- --- AGGREGATE DEFINITIONS +-- CREATE_AGGREGATE -- -- all functions CREATEd diff --git a/src/test/regress/sql/create_index.sql b/src/test/regress/sql/create_index.sql index e9f93eb75b..00281765a3 100644 --- a/src/test/regress/sql/create_index.sql +++ b/src/test/regress/sql/create_index.sql @@ -1,5 +1,6 @@ -- --- CREATE ancillary data structures (i.e. indices) +-- CREATE_INDEX +-- Create ancillary data structures (i.e. indices) -- -- diff --git a/src/test/regress/sql/create_misc.sql b/src/test/regress/sql/create_misc.sql index 6431614a30..307767c5be 100644 --- a/src/test/regress/sql/create_misc.sql +++ b/src/test/regress/sql/create_misc.sql @@ -1,6 +1,5 @@ -- --- create.source --- +-- CREATE_MISC -- -- CLASS POPULATION diff --git a/src/test/regress/sql/create_operator.sql b/src/test/regress/sql/create_operator.sql index 0fafa5c2fd..c4251144ca 100644 --- a/src/test/regress/sql/create_operator.sql +++ b/src/test/regress/sql/create_operator.sql @@ -1,6 +1,7 @@ -- --- OPERATOR DEFINITIONS +-- CREATE_OPERATOR -- + CREATE OPERATOR ## ( leftarg = path, rightarg = path, diff --git a/src/test/regress/sql/create_table.sql b/src/test/regress/sql/create_table.sql index ad955290fa..fe54708944 100644 --- a/src/test/regress/sql/create_table.sql +++ b/src/test/regress/sql/create_table.sql @@ -1,6 +1,5 @@ -- --- create.source --- +-- CREATE_TABLE -- -- @@ -19,16 +18,16 @@ CREATE TABLE equipment_r ( CREATE TABLE onek ( unique1 int4, unique2 int4, - two int4, + two int4, four int4, - ten int4, + ten int4, twenty int4, hundred int4, thousand int4, twothousand int4, fivethous int4, tenthous int4, - odd int4, + odd int4, even int4, stringu1 name, stringu2 name, @@ -38,16 +37,16 @@ CREATE TABLE onek ( CREATE TABLE tenk1 ( unique1 int4, unique2 int4, - two int4, + two int4, four int4, - ten int4, + ten int4, twenty int4, hundred int4, thousand int4, twothousand int4, fivethous int4, tenthous int4, - odd int4, + odd int4, even int4, stringu1 name, stringu2 name, @@ -59,14 +58,14 @@ CREATE TABLE tenk2 ( unique2 int4, two int4, four int4, - ten int4, + ten int4, twenty int4, hundred int4, thousand int4, - twothousand int4, + twothousand int4, fivethous int4, tenthous int4, - odd int4, + odd int4, even int4, stringu1 name, stringu2 name, @@ -76,7 +75,7 @@ CREATE TABLE tenk2 ( CREATE TABLE person ( name text, - age int4, + age int4, location point ); @@ -128,7 +127,7 @@ CREATE TABLE shighway ( ) INHERITS (road); CREATE TABLE real_city ( - pop int4, + pop int4, cname text, outline path ); @@ -145,42 +144,42 @@ CREATE TABLE real_city ( -- CREATE TABLE a_star ( class char, - a int4 + a int4 ); CREATE TABLE b_star ( - b text + b text ) INHERITS (a_star); CREATE TABLE c_star ( - c name + c name ) INHERITS (a_star); CREATE TABLE d_star ( - d float8 + d float8 ) INHERITS (b_star, c_star); CREATE TABLE e_star ( - e int2 + e int2 ) INHERITS (c_star); CREATE TABLE f_star ( - f polygon + f polygon ) INHERITS (e_star); CREATE TABLE aggtest ( - a int2, - b float4 + a int2, + b float4 ); CREATE TABLE arrtest ( - a int2[], - b int4[][][], - c name[], - d text[][], - e float8[], - f char(5)[], - g varchar(5)[] + a int2[], + b int4[][][], + c name[], + d text[][], + e float8[], + f char(5)[], + g varchar(5)[] ); CREATE TABLE hash_i4_heap ( @@ -207,8 +206,8 @@ CREATE TABLE hash_f8_heap ( -- the data set is too large for what it's worth -- -- CREATE TABLE hash_ovfl_heap ( --- x int4, --- y int4 +-- x int4, +-- y int4 -- ); CREATE TABLE bt_i4_heap ( diff --git a/src/test/regress/sql/create_type.sql b/src/test/regress/sql/create_type.sql index 1a75ba5295..96655eed63 100644 --- a/src/test/regress/sql/create_type.sql +++ b/src/test/regress/sql/create_type.sql @@ -1,6 +1,5 @@ -- --- create.source --- +-- CREATE_TYPE -- CREATE TYPE widget ( diff --git a/src/test/regress/sql/create_view.sql b/src/test/regress/sql/create_view.sql index a8e248ce83..2d7ab12e58 100644 --- a/src/test/regress/sql/create_view.sql +++ b/src/test/regress/sql/create_view.sql @@ -1,5 +1,6 @@ -- --- VIRTUAL CLASS DEFINITIONS +-- CREATE_VIEW +-- Virtual class definitions -- (this also tests the query rewrite system) -- diff --git a/src/test/regress/sql/triggers.sql b/src/test/regress/sql/triggers.sql index 5740dcac9f..6358249116 100644 --- a/src/test/regress/sql/triggers.sql +++ b/src/test/regress/sql/triggers.sql @@ -1,3 +1,6 @@ +-- +-- TRIGGERS +-- create table pkeys (pkey1 int4 not null, pkey2 text not null); create table fkeys (fkey1 int4, fkey2 text, fkey3 int);