mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
Renaming cleanup, no pgindent yet.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.13 1998/06/09 19:20:59 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.14 1998/09/01 03:26:07 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -28,9 +28,9 @@ nullvalue(Datum value, bool *isNull)
|
||||
if (*isNull)
|
||||
{
|
||||
*isNull = false;
|
||||
return (true);
|
||||
return true;
|
||||
}
|
||||
return (false);
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@ -43,9 +43,9 @@ nonnullvalue(Datum value, bool *isNull)
|
||||
if (*isNull)
|
||||
{
|
||||
*isNull = false;
|
||||
return (false);
|
||||
return false;
|
||||
}
|
||||
return (true);
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
@ -105,5 +105,5 @@ oidsrand(int32 X)
|
||||
int32
|
||||
userfntest(int i)
|
||||
{
|
||||
return (i);
|
||||
return i;
|
||||
}
|
||||
|
Reference in New Issue
Block a user