Remove unused variable

The variable became obsolete in commit
68739ba856, but only gcc 4.6 shows the
warning.
This commit is contained in:
Peter Eisentraut 2011-06-14 23:00:43 +03:00
parent efb224a439
commit 90132f62a2
1 changed files with 0 additions and 2 deletions

View File

@ -845,7 +845,6 @@ static void
transformOfType(CreateStmtContext *cxt, TypeName *ofTypename)
{
HeapTuple tuple;
Form_pg_type typ;
TupleDesc tupdesc;
int i;
Oid ofTypeId;
@ -854,7 +853,6 @@ transformOfType(CreateStmtContext *cxt, TypeName *ofTypename)
tuple = typenameType(NULL, ofTypename, NULL);
check_of_type(tuple);
typ = (Form_pg_type) GETSTRUCT(tuple);
ofTypeId = HeapTupleGetOid(tuple);
ofTypename->typeOid = ofTypeId; /* cached for later */