Commit dbb75036 authored by Tom Lane's avatar Tom Lane

Remove extraneous semicolons.

parent a50f285d
...@@ -8,7 +8,7 @@ ...@@ -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) ...@@ -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 ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment