diff options
Diffstat (limited to 'src/backend/executor/execAmi.c')
-rw-r--r-- | src/backend/executor/execAmi.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/executor/execAmi.c b/src/backend/executor/execAmi.c index c3cb019c89d..99d6b7b27be 100644 --- a/src/backend/executor/execAmi.c +++ b/src/backend/executor/execAmi.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: execAmi.c,v 1.50 2000/07/25 23:43:38 tgl Exp $ + * $Id: execAmi.c,v 1.51 2000/08/03 19:19:30 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -98,9 +98,6 @@ ExecOpenScanR(Oid relOid, else relation = heap_open(relOid, NoLock); - if (relation == NULL) - elog(ERROR, "ExecOpenScanR: failed to open relation %u", relOid); - scanDesc = ExecBeginScan(relation, nkeys, skeys, |