*/
if (oldPred == NULL && (nb = RelationGetNumberOfBlocks(index)) != 0)
- elog(ERROR, "%.16s already contains data", &(index->rd_rel->relname.data[0]));
+ elog(ERROR, "%s already contains data", index->rd_rel->relname.data);
/* initialize the root page (if this is a new index) */
if (oldPred == NULL)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.49 1998/07/19 03:46:29 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.50 1998/07/20 16:14:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
estate->es_into_relation_descriptor = intoRelationDesc;
- /* ----------------
- * return the type information..
- * ----------------
- */
-/*
- attinfo = (AttrInfo *)palloc(sizeof(AttrInfo));
- attinfo->numAttr = len;
- attinfo->attrs = tupType->attrs;
-*/
-
return tupType;
}
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.32 1998/06/15 19:28:20 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.33 1998/07/20 16:14:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
slot = commonstate->cs_ResultTupleSlot;
tupType = slot->ttc_tupleDescriptor;
-/* ExecFreeTypeInfo(tupType); */
- pfree(tupType);
+ ExecFreeTypeInfo(tupType);
}
#endif
slot = csstate->css_ScanTupleSlot;
tupType = slot->ttc_tupleDescriptor;
-/* ExecFreeTypeInfo(tupType); */
- pfree(tupType);
+ ExecFreeTypeInfo(tupType);
}
#endif
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.31 1998/06/15 19:29:23 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.32 1998/07/20 16:14:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
vfd;
char *path;
- path = relpath(&(reln->rd_rel->relname.data[0]));
+ path = relpath(reln->rd_rel->relname.data);
fd = FileNameOpenFile(path, O_RDWR | O_CREAT | O_EXCL, 0600);
/*
int fd;
int vfd;
- path = relpath(&(reln->rd_rel->relname.data[0]));
+ path = relpath(reln->rd_rel->relname.data);
fd = FileNameOpenFile(path, O_RDWR, 0600);
if (curnblk / RELSEG_SIZE > 0)
{
elog(NOTICE, "Can't truncate multi-segments relation %s",
- &(reln->rd_rel->relname.data[0]));
+ reln->rd_rel->relname.data);
return (curnblk);
}
#endif
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.17 1998/06/27 04:53:40 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.18 1998/07/20 16:14:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
int fd;
if ((fd = (*(smgrsw[which].smgr_create)) (reln)) < 0)
- elog(ERROR, "cannot create %s",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot create %s", reln->rd_rel->relname.data);
return (fd);
}
int status;
if ((status = (*(smgrsw[which].smgr_unlink)) (reln)) == SM_FAIL)
- elog(ERROR, "cannot unlink %s",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot unlink %s", reln->rd_rel->relname.data);
return (status);
}
status = (*(smgrsw[which].smgr_extend)) (reln, buffer);
if (status == SM_FAIL)
- elog(ERROR, "%s: cannot extend",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "%s: cannot extend", reln->rd_rel->relname.data);
return (status);
}
int fd;
if ((fd = (*(smgrsw[which].smgr_open)) (reln)) < 0)
- elog(ERROR, "cannot open %s",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot open %s", reln->rd_rel->relname.data);
return (fd);
}
smgrclose(int16 which, Relation reln)
{
if ((*(smgrsw[which].smgr_close)) (reln) == SM_FAIL)
- elog(ERROR, "cannot close %s",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot close %s", reln->rd_rel->relname.data);
return (SM_SUCCESS);
}
if (status == SM_FAIL)
elog(ERROR, "cannot read block %d of %s",
- blocknum, &(reln->rd_rel->relname.data[0]));
+ blocknum, reln->rd_rel->relname.data);
return (status);
}
if (status == SM_FAIL)
elog(ERROR, "cannot write block %d of %s",
- blocknum, &(reln->rd_rel->relname.data[0]));
+ blocknum, reln->rd_rel->relname.data);
return (status);
}
if (status == SM_FAIL)
elog(ERROR, "cannot flush block %d of %s to stable store",
- blocknum, &(reln->rd_rel->relname.data[0]));
+ blocknum, reln->rd_rel->relname.data);
return (status);
}
int nblocks;
if ((nblocks = (*(smgrsw[which].smgr_nblocks)) (reln)) < 0)
- elog(ERROR, "cannot count blocks for %s",
- &(reln->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot count blocks for %s", reln->rd_rel->relname.data);
return (nblocks);
}
{
if ((newblks = (*(smgrsw[which].smgr_truncate)) (reln, nblocks)) < 0)
elog(ERROR, "cannot truncate %s to %d blocks",
- &(reln->rd_rel->relname.data[0]), nblocks);
+ reln->rd_rel->relname.data, nblocks);
}
return (newblks);
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.40 1998/06/15 19:29:40 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.41 1998/07/20 16:14:16 momjian Exp $
*
*-------------------------------------------------------------------------
*/
atttup = (HeapTuple) AttributeNumIndexScan(attrel, relation->rd_id, i);
if (!HeapTupleIsValid(atttup))
- elog(ERROR, "cannot find attribute %d of relation %.*s", i,
- NAMEDATALEN, &(relation->rd_rel->relname.data[0]));
+ elog(ERROR, "cannot find attribute %d of relation %s", i,
+ relation->rd_rel->relname.data);
attp = (AttributeTupleForm) GETSTRUCT(atttup);
relation->rd_att->attrs[i - 1] =
if (adform->adnum != attrdef[i].adnum)
continue;
if (attrdef[i].adsrc != NULL)
- elog(ERROR, "AttrDefaultFetch: second record found for attr %.*s in rel %.*s",
- NAMEDATALEN, relation->rd_att->attrs[adform->adnum - 1]->attname.data,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "AttrDefaultFetch: second record found for attr %s in rel %s",
+ relation->rd_att->attrs[adform->adnum - 1]->attname.data,
+ relation->rd_rel->relname.data);
val = (struct varlena *) fastgetattr(tuple,
Anum_pg_attrdef_adbin,
adrel->rd_att, &isnull);
if (isnull)
- elog(ERROR, "AttrDefaultFetch: adbin IS NULL for attr %.*s in rel %.*s",
- NAMEDATALEN, relation->rd_att->attrs[adform->adnum - 1]->attname.data,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "AttrDefaultFetch: adbin IS NULL for attr %s in rel %s",
+ relation->rd_att->attrs[adform->adnum - 1]->attname.data,
+ relation->rd_rel->relname.data);
attrdef[i].adbin = textout(val);
val = (struct varlena *) fastgetattr(tuple,
Anum_pg_attrdef_adsrc,
adrel->rd_att, &isnull);
if (isnull)
- elog(ERROR, "AttrDefaultFetch: adsrc IS NULL for attr %.*s in rel %.*s",
- NAMEDATALEN, relation->rd_att->attrs[adform->adnum - 1]->attname.data,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "AttrDefaultFetch: adsrc IS NULL for attr %s in rel %s",
+ relation->rd_att->attrs[adform->adnum - 1]->attname.data,
+ relation->rd_rel->relname.data);
attrdef[i].adsrc = textout(val);
break;
}
if (i >= ndef)
- elog(ERROR, "AttrDefaultFetch: unexpected record found for attr %d in rel %.*s",
+ elog(ERROR, "AttrDefaultFetch: unexpected record found for attr %d in rel %s",
adform->adnum,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ relation->rd_rel->relname.data);
ReleaseBuffer(buffer);
}
if (found < ndef)
- elog(ERROR, "AttrDefaultFetch: %d record not found for rel %.*s",
- ndef - found,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "AttrDefaultFetch: %d record not found for rel %s",
+ ndef - found, relation->rd_rel->relname.data);
index_endscan(sd);
pfree(sd);
if (!HeapTupleIsValid(tuple))
continue;
if (found == ncheck)
- elog(ERROR, "RelCheckFetch: unexpected record found for rel %.*s",
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "RelCheckFetch: unexpected record found for rel %s",
+ relation->rd_rel->relname.data);
rcname = (Name) fastgetattr(tuple,
Anum_pg_relcheck_rcname,
rcrel->rd_att, &isnull);
if (isnull)
- elog(ERROR, "RelCheckFetch: rcname IS NULL for rel %.*s",
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "RelCheckFetch: rcname IS NULL for rel %s",
+ relation->rd_rel->relname.data);
check[found].ccname = nameout(rcname);
val = (struct varlena *) fastgetattr(tuple,
Anum_pg_relcheck_rcbin,
rcrel->rd_att, &isnull);
if (isnull)
- elog(ERROR, "RelCheckFetch: rcbin IS NULL for rel %.*s",
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "RelCheckFetch: rcbin IS NULL for rel %s",
+ relation->rd_rel->relname.data);
check[found].ccbin = textout(val);
val = (struct varlena *) fastgetattr(tuple,
Anum_pg_relcheck_rcsrc,
rcrel->rd_att, &isnull);
if (isnull)
- elog(ERROR, "RelCheckFetch: rcsrc IS NULL for rel %.*s",
- NAMEDATALEN, relation->rd_rel->relname.data);
+ elog(ERROR, "RelCheckFetch: rcsrc IS NULL for rel %s",
+ relation->rd_rel->relname.data);
check[found].ccsrc = textout(val);
found++;
}
if (found < ncheck)
- elog(ERROR, "RelCheckFetch: %d record not found for rel %.*s",
+ elog(ERROR, "RelCheckFetch: %d record not found for rel %s",
ncheck - found,
- NAMEDATALEN, relation->rd_rel->relname.data);
+ relation->rd_rel->relname.data);
index_endscan(sd);
pfree(sd);
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.10 1998/06/15 19:29:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/Attic/database.c,v 1.11 1998/07/20 16:14:18 momjian Exp $
*
*-------------------------------------------------------------------------
*/
*/
tup_db = (Form_pg_database) GETSTRUCT(tup);
- if (strncmp(name,
- &(tup_db->datname.data[0]),
- 16) == 0)
+ if (strcmp(name, tup_db->datname.data) == 0)
{
*db_id = tup->t_oid;
strncpy(path, VARDATA(&(tup_db->datpath)),