Remove extraneous semicolons.
This commit is contained in:
parent
a50f285d8d
commit
dbb7503660
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/typecmds.c,v 1.32 2003/02/19 23:41:15 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/typecmds.c,v 1.33 2003/04/08 16:57:45 tgl Exp $
|
||||||
*
|
*
|
||||||
* DESCRIPTION
|
* DESCRIPTION
|
||||||
* The "DefineFoo" routines take the parse tree and pick out the
|
* The "DefineFoo" routines take the parse tree and pick out the
|
||||||
@ -1025,7 +1025,7 @@ AlterDomainDefault(List *names, Node *defaultRaw)
|
|||||||
/* Clean up */
|
/* Clean up */
|
||||||
heap_close(rel, NoLock);
|
heap_close(rel, NoLock);
|
||||||
heap_freetuple(newtuple);
|
heap_freetuple(newtuple);
|
||||||
};
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AlterDomainNotNull
|
* AlterDomainNotNull
|
||||||
@ -1219,7 +1219,7 @@ AlterDomainDropConstraint(List *names, const char *constrName, DropBehavior beha
|
|||||||
heap_close(conrel, RowExclusiveLock);
|
heap_close(conrel, RowExclusiveLock);
|
||||||
|
|
||||||
heap_close(rel, NoLock);
|
heap_close(rel, NoLock);
|
||||||
};
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* AlterDomainAddConstraint
|
* AlterDomainAddConstraint
|
||||||
|
Loading…
x
Reference in New Issue
Block a user