diff options
| author | Tom Lane | 2003-07-24 17:52:50 +0000 |
|---|---|---|
| committer | Tom Lane | 2003-07-24 17:52:50 +0000 |
| commit | 8fd5b3ed67d91937516d855bd6f225052aa88f2a (patch) | |
| tree | 5f14c30cb79692b6d35e612ed97feb79f62a155d /contrib/seg/seg.c | |
| parent | f0c5384d4a21d85198f86281f61d5754bfdca7a5 (diff) | |
Error message editing in contrib (mostly by Joe Conway --- thanks Joe!)
Diffstat (limited to 'contrib/seg/seg.c')
| -rw-r--r-- | contrib/seg/seg.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index d7eea9cadd7..443fe3f5a26 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -10,8 +10,6 @@ #include "access/gist.h" #include "access/rtree.h" -#include "utils/elog.h" -#include "utils/palloc.h" #include "utils/builtins.h" #include "segdata.h" @@ -798,7 +796,7 @@ seg_cmp(SEG * a, SEG * b) if (b->l_ext == '~') return 1; /* can't get here unless data is corrupt */ - elog(ERROR, "seg_cmp: bogus lower boundary types %d %d", + elog(ERROR, "bogus lower boundary types %d %d", (int) a->l_ext, (int) b->l_ext); } @@ -857,7 +855,7 @@ seg_cmp(SEG * a, SEG * b) if (b->u_ext == '~') return -1; /* can't get here unless data is corrupt */ - elog(ERROR, "seg_cmp: bogus upper boundary types %d %d", + elog(ERROR, "bogus upper boundary types %d %d", (int) a->u_ext, (int) b->u_ext); } |
