diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 17:10:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 17:10:07 +0000 |
commit | e8db9b26d03b9e58a30eb26ec2ee21c92293d3a2 (patch) | |
tree | c2adf83074db369ea5211b06e5181ebabf1a61d8 /src/include/access/tupmacs.h | |
parent | aeea73d4eceb9b33ff16a69c77bd923a0394a6d0 (diff) |
elog mop-up.
Diffstat (limited to 'src/include/access/tupmacs.h')
-rw-r--r-- | src/include/access/tupmacs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/tupmacs.h b/src/include/access/tupmacs.h index b2bab69b810..85f9b0052e0 100644 --- a/src/include/access/tupmacs.h +++ b/src/include/access/tupmacs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: tupmacs.h,v 1.22 2002/08/24 15:00:46 tgl Exp $ + * $Id: tupmacs.h,v 1.23 2003/07/27 17:10:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -155,7 +155,7 @@ *(Datum *) (T) = (newdatum); \ break; \ default: \ - elog(ERROR, "store_att_byval: unsupported byval length %d", \ + elog(ERROR, "unsupported byval length: %d", \ (int) (attlen)); \ break; \ } \ @@ -177,7 +177,7 @@ *(int32 *) (T) = DatumGetInt32(newdatum); \ break; \ default: \ - elog(ERROR, "store_att_byval: unsupported byval length %d", \ + elog(ERROR, "unsupported byval length: %d", \ (int) (attlen)); \ break; \ } \ |