1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.

This commit is contained in:
Bruce Momjian
1997-09-08 02:41:22 +00:00
parent a90f12fd9d
commit 319dbfa736
632 changed files with 28301 additions and 28220 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.4 1997/09/07 04:50:20 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.5 1997/09/08 02:30:44 momjian Exp $
*
* XXX These are totally bogus.
*
@ -28,7 +28,7 @@ areasel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 4.0;
@ -42,7 +42,7 @@ areajoinsel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 4.0;
@ -73,7 +73,7 @@ leftsel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 6.0;
@ -90,7 +90,7 @@ leftjoinsel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 6.0;
@ -110,7 +110,7 @@ contsel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 10.0;
@ -127,7 +127,7 @@ contjoinsel(Oid opid,
char *value,
int32 flag)
{
float64 result;
float64 result;
result = (float64) palloc(sizeof(float64data));
*result = 1.0 / 10.0;