diff options
| author | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
| commit | 1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch) | |
| tree | 8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/include/catalog/pg_statistic.h | |
| parent | 8fecd4febf8357f3cc20383ed29ced484877d5ac (diff) | |
| download | postgresql-1ccd423235a48739d6f7a4d7889705b5f9ecc69b.tar.gz | |
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/include/catalog/pg_statistic.h')
| -rw-r--r-- | src/include/catalog/pg_statistic.h | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/src/include/catalog/pg_statistic.h b/src/include/catalog/pg_statistic.h index cc76e5d893..6059bbd477 100644 --- a/src/include/catalog/pg_statistic.h +++ b/src/include/catalog/pg_statistic.h @@ -1,17 +1,17 @@ /*------------------------------------------------------------------------- * * pg_statistic.h-- - * definition of the system "statistic" relation (pg_statistic) - * along with the relation's initial contents. + * definition of the system "statistic" relation (pg_statistic) + * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_statistic.h,v 1.2 1996/10/31 09:47:57 scrappy Exp $ + * $Id: pg_statistic.h,v 1.3 1997/09/07 04:57:10 momjian Exp $ * * NOTES - * the genbki.sh script reads this file and generates .bki - * information from the DATA() statements. + * the genbki.sh script reads this file and generates .bki + * information from the DATA() statements. * *------------------------------------------------------------------------- */ @@ -19,41 +19,42 @@ #define PG_STATISTIC_H /* ---------------- - * postgres.h contains the system type definintions and the - * CATALOG(), BOOTSTRAP and DATA() sugar words so this file - * can be read by both genbki.sh and the C compiler. + * postgres.h contains the system type definintions and the + * CATALOG(), BOOTSTRAP and DATA() sugar words so this file + * can be read by both genbki.sh and the C compiler. * ---------------- */ /* ---------------- - * pg_statistic definition. cpp turns this into - * typedef struct FormData_pg_statistic + * pg_statistic definition. cpp turns this into + * typedef struct FormData_pg_statistic * ---------------- - */ -CATALOG(pg_statistic) { - Oid starelid; - int2 staattnum; - Oid staop; - text stalokey; /* VARIABLE LENGTH FIELD */ - text stahikey; /* VARIABLE LENGTH FIELD */ + */ +CATALOG(pg_statistic) +{ + Oid starelid; + int2 staattnum; + Oid staop; + text stalokey; /* VARIABLE LENGTH FIELD */ + text stahikey; /* VARIABLE LENGTH FIELD */ } FormData_pg_statistic; /* ---------------- - * Form_pg_statistic corresponds to a pointer to a tuple with - * the format of pg_statistic relation. + * Form_pg_statistic corresponds to a pointer to a tuple with + * the format of pg_statistic relation. * ---------------- */ -typedef FormData_pg_statistic *Form_pg_statistic; +typedef FormData_pg_statistic *Form_pg_statistic; /* ---------------- - * compiler constants for pg_statistic + * compiler constants for pg_statistic * ---------------- */ -#define Natts_pg_statistic 5 -#define Anum_pg_statistic_starelid 1 -#define Anum_pg_statistic_staattnum 2 -#define Anum_pg_statistic_staop 3 -#define Anum_pg_statistic_stalokey 4 -#define Anum_pg_statistic_stahikey 5 +#define Natts_pg_statistic 5 +#define Anum_pg_statistic_starelid 1 +#define Anum_pg_statistic_staattnum 2 +#define Anum_pg_statistic_staop 3 +#define Anum_pg_statistic_stalokey 4 +#define Anum_pg_statistic_stahikey 5 -#endif /* PG_STATISTIC_H */ +#endif /* PG_STATISTIC_H */ |
